如何为以下内容添加背景颜色?
\begin{lstlisting}
{
"client_id": "string",
"api_key": "string",
}
\end{lstlisting}
答案1
您可以使用\lstset{...}
更改列表上的设置;在这种情况下,您想要更改设置backgroundcolor
。该xcolor
包提供了您可以使用的颜色。
\documentclass{article}
\usepackage{xcolor}
\lstset{backgroundcolor=\color{blue}}
\begin{document}
\begin{lstlisting}
{
"client_id": "string",
"api_key": "string",
}
\end{lstlisting}
\begin{document}
此外,您还可以使用宏定义自己的颜色\definecolor
。例如,要使用十六进制颜色代码,您可以使用\definecolors{lightblue}{HTML}{0088FF}
,然后lightblue
在背景颜色设置中引用颜色。
有关颜色的更多信息,LaTeX 维基百科有更深入的描述。