你好,这是 MWE:
\documentclass[border=2pt]{standalone}
\usepackage[utf8]{inputenc}
\usepackage{graphics}
\usepackage{tikz,pgfplots}
\usetikzlibrary{math} % Pour evaluate
\def\FTUn(#1){1/( W*(#1-sqrt((#1*#1) -1)))}
\def\FTDeux(#1){1/(W *(#1+sqrt((#1*#1) -1)))}
\def\FSupAUn(#1,#2){ \Kg * (1 - ( 1/( #1 - #2 ) )*( #1 *exp(-x/ #1 ) - #2 *exp(-x/ #2 ) )) }
\begin{document}
\begin{tikzpicture}[ declare function={ W=pi*2; }]
\def\Kg{2}
\def\Ezero{1}
\def\Ttrace{3}
\begin{axis}
\addplot[thick=3pt,ultra thick,domain=0:(1/10),samples=50,
evaluate={ \Tun = \FTUn(2) ;
\Tdeux = \FTDeux(2); }
] { \FSupAUn(\Tun, \Tdeux) };
% ] { \FSupAUn( \FTUn(2) , \FTDeux(2) ) };
\end{axis}
\end{tikzpicture}
\end{document}
这工作正常,但使用注释而不是上面的注释,你会得到:
TeX capacity exceeded, sorry [main memory size=5000000].
答案1
与 tikz 中的许多其他地方一样,我们需要括号来告诉它评估一个函数。
因此使用
{\FTUn(2)}
ETC。
(正如 Thorbjørn 在评论中提到的,整个问题可能是TikZ 参数解析器令人困惑。如果遇到问题,()
记住添加计算通常会有所帮助,这是一件好事){}