我习惯在手写笔记中用不同的颜色标注定理、定义和例子。这样打印起来会很乱,但如果能在关键词前加一个小的彩色符号就好了。
例如,假设我有一个渲染的 PDF,内容如下:
Theorem 6.3
Definition 6.14
我怎样才能得到:
{red circle}Theorem 6.3
{blue circle}Definition 6.14
我知道我可能会为整个环境赋予不同的颜色,但我正在寻找一种非常微小的区别。
答案1
像这样吗?
\documentclass{article}
\usepackage{amsmath, amsthm}
\usepackage{xcolor}
\theoremstyle{plain}
\newtheorem{theorem}{\textcolor{red}{\textbullet} Theorem}
\theoremstyle{definition}
\newtheorem{definition}{\textcolor{blue}{\textbullet} Definition}
\begin{document}
\begin{theorem}
A theorem.
\end{theorem}
\begin{definition}
A definition.
\end{definition}
\end{document}