一次性修改 tkz-fct-plot 中整个 tikzpicture 的绘图样式

一次性修改 tkz-fct-plot 中整个 tikzpicture 的绘图样式

是否可以一次修改 tikzpicture 环境中每个绘图的绘图样式(例如颜色)?

我尝试了这个,但是没有用:

\documentclass{article}

\usepackage{pgfplots}
\usepackage{tkz-fct}
\usetkzobj{all}

\begin{document}

\begin{tikzpicture}[scale=.5,every plot/.style={color=green,thick}]
\tkzInit[xmax=10,ymax=10]
\tkzAxeXY
\tkzGrid
\tkzFct[domain=0:10]{\x}
\tkzFct[domain=0:10]{\x**2}
\end{tikzpicture}


\end{document}

答案1

您可以使用范围

\documentclass{article}    
\usepackage{pgfplots}
\usepackage{tkz-fct}
\usetkzobj{all}

\begin{document}

\begin{tikzpicture}[scale=.5]
\tkzInit[xmax=10,ymax=10]
\tkzAxeXY
\tkzGrid
\begin{scope}[color=red,thick]
    \tkzFct[domain=0:10]{\x}
    \tkzFct[domain=0:10]{\x**2}     
\end{scope}

\end{tikzpicture}

\end{document} 

enter image description here

相关内容