橙色印刷定理

橙色印刷定理

我认为latexwithoutams确实提供了定理环境。我想基于内置定理功能创建自己的命令,而不使用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}

我定义了另一个环境只是为了看看输出是否相同,除了颜色之外。

在此处输入图片描述

相关内容