字符串中出现的单引号listings
似乎被解释为结束字符串。 有没有办法避免这种情况发生?
\documentclass[12pt]{article}
\usepackage[top=0.3in, bottom=1.2in, left=0.8in, right=0.8in]{geometry}
\setlength{\parindent}{0cm}
\usepackage[english]{babel}
\usepackage{listings}
\usepackage[usenames,dvipsnames,svgnames,table]{xcolor}
\begin{document}
\lstset{language=Matlab,
basicstyle=\ttfamily,
keywordstyle=\color{Blue}\ttfamily,
stringstyle=\color{Red}\ttfamily,
commentstyle=\color{Emerald}\ttfamily,
morecomment=[l][\color{Magenta}]{\#},
breaklines=true,
breakindent=0pt,
breakatwhitespace,
columns=fullflexible,
showstringspaces=false
}
\begin{lstlisting}
a=1;
if a==1
disp('Is 1')
elseif a==2
disp('Is 2')
else
disp('I don't know')
end
\end{lstlisting}
\end{document}
答案1
由于单引号在 Matlab 中用作字符串分隔符,因此您需要转义该字符,以便使其成为字符串的一部分。这可以通过连续输入两个单引号来实现:
disp('I don''t know')
Matlab
定义的语言足够listings
聪明,可以排版正确的内容,在这种情况下:
附注:您可能对matlab-prettifier
包裹;参见这个答案。
答案2
一个可能的解决方案列表.pdf带mathescape
参数:
\documentclass[12pt]{article}
\usepackage[top=0.3in, bottom=1.2in, left=0.8in, right=0.8in]{geometry}
\setlength{\parindent}{0cm}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{listings}
\usepackage[usenames,dvipsnames,svgnames,table]{xcolor}
\begin{document}
\lstset{language=Matlab,
basicstyle=\ttfamily,
keywordstyle=\color{Blue}\ttfamily,
stringstyle=\color{Red}\ttfamily,
commentstyle=\color{Emerald}\ttfamily,
morecomment=[l][\color{Magenta}]{\#},
breaklines=true,
breakindent=0pt,
breakatwhitespace,
columns=fullflexible,
showstringspaces=false
}
\begin{lstlisting}[mathescape]
a=1;
if a==1
disp('Is 1')
elseif a==2
disp('Is 2')
else
disp('I don$\texttt{\color{red}'}$t know')
end
\end{lstlisting}
\end{document}