我正在尝试在文档中添加 LaTeX 示例。我使用showexpl
允许我使用listings
包选项的包。由于所有片段都很短,因此行号是多余的。
以下 MWE 没有产生我想要的结果(即有一个行号)。
\documentclass{article}
\usepackage{showexpl}
\lstset{numbers=none}
\begin{document}
\begin{LTXexample}
Hello World!
\end{LTXexample}
\end{document}
当我定义选项 local( \begin{LTXexample}[numbers=none]
) 时,数字就消失了。我宁愿全局删除它们,而不必为每个示例键入额外的代码,因此最好避免使用新样式。
我认为解决办法是像这样。
答案1
这对我有用:
\documentclass{article}
\usepackage{showexpl}
\lstset{explpreset={numbers=none}}
\begin{document}
\begin{LTXexample}
Hello World!
\end{LTXexample}
\end{document}
您可以阅读有关ęxplpreset
参数这里。
更新:如果你指定explpreset={}
结果将是相同的(因为这是默认的)