LaTeX 列表包:常量/类/变量的不同样式

发布于 2024-09-10 05:50:59 字数 756 浏览 6 评论 0原文

我使用 listings 包进行语法突出显示,并使用以下参数进行设置:

\lstset{
  language=Java,
  captionpos=b,
  tabsize=3,
  frame=lines,
  numbers=left,
  numberstyle=\tiny,
  numbersep=5pt,
  breaklines=true,
  showstringspaces=false,
  basicstyle=\footnotesize,
  identifierstyle=\color{magenta},
  keywordstyle=\bfseries,
  commentstyle=\color{darkgreen},
  stringstyle=\color{red}
}

这效果相当好,结果是:

(结果文档的屏幕截图 1) (结果文档的屏幕截图 2)

我想要的是常量 MIN_PIXELS 和 < code>MAX_PROCESSING_TIME 的样式采用不同的颜色,类名 RectangleBitmap 等的样式采用另一种颜色。如果我能把数字涂上颜色那就太好了,但这不是我的主要关注点。

有什么办法可以做到这一点吗?

I'm using the listings package for syntax highlighting, set up with the following arguments:

\lstset{
  language=Java,
  captionpos=b,
  tabsize=3,
  frame=lines,
  numbers=left,
  numberstyle=\tiny,
  numbersep=5pt,
  breaklines=true,
  showstringspaces=false,
  basicstyle=\footnotesize,
  identifierstyle=\color{magenta},
  keywordstyle=\bfseries,
  commentstyle=\color{darkgreen},
  stringstyle=\color{red}
}

This works fairly well, resulting in:

(screenshot 1 of resulting document)
(screenshot 2 of resulting document)

What I would like, is that the constants MIN_PIXELS and MAX_PROCESSING_TIME are styled in a different color, and the class names Rectangle, Bitmap, etc. are styled in yet another color. It would also be nice if I could get numbers colored, but that's not my main focus.

Is there any way to do this?

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

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

发布评论

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

评论(2

我也只是我 2024-09-17 05:50:59

列表仅适用于关键字,因此这是不可能的。

Minted 使用 python 库 (Pygments),可以进行任何类型的突出显示因为它能够理解代码而不仅仅是关键字。

Listings only works by keywords, so it is not possible.

Minted uses a python library (Pygments) and can do any kind of highlighting as it is able to understand the code and not just keywords.

短叹 2024-09-17 05:50:59

来自列表文档(第 20 页):\lstset{morecomment=[s][\color{blue}]{/*+}{*/},
morecomment=[s][\color{red}]{/*-}{*/}}

您可以尝试设置morekeywords并为特定关键字指定正确的颜色。

From documentation of listings (page 20ff.): \lstset{morecomment=[s][\color{blue}]{/*+}{*/},
morecomment=[s][\color{red}]{/*-}{*/}}

You can try to set morekeywords and give a specific keyword the right color.

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