在下面的代码中,有没有办法让LaTeX
代码和其输出具有不同的背景颜色?
\documentclass[12pt]{article}
\RequirePackage{tcolorbox}
\tcbuselibrary{minted}
\newtcblisting{doclatex}{
colback = black!15, % For the code only?
% ? = white, % For the output.
}
\begin{document}
\begin{doclatex}
$just + A = test$
\end{doclatex}
\end{document}
答案1
例如(您需要该skin
库):
\documentclass[12pt]{article}
\RequirePackage[most]{tcolorbox}
\tcbuselibrary{minted}
\newtcblisting{doclatex}{
skin=bicolor,
colbacklower = white, % For the output.
colback = black!15, % For the code only?
}
\begin{document}
\begin{doclatex}
$just + A = test$
\end{doclatex}
\end{document}
(来源:手册第229页tcolorbox
)。