如何重置列表的 lstset 设置?

发布于 2024-08-29 04:13:24 字数 544 浏览 1 评论 0原文

在我的 tex 文档的顶部,我设置了源代码列表格式,因为

\lstset{language=java}  
\lstset{numbers=left, numberstyle=\tiny, numbersep=5pt, breaklines=true}  
\lstset{emph={square}, emphstyle=\color{red}, emph={[2]root,base}, emphstyle {[2]\color{blue}}}

我只列出了 Java 源代码。 在我的文档中的某一时刻,我必须重新格式化单个列表现在

\lstset{commentstyle=\footnotesize\textit}  
\lstset{basicstyle=\ttfamily\fontsize{11}{12}\selectfont}  
\lstset{literate={!=} {$\neq$}{2}}

我遇到的问题是我以前的列表的 Java 格式被破坏了,而且我不知道如何将 lst 设置重置为默认值。 如何避免这种情况?

At the top of my tex document, I set my sourcecode listing format by

\lstset{language=java}  
\lstset{numbers=left, numberstyle=\tiny, numbersep=5pt, breaklines=true}  
\lstset{emph={square}, emphstyle=\color{red}, emph={[2]root,base}, emphstyle {[2]\color{blue}}}

because I merely list Java source code.
At one point in my document, I had to reformat for a single listing by

\lstset{commentstyle=\footnotesize\textit}  
\lstset{basicstyle=\ttfamily\fontsize{11}{12}\selectfont}  
\lstset{literate={!=} {$\neq$}{2}}

Now I have the problem that my previous Java formatting for listings is destroyed, and I dont know how to reset the lst settings to default.
How can this be avoided?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

◇流星雨 2024-09-05 04:13:24

如果您只需要修改一个列表,则可以将选项作为可选参数传递:

\begin{lstlisting}[commentstyle=\footnotesize\textit]
...
\end{lstlisting}

只会影响该特定列表。

If you need to modify only one listing, you can pass the options as an optional argument:

\begin{lstlisting}[commentstyle=\footnotesize\textit]
...
\end{lstlisting}

will only affect that particular listing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文