我认为latex
withoutams
确实提供了定理环境。我想基于内置定理功能创建自己的命令,而不使用ams
工具包,这样我就可以用颜色写出定理名称。我该怎么办?
例如,我想将“定义”打印成橙色。我还想\theorem
将“定理”也打印成橙色。
\newtheorem{lexdefinition}{Definition}[section]
答案1
使用\color
而不是\textcolor
。
\documentclass{article}
\usepackage{xcolor}
\newtheorem{definition}{\color{orange}Definition}
\newtheorem{definitionnormal}{Definition}
\begin{document}
Some text preceding the definition.
\begin{definition}
A definition.
\end{definition}
Some text in the middle.
\begin{definitionnormal}
A definition.
\end{definitionnormal}
Some text to end the test.
\end{document}
我定义了另一个环境只是为了看看输出是否相同,除了颜色之外。