我正在写一本书,其中将包含两种语言(R 和 SAS)的代码。我知道我可以使用\verbatim
或\alltt
来设置代码部分,但该listings
软件包有一些不错的功能。
有没有办法可以使用listings
两种语言?
答案1
如果您对两种语言有不同的选择,您可以定义两种样式,并使用适合您的环境style=...
的选项。lstlisting
\documentclass{book}
\usepackage{xcolor}
\usepackage{listings}
\lstdefinestyle{SAS}{
language=SAS,
basicstyle=\ttfamily,
}
\lstdefinestyle{R}{
language=R,
breaklines=true,
basicstyle=\ttfamily
}
\begin{document}
Example of SAS code:
\begin{lstlisting}[style=SAS]
data myoutput;
set myinput;
if myvar = "OK" then output;
run;
\end{lstlisting}
Example of R code:
\begin{lstlisting}[style=R]
# I don't know R, code copied from http://www.rexamples.com/2/Functions
Square <- function(x) {
return(x^2)
}
print(Square(4))
print(Square(x=4)) # same thing
\end{lstlisting}
\end{document}