¿Por qué el paquete de listados no resalta correctamente a los operadores?

¿Por qué el paquete de listados no resalta correctamente a los operadores?

Estoy escribiendo algunas notas sobre el lenguaje de programación R. Desafortunadamente, el listingspaquete parece reconocer algunos operadores matemáticos, pero no otros. Por ejemplo, en el siguiente ejemplo, *y %%están escritos en un color diferente según se desee, pero %/%y +y -no ^están escritos en un color 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}

ingrese la descripción de la imagen aquí

¿Cómo obtengo un resultado donde todos los operadores matemáticos están escritos en azul?

Respuesta1

Para el Rlenguaje, listingsdefine:

otherkeywords={!,!=,~,$,*,\&,\%/\%,\%*\%,\%\%,<-,<<-,_,/},

por lo que ni +ni -ni ^están listados, deben agregarse.

Respecto a %/%esto, parece que solo agregarlo \%antes otherkeywordspermite que funcione como se esperaba.

En otras palabras, agregando:

otherkeywords={!,!=,~,$,*,\&,+,-,^,\%,\%/\%,\%*\%,\%\%,<-,<<-,_,/},

a tu \lstsethace lo que quieres.

\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} 

ingrese la descripción de la imagen aquí

información relacionada