在 tikz 中绘制颜色

在 tikz 中绘制颜色

我有一个让我头疼的问题,我试图用“红木色”给图表上色,这个颜色在用投影仪写字时可以正常工作,但在文章中却突然失效了。首先 latex 告诉我它无法识别颜色。因此,我尝试使用 \usepackage[dvipsnames]{xcolor} 包来解决这个问题,但随后出现了一个错误,提示选项 [dvipsnames] 与 xcolor 不兼容,这很奇怪,因为我已经按照 overleaf 网页上的说明操作了。

如果有人能帮助我,我会附上图片和代码。

\usepackage[dvipsnames]{xcolor}
\begin{center}
    \begin{figure}
    \centering
        \begin{tikzpicture}
            \begin{axis}[
                xscale=1, yscale=1,
                width=10cm,
                domain= -4:4,
                xmin = -3, xmax = 3, ymin = 0, ymax = 1.2,
                xtick = {-0.707,0,0.707},
                ytick = {1},
                xticklabels = {\footnotesize $-\sqrt{\frac{1}{2}}$, \footnotesize $0$, \footnotesize $\sqrt{\frac{1}{2}}$},
                % yticklabels = {\footnotesize $f(a)$, \footnotesize $\tiny(1-\lambda)f(a)+\lambda f(b)$, \footnotesize $f\left( (1-\lambda)a+\lambda b\right)$,\footnotesize $f(b)$},
                axis lines = middle,
                % axis line style={draw=none},
                samples=100,
                no markers]
                \draw[dashed,gray, ultra thin] (.707, 0)--(.707, .607) ;
                \draw[dashed,gray, ultra thin] (-.707, 0)--(-.707, .607) ;
                \draw[dashed,gray, ultra thin] (3.24, 0)--(3.24, 3.5) ;
                \draw [decorate,decoration={brace,amplitude=5pt},xshift=0pt,yshift=2pt] (0.4,2.28) -- (1,2.28) node [black,midway,yshift=10pt] {\tiny $(x_1^*-\epsilon,x_1^*+\epsilon) = S $};
                \addplot[ultra thick, color=mahogany]{exp(-x^2)};
                \draw[dashed,gray, ultra thin] (.4, 2.3)--(1, 2.3);
            \end{axis}
        \end{tikzpicture}
    \end{figure}
\end{center}

韩国 在此处输入图片描述

相关内容