Я печатаю некоторые заметки о языке программирования R. К сожалению, пакет, listings
похоже, распознает некоторые математические операторы, но не все. Например, в примере ниже
*
и %%
набраны другим цветом по желанию, но %/%
и +
и -
и ^
не набраны другим цветом.
\documentclass[12pt]{scrartcl}
\usepackage{xcolor}
\usepackage{listings}
\lstset{
language=R,
basicstyle=\footnotesize\ttfamily,
backgroundcolor=\color{white!95!black},
commentstyle=\color{green},
keepspaces=true,
keywordstyle=\color{blue}}
\begin{document}
You can use R as a simple calculator:
\begin{lstlisting}
> # The hash symbol '#' will comment out the rest of the line
> 2 + 3
[1] 5
> 7 - 3
[1] 4
> 4 * 5
[1] 20
> 3^4 # Exponentiation
[1] 81
> 43 %% 10 # Modulo operator
[1] 3
> 43 / 10 # Floating point division
[1] 4.3
> 43 %/% 10 # Integer division
[1] 4
\end{lstlisting}
\end{document}
Как получить вывод, в котором все математические операторы будут набраны синим цветом?
решение1
Для R
языка listings
определяет:
otherkeywords={!,!=,~,$,*,\&,\%/\%,\%*\%,\%\%,<-,<<-,_,/},
поэтому ни +
, ни , -
ни ^
не перечислены, их нужно добавить.
Кажется %/%
, что только добавление \%
перед ним otherkeywords
позволяет ему работать так, как ожидается.
Другими словами, добавив:
otherkeywords={!,!=,~,$,*,\&,+,-,^,\%,\%/\%,\%*\%,\%\%,<-,<<-,_,/},
по вашему \lstset
делает то, что вы хотите.
\documentclass[12pt]{scrartcl}
\usepackage{xcolor}
\usepackage{listings}
\lstset{
language=R,
basicstyle=\footnotesize\ttfamily,
backgroundcolor=\color{white!95!black},
commentstyle=\color{green},
keepspaces=true,
otherkeywords={!,!=,~,$,*,\&,+,-,^,\%,\%/\%,\%*\%,\%\%,<-,<<-,_,/},
keywordstyle=\color{blue}}
\begin{document}
You can use R as a simple calculator:
\begin{lstlisting}
> # The hash symbol '#' will comment out the rest of the line
> 2 + 3
[1] 5
> 7 - 3
[1] 4
> 4 * 5
[1] 20
> 3^4 # Exponentiation
[1] 81
> 43 %% 10 # Modulo operator
[1] 3
> 43 / 10 # Floating point division
[1] 4.3
> 43 %/% 10 # Integer division
[1] 4
\end{lstlisting}
\end{document}