我想让段落中的一个句子同时加粗、大写和加下划线。我该怎么做?
例如:\textbf{}
仅使其变为粗体
答案1
\documentclass{scrartcl}
\usepackage[normalem]{ulem}
\begin{document}
That is from Typographers view a catastrophy:
\textbf{\uline{\MakeUppercase{That is from Typographers view a catastrophy!}}}
\end{document}