我倾向于在大多数 latex 项目中使用 overleaf,但最近不得不使用本地 tex 编辑器。我经常使用 R 代码,并在 overleaf 上使用以下设置:
\usepackage{listings}
\lstset{language=R,
breaklines=true,
postbreak=\mbox{\textcolor{red}{$\hookrightarrow$}\space},
basicstyle=\small\ttfamily,
stringstyle=\color{DarkGreen},
otherkeywords={0,1,2,3,4,5,6,7,8,9},
morekeywords={TRUE,FALSE},
deletekeywords={data,frame,length,as,character},
keywordstyle=\color{blue},
commentstyle=\color{DarkGreen},}
代码在 overleaf 上运行良好,但每当我尝试在本机 Mac Latex 编辑器上离线使用这些设置时,我都被迫删除帖子的换行符:
postbreak=\mbox{\textcolor{red}{$\hookrightarrow$}\space}
为了使代码能够编译
我通常使用 LuaLatex 编译我的代码,无论是在 overleaf 中还是在离线工作时。
结果如下:
背面版本:
如您所见,本地版本缺少箭头,如果我在本机 Mac 编辑器中插入相同的命令,编辑器将拒绝编译文件并显示 pdf 预览:
一旦我删除该行,这些错误就消失了:
我是否设置有误?
先谢谢了。
PD: 用于测试目的的完整代码
\documentclass[usletterpaper]{article}
\usepackage{graphicx}
\usepackage[spanish]{babel}
\selectlanguage{spanish}
\usepackage{changepage}
\usepackage{ragged2e}
\usepackage{amsmath}
\usepackage{titling}
\setlength{\droptitle}{-7em}
\usepackage{amsfonts}
\usepackage{mathtools}
\usepackage{unicode-math}
\usepackage{color}
\usepackage{enumerate}
\usepackage[svgnames]{xcolor}
\usepackage{listings}
\lstset{language=R,
breaklines=true,
postbreak=\mbox{\textcolor{red}{$\hookrightarrow$}\space},
basicstyle=\small\ttfamily,
stringstyle=\color{DarkGreen},
otherkeywords={0,1,2,3,4,5,6,7,8,9},
morekeywords={TRUE,FALSE},
deletekeywords={data,frame,length,as,character},
keywordstyle=\color{blue},
commentstyle=\color{DarkGreen},}
\title{Test}
\author{NA}
\date{Feb 19 2019}
\begin{document}
\begin{lstlisting}[showstringspaces=false,language=R, title= Anexo Codigo en R , frame=single]
rm(list=ls())
##Taller 2 Estadística y Probabilidad Fundamental##
##Preliminares##
options(scipen = 999)
##Punto 1##
##Literal II##
Personas = 0:15; Probabilidad=dpois(Personas, 3)
Probabilidad
plot(Personas, Probabilidad, type="h", lwd=3, col="red",
main="Funcion de Probabilidad: Numero de Personas que Entran a un Banco por Minuto")
##Literal III##
ppois(5,3)-ppois(2,3)
##Literal IV##
ppois(4,3,lower.tail=FALSE)
##Punto 2##
rm(list=ls())
##Literal I##
Puntajes=0:1000
Probabilidad=dnorm(Puntajes, mean = 500, sd = 100,log = FALSE)
plot(Puntajes, Probabilidad, col="red", main="Funcion de Densidad:
Puntajes de Examen de Admisión a Universidad")
rm(list=ls())
Puntajes=0:1000
Probabilidad=pnorm(Puntajes, mean = 500, sd = 100,log = FALSE)
plot(Puntajes, Probabilidad, col="red",
main="Funcion de Distribución de Probabilidad: Puntajes de Examen de Admisión a Universidad")
##Literal II##
rm(list=ls())
Puntajes=0:1000
Probabilidad=dnorm(Puntajes, mean = 500, sd = 100,log = FALSE)
pnorm(600, mean=500, sd =100, lower.tail = FALSE , log = FALSE)
##Literal III##
qnorm(0.75, mean = 500, sd =100, lower.tail = FALSE, log.p = FALSE)
##FIN##
\end{lstlisting}
\end{document}