不同编程语言的语法高亮

不同编程语言的语法高亮

在我的论文中,我想包含一些带有彩色语法的源代码。对于语法突出显示,我使用 listings 包:

\lstset{frame=tb,
  language={[Visual]Basic},
  aboveskip=3mm,
  belowskip=3mm,
  showstringspaces=false,
  columns=flexible,
  basicstyle={\small\ttfamily},
  numbers=none,
  numberstyle=\tiny\color{gray},
  keywordstyle=\color{blue},
  commentstyle=\color{dkgreen},
  stringstyle=\color{mauve},
  breaklines=true,
  breakatwhitespace=true
  tabsize=3
}

然后在文档中:

\begin{lstlisting}
'test
\end{lstlisting}

这适用于一种语言(上例中为 Visual Basic)。但现在我还想包含一些 C 代码。我该如何实现?

答案1

您还可以定义自己的语言相关环境:

\documentclass{article}
\usepackage{listings}
\lstnewenvironment{C}
  {\lstset{language=C,frame=lines}}
  {}
\lstnewenvironment{CPP}
  {\lstset{language=C++,basicstyle=\ttfamily\small,frame=none}}
  {}
\begin{document}

\begin{C}
#include<stdio.h>
main() {
 printf("Hello World");
}
\end{C}

\begin{CPP}
#include <iostream.h>
main() {
 cout << "Hello World!";
 return 0;
}
\end{CPP}
\end{document}

在此处输入图片描述

相关内容