用较粗的线分隔“LaTeX”代码及其输出

用较粗的线分隔“LaTeX”代码及其输出

LaTeX如何才能在上面的代码中获得代码和其输出之间更粗的虚线?

\documentclass[12pt]{article}

\RequirePackage{tcolorbox}

\tcbuselibrary{minted}

\newtcblisting{doclatex}{listing side text}

\begin{document}

\begin{doclatex}
$just + A = test$
\end{doclatex}

\end{document}

答案1

\documentclass[12pt]{article}

\RequirePackage[most]{tcolorbox}

\tcbuselibrary{minted}

\newtcblisting{doclatex}{enhanced, listing side text, segmentation style={line width=2pt}}

\begin{document}

\begin{doclatex}
$just + A = test$
\end{doclatex}

\end{document}

在此处输入图片描述

相关内容