我想使用graphic
选项附加源代码的 PDF 输出LTXinputExample
。简而言之,如何调整附加图形的大小?
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{source.tex}
\documentclass[tikz]{standalone}
\begin{document}
\tikz \draw (0,0) circle (1);
\end{document}
\end{filecontents*}
\immediate\write18{pdflatex source}
\usepackage{showexpl}
\lstset
{
frame=single,
}
\begin{document}
\LTXinputExample[graphic=source,pos=b]{source.tex}
\end{document}
编辑:
我不想改变格式化的源代码的宽度。
答案1
您可以使用该width
选项。它将改变输出的可用空间,并且图形将适应:
\LTXinputExample[width=4cm,graphic=source,pos=b]{source.tex}