首页 文章

pandoc:生成PDF时出错

提问于
浏览
1

Goal 实现PDF功能(网页上的一个按钮),生成包含由R创建的图表的PDF,这些图表显示在网页上,并带有markdown / knitr,如本教程所示:http://rprogramming.net/create-html-or-pdf-files-with-r-knitr-miktex-and-pandoc/

Setup

  • Ubuntu服务器

  • 为Ubuntu安装了MiKTeX:

sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys D6BC243565B2087BC3F897C9277A7293F59E4889 echo“deb http://miktex.org/download/ubuntu xenial universe”| sudo tee /etc/apt/sources.list.d/miktex.list sudo apt-get update sudo apt-get install miktex

  • 安装了Pandoc

R-code

# Set working directory
setwd("/var/www/html/test_Knitr")

# Create .md, .html, and .pdf files
print("Debug1: packages loaded")

setwd("/var/www/html/DATA/test")
knit("/var/www/html/test_Knitr/reporting_style.Rmd")
print("Debug2: knit succesfull")

setwd("/var/www/html/DATA/test")
print("Debug3: setwd successfull")

markdownToHTML('/var/www/html/DATA/test/reporting_style.md', '/var/www/html/DATA/test/reporting_style.html', options=c("use_xhml"))
print("Debug4: markdownToHTML succesfull")

system("pandoc -s /var/www/html/DATA/test/reporting_style.html -o /var/www/html/DATA/test/reporting_style.pdf")
print("Debug5: pandoc succesfull")

reporting_style.Rmd

---
title: "Reporting template"
output: html_document
---


## R Markdown

This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents.

Problem 该函数运行完美,直到到达最后一部分 system("pandoc.." 这里我收到一条错误消息:

Sorry, but pdflatex did not succeed.

You may want to visit the MiKTeX project page, if you need help.
terminate called after throwing an instance of 'MiKTeX::Core::MiKTeXException'
  what():  MiKTeX encountered an internal error.

pandoc: Error producing PDF

Question 我一直在寻找互联网,无法找到解决此错误的方法 .

1 回答

  • 2

    MiKTeX最初是仅限Windows的TeX发行版 . 它最近被移植到Linux,其网页上写着“请注意,MiKTeX for Linux仍处于试验阶段” .

    您应该使用更主流的TeX . 我不确定't use Ubuntu so I'我不确定是哪个发行版,但我是'd guess it' s TeX Live,http://tug.org/texlive/ .

相关问题