如何将宏输出传递给 \FPeval?

如何将宏输出传递给 \FPeval?

如何传递宏输出\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仍然在组外调用。

相关内容