如何获取以下代码片段输出“Myword”?
\documentclass{article}
\newcommand{\mymacro}{myword}
\begin{document}
\mymacro
\end{document}
答案1
使用\uppercase
原始且正确的扩展顺序
\def\myword{myword}
\def\capitalizefirst#1{\uppercase{#1}}
\expandafter\capitalizefirst\myword.
答案2
答案3
您可以使用mfirstuc
的\makefirstuc
:
\documentclass{article}
\usepackage{mfirstuc}
\newcommand{\mymacro}{\makefirstuc{myword}}
\begin{document}
\mymacro
\end{document}
mfirstuc
还规定了\emakefirstuc{<stuff>}
哪个先扩展<stuff>
,然后才大写。您的用法将是\emakefirstuc{\mymacro}
。