当我将单色选项与文章类一起使用时,mdframed 框架的背景完全是黑色的。这是错误还是我误用了单色选项?
\documentclass{article}
%\documentclass[monochrome]{article}
\usepackage{xcolor}
\usepackage{mdframed}
\begin{document}
Some text. {\color{blue!45}This text is blue (or black if the monochrome option is specified)}
\begin{mdframed}
More text
\end{mdframed}
\end{document}
答案1
在标准中,framemethod
背景基本上是一个大背景,默认情况下\rule
会更改为黑色。如果您使用选项禁用颜色,则此规则将变为黑色。white
monochrome
您可以改用 tikz 框架方法。并考虑切换到 tcolorbox,它比 mdframed 更灵活、更稳定。
\documentclass{article}
\usepackage[monochrome]{xcolor}
\usepackage[framemethod=tikz]{mdframed}
\begin{document}
{\color{white}\rule{2cm}{2cm}} %black with monochrome.
Some text. {\color{blue!45}This text is blue (or black if the monochrome option is specified)}
\begin{mdframed}
More text
\end{mdframed}
\end{document}