Estou digitando algumas notas sobre a linguagem de programação R. Infelizmente, o listings
pacote parece reconhecer alguns operadores matemáticos, mas não outros. Por exemplo, no exemplo abaixo,
*
e %%
são compostos em uma cor diferente conforme desejado, mas %/%
e +
e -
e ^
não são compostos em uma cor diferente.
\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}
Como obtenho uma saída em que todos os operadores matemáticos estão escritos em azul?
Responder1
Para o R
idioma, listings
define:
otherkeywords={!,!=,~,$,*,\&,\%/\%,\%*\%,\%\%,<-,<<-,_,/},
portanto, nem +
nem -
nem ^
estão listados, eles devem ser adicionados.
Em relação a %/%
isso, parece que apenas adicionar \%
antes otherkeywords
permite que funcione conforme o esperado.
Em outras palavras, adicionando:
otherkeywords={!,!=,~,$,*,\&,+,-,^,\%,\%/\%,\%*\%,\%\%,<-,<<-,_,/},
para você \lstset
faz o que quiser.
\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}