重置 \lstset 样式

重置 \lstset 样式

\lstdefinestyle在我的文档中定义了一个如下所示的内容:

\lstdefinestyle{examplestyle}{
  backgroundcolor=\color{green},
  commentstyle=\color{blue},
  keywordstyle=\color{magenta},
  numberstyle=\tiny\color{black},
  basicstyle=\ttfamily\small,
  language=python,
  breakatwhitespace=false,
  breaklines=true,
  keepspaces=true,
  numbers=left,
  numbersep=5pt,
  showspaces=false,
  showstringspaces=true,
  showtabs=false,
  tabsize=2
}

\lstset{style=examplestyle}

我如何将样式设置重置\lstset为默认值?我尝试了命令\lstset{style=},但只有语言被重置,行号、背景颜色等保持不变。

相关内容