这可以通过 来实现tabular
,例如:
\documentclass{article}
\newcommand*{\stackphrase}[2]{%
\begin{tabular}[t]{@{}c@{}}%
#1\\\relax(#2)%
\end{tabular}
}
\begin{document}
\stackphrase{if you go to bed late,}{action}
\stackphrase{you'll be tired}{result}
\end{document}