我正在使用该preview
包生成公式页面。我想要的是指定所有页面的背景颜色。似乎该pagecolor
包与 交互不太好preview
,并且使用colorbox
无法填满整个页面。
这是我当前的渲染代码:
\documentclass{article}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{equation*}
\PreviewBorder=1pt
\begin{document}
\begin{equation*}
\text{ Thing 1 }
\end{equation*}
\begin{equation*}
\text{ Thing 2 }
\end{equation*}
\begin{equation*}
\text{ Blah }
\end{equation*}
\end{document}
在这里,我希望Thing 1
有一个蓝色的背景、Thing 2
一个红色的背景和Blah
一个黄色的背景。