如何传递宏输出\X{Tpeak}
给\FPeval\Ypeak
如下面的代码所示?
\documentclass[pstricks,border=12pt]{standalone}
\usepackage{pstricks-add}
\usepackage[nomessages]{fp}
\newcommand\const[3][3]{%
\expandafter\FPeval\csname#2\endcsname{round(#3:#1)}%
\pstVerb{/#2 \csname#2\endcsname\space def}%
}
\const{Vinit}{10}
\const{Theta}{75/180*pi}
\const{Gravity}{10}
\def\X#1{Vinit*cos(Theta)*#1}
\def\Y#1{Vinit*sin(Theta)*#1-Gravity*pow(2,#1)/2}
\const{Tpeak}{Vinit*sin(Theta)/Gravity}
\const{Ypeak}{\X{Tpeak}}
\const{Xpeak}{pow(2,Vinit)*sin(2*Theta)/(2*Gravity)}
\begin{document}
\begin{pspicture}[showgrid=bottom](2\dimexpr\Xpeak\psxunit\relax,\Ypeak)
\end{pspicture}
\end{document}
答案1
\X{Tpeak}
在传递给之前,需要先扩展表达式\const
。
\edef\next{%
\noexpand\const{Ypeak}{\X{Tpeak}}%
}\next
首先\X
是完全展开的,但不是\const
因为\noexpand
。然后\next
包含:
\const {Ypeak}{Vinit*cos(Theta)*Tpeak}
宏\next
只是暂时使用。因此,典型的模式是将其放在一个组中:
\begingroup
\edef\next{\endgroup
\noexpand\const{Ypeak}{\X{Tpeak}}%
}\next
然后之前定义的 a\next
之后保持不变,并且\const
仍然在组外调用。