在LaTeX中,我试图将变量传递到\ progressbar的一行中。
如果您键入所有内容,则显示为
\progressbar[linecolor=blue, filledcolor=green]{.25} \begin{picture}(0,0)\put(-35,1.5) {\tiny$25\%$} \end{picture}
我想做的是这个
\newcommand{\PerComplete}{0.25}
\newcommand{\PerCompleteInt}{25}
\begin{document}
\progressbar[linecolor=blue, filledcolor=green]{.25} \begin{picture}(0,0)\put(-35,1.5) {\tiny$25\%$} \end{picture}
\progressbar[linecolor=blue, filledcolor=green]{\PerComplete} \begin{picture}(0,0)\put(-35,1.5) {\tiny$\PerCompleteInt\%$} \end{picture}
\end{document}
最后,两个\ progressbars应该看起来相同。
如何将\ PerComplete变量放到通常数字所在的地方?是否有类似C#的convert或.ToString()?
如果您想知道,最终结果是我从CSV文件中调用了一堆数字,这很酷,但是仍然存在尝试将数字放入\ progressbar字符串的问题
谢谢
迈克