我正在寻找一种方法来在 LaTeX 中定义一个新环境,使我能够以改变的方式快速编写某些文本段落,例如更小的字体大小和不同的颜色。
我特别想要的是定义一个环境,这样我就可以写
\begin{smallredtext}
this is supposed to be red and font-size small.
\end{smallredtext}
我尝试寻找现有的解决方案,但目前找不到任何有用的方法。我非常感谢任何帮助。
提前致谢!
答案1
你只需要color
(或xcolor
)打包并
\newenvironment{smallredtext}{\small\color{red}}{\par}