0

大约一周以来,我一直在尝试调试我在 RStudio 中编写的 .Rnw 文件。最令人沮丧的部分是它曾经以目前的形式完美地工作,但后来似乎莫名其妙地停止工作。

我已经将错误的来源追溯到我试图添加到 pdf 文件中的图形。似乎只有某些图像文件会破坏脚本。添加到 pdf 的每个图形都是使用另一个 R 脚本创建的。如果您出于任何原因需要查看,请告诉我,我会进行编辑。

这是我的 .Rnw 文件的基本格式:

\documentclass[
  title
]{article}
\usepackage{graphicx}

\begin{document}

<<Setup, include=FALSE, cache=FALSE>>=
##Sets up variables in paragraphs and creates data frames.
@

\title{Report Title}
\maketitle

\setcounter{secnumdepth}{-1}
\section{Report Summary}
Section Paragraph
\vspace{1cm}

\begin{figure}[h!]
  \includegraphics{Fig1.png}
\end{figure}

\end{document}

当我在 RStudio 中编译 PDF 时,出现错误Running pdflatex.exe on REPORT.tex...failed

当我查看日志文件时,我看到:

!pdfTeX error: pdflatex.exe (file C:/Users/myname/Documents/Report/Fig1.png): libpng: 
internal error ==> Fatal error occurred, no output PDF file produced!

有人知道出了什么问题吗?

我尝试将图像从.png文件更改.jpg.tiff相同的结果。我尝试\graphicspath在序言中添加 a 并尝试将完整路径添加到该\includegraphics部分。

编辑:这是我生成 fig1.png 图像的方式。这应该允许您在 RStudio 中重新创建一个示例。我必须手动复制此代码,以便可能存在拼写错误。此外,它当然看起来很垃圾,因为我刚刚使用示例 mtcars 数据集重新创建了图像格式。

png("C:/Users/UserName/Documents/Report/fig1.png", height = 7, width = 14, units = 'in', res = 350)
p<-ggplot(mtcars, aes(color = mpg, x = cyl, y disp, group = mpg)) + 
  geom_line() + geom_point(shape = 16, size = 2) + coord_cartesian(ylim = c(0,550)) +
  labs(x = "X Axis", y = "Y Axis") +
  ggtitle(expression(atop("Title", atop(italic("Subtext"), "")))) + 
  stat_summary(fun.y=sum, geom="line") +
  theme(plot.title = element_text(face = "bold", size = 16, vjust = 1.5)) + 
  theme(axis.text.x = element_text(angle = 45, vjust = 1, hjust = 1)) + 
  theme(axis.title.y = element_text(vjust = 1))
p
dev.off()
4

0 回答 0