在 pgfplots 中定义颜色

在 pgfplots 中定义颜色

我想使用 绘制具有自己颜色的函数和数据\definecolor{<name>}{<model>}{<value(s)>}。如果我在 中使用此命令,\tikzpicture它会起作用。但如果我在 中使用此命令,pgfplots所有定义的颜色都是黑色。为什么?

我的示例(不考虑某些计算 - 我需要它来进行更复杂的函数和数据绘图):

\documentclass[rgb]{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=1.13}
\usepackage{pgffor}
\usepackage{calc}
\usepackage{xcolor}
\usepackage{amsmath}
\usepackage{sistyle}

\newcommand{\thetamin}{-90}
\newcommand{\thetamax}{90}
\newcommand{\thetaminplusstep}{-80}

%======================================================================================

\begin{document}

\begin{tikzpicture}
\begin{axis}[title={Title},title style={text width=8cm,font=\tiny},ylabel={y}, xlabel={x}, legend style={cells={anchor=west}, legend pos=north west, font=\tiny}, xmin=-1, xmax=1, ymin=-1, ymax=1]
        \foreach \i in {\thetamin,\thetaminplusstep,...,\thetamax}{
        \newcount\k
        \pgfmathsetmacro{\k}{\i/\thetamax}
        \newcount\j
        \j=400
        \ifnum\i<0
        \pgfmathsetmacro{\j}{-400*\i/\thetamin+800} 
        \else
        \pgfmathsetmacro{\j}{(-400/\thetamax*\i)+800}
        \fi     
        \definecolor{tmpcolor}{wave}{\j}
    \colorlet{mycolor}[rgb]{tmpcolor}
        \addplot[color=mycolor, mark=none, domain=-1:1,samples=100]{\k*x};
        %\addlegendentry{$\ang{\i}$};
        }   
\end{axis}
\end{tikzpicture}

\begin{tikzpicture}
\foreach \i in {\thetamin,\thetaminplusstep,...,\thetamax}{
        \newcount\k
        \pgfmathsetmacro{\k}{\i/\thetamax*2}
        \newcount\j
        \j=400
        \ifnum\i<0
        \pgfmathsetmacro{\j}{-400*\i/\thetamin+800} 
        \else
        \pgfmathsetmacro{\j}{(-400/\thetamax*\i)+800} 
        \fi     
        \definecolor{tmpcolor}{wave}{\j}
    \colorlet{mycolor}[rgb]{tmpcolor}
        \draw[fill=mycolor] (0,\k) rectangle (1,\k+0.25);
        \draw[black] (2.5,\k+0.15) node {\tiny $\ang{\i}$, wave: \j};
        }
\end{tikzpicture}

\end{document}

结果我得到: 在 pgfplots 中定义颜色

我期待一个有用的答案。

安妮

答案1

导致的问题\foreach,也看看\foreach 在轴环境中不起作用

解决我使用的问题(在使用色彩图时)

\edef\temp{\noexpand\addplot[color of colormap={\l}, solid, mark=none,domain=-1:1,samples=100]{\k*x};}
        \temp   

代替

\addplot[color of colormap={\l}, solid, mark=none,domain=-1:1,samples=100]{\k*x};

结果,问题解决了

颜色问题解决

另外它应该可以在没有色彩图的情况下工作,但是有了呢\definecolor

相关内容