Displaying 1 result from an estimated 1 matches for "definelanguag".
Did you mean:
definelanguage
2001 May 02
2
rcode and latex
I have discovered the listings package for including code in your latex
documents. The default languages do not include R or Splus, but the
definition is pretty simple, this is what I did for R:
\lst at definelanguage{R}%
{morekeywords={TRUE,FALSE,T,F,NA,NULL,Inf,NaN,library,%
attach,detach,source,while,for,in,%
repeat,switch,break,next,return,stop,function,%
if,else,warning,error},%
literate={<-}{{$\leftarrow$}}1{<<-}{{$\leftarrow \!\!\!\!\leftarrow$}}1 ,%
sensitive=true,%
morecomment=[l]\#,%
mo...