为rmarkdown PDF中的每行文本编号

Naz*_*zer 3 latex knitr r-markdown

我正在编写一份正在编写成pdf的文档,我需要对每一行进行编号,以便审阅者可以参考特定的句子.我已经找到了关于编号代码块的一些阅读,但是只是文本呢?

Pet*_*ter 7

lineno包添加到标头中.这是一个示例.Rmd文件

---
title: "Line Number Example"
header-includes:
   - \usepackage{lineno}
   - \linenumbers
output:
   pdf_document
---

There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.  


There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.  
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.
There is a lot of text that goes here.  There is a lot of text that goes here.  
Run Code Online (Sandbox Code Playgroud)

结果如下: 在此输入图像描述