\documentclass[a4paper]{article}
\usepackage{amsmath}
\newcommand*{\price}[2][17.5]{\pounds #2 excl VAT @ #1\%}
\begin{document}
\setlength{\parindent}{0pt}
\price{100} \\
\price[20]{30}
\end{document}
运行良好。
就我的目的而言,是否可以更改它,以便\price{30}{20}
像 一样工作\price[20]{30}
。也就是说,我希望可选参数是后第一个参数并使用{}
括号。
谢谢。