我想突出显示块中的某些文本,就像我们可以在 Latex Beamer 模板中这样做一样,或者我们可以在许多书中看到注释部分,其中有一个突出显示的框,并且可能具有不同的背景和字体,就像书中的注释部分一样。
我已经关注了如何突出显示整个段落?但这些只是改变背景颜色,这对我来说还不够。
我想要突出显示的文本可能包含也可能不包含数学块/方程式或内联方程式,但肯定会包含\begin{itemize}...\end{itemize}
块
答案1
根据@Zarko 的建议,这里是我们可以用这个包做什么的简要概述tcolorbox
。
更新使用draftwatermark
包
\documentclass {article}
\usepackage{draftwatermark}
\usepackage {tcolorbox}
\tcbuselibrary{theorems}
\usepackage{lipsum} % for dummy text
\tcbset{standard jigsaw,opacityback=0.5}
\SetWatermarkColor{red}
\begin {document}
\lipsum[1]
\begin{tcolorbox}[colback=purple,coltext=blue]
\lipsum[2]
\end{tcolorbox}
some normal text \tcbox[nobeforeafter,tcbox raise base,colback=blue!30]{very important text} more normal text
\begin{tcolorbox}[ams equation]
a=b=\tcbhighmath{c}
\end{tcolorbox}
\end {document}