如何统一列表背景(LaTeX)?

发布于 2024-09-15 18:49:17 字数 289 浏览 4 评论 0原文

当我将片段放在列表中并将背景更改为灰色时,每个字符的背景仍为白色。如何避免它,并将所有背景显示为灰色?

我的 LaTeX 代码是:

\definecolor{lbcolor}{rgb}{0.9,0.9,0.9}  
\lstset{  
language=Java,  
tabsize=4,  
basicstyle=\ttfamily,  
backgroundcolor=\color{lbcolor},  
showstringspaces=false  
}

非常感谢。

When I put a snippet on a listing, and chage background to gray, each character's background remains in white. How to avoid it, and show all background in gray?

My LaTeX code is:

\definecolor{lbcolor}{rgb}{0.9,0.9,0.9}  
\lstset{  
language=Java,  
tabsize=4,  
basicstyle=\ttfamily,  
backgroundcolor=\color{lbcolor},  
showstringspaces=false  
}

Thanks a lot.

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

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

发布评论

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

评论(1

大姐,你呐 2024-09-22 18:49:17

我不确定你如何进行列表,但你可以尝试使用 lstlisting,以下应该可以工作:

\documentclass[11pt]{article}
\usepackage{listings}
\usepackage{color}
\definecolor{lbcolor}{rgb}{0.9,0.9,0.9}  
\begin{document}
\lstset{  
language=Java,  
tabsize=4,  
basicstyle=\ttfamily,  
backgroundcolor=\color{lbcolor},  
showstringspaces=false  
}
\begin{lstlisting}
Code
Code
Code
\end{lstlisting}
\end{document}

I'm not sure how you do the listing, but you can try with lstlisting, the following shoud work:

\documentclass[11pt]{article}
\usepackage{listings}
\usepackage{color}
\definecolor{lbcolor}{rgb}{0.9,0.9,0.9}  
\begin{document}
\lstset{  
language=Java,  
tabsize=4,  
basicstyle=\ttfamily,  
backgroundcolor=\color{lbcolor},  
showstringspaces=false  
}
\begin{lstlisting}
Code
Code
Code
\end{lstlisting}
\end{document}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文