有没有 tkzexample 的替代品?

有没有 tkzexample 的替代品?

我可以使用哪些包来同时显示 latex 代码和编译结果?

答案1

我发现tcolorbox带有tcblisting环境的包非常方便,可以同时显示源和输出。

\documentclass{article}

\usepackage{tikzducks}
\usepackage[most]{tcolorbox}

\begin{document}

\begin{tcblisting}{title={Birthday duck}}
\begin{tikzpicture}
    \duck[cake]
\end{tikzpicture}
\end{tcblisting}

\end{document}

在此处输入图片描述

相关内容