나는 비슷한 게시물의 예제를 따라 왔지만 아무 소용이 없습니다. 다음은 내가 본 문제의 예입니다. tmp.Rnw에서ggplot2 및 sweave - 플롯이 주 pdf 대신 Rplots에 있습니까?
저장 : tmp.co.r에서
\documentclass[10pt]{article}
\title{Reproducible Example}
\begin{document}
\maketitle
\begin{center}
<<echo=FALSE,results=hide>>=
library(ggplot2)
plot.to.print = qplot(1:10, 1:10)
@
\section{No Figure Below This Section Title}
<<<fig=true>>=
print(plot.to.print)
@
\end{center}
\end{document}
, 나는 다음과 같은 코드를 넣어 :
Sweave("tmp.Rnw",stylepath=T)
을 그리고 나는이 같은 TEX 파일 생성 :
/../../2.12.1/bin/R --no-save < tmp.co.r
을
그리고 나와있는 tmp.tex 파일에서 pdflatex를 사용하십시오.
결과는 제목, 섹션 이름 및 R 코드가 있지만 그림은없는 tmp.pdf입니다. 그러나 tpl.pdf에 원하는 그림이 포함 된 Rplots.pdf 파일도 생성됩니다.
나는 초보자를 실수로 만들고 있지만 확실하지는 않습니다. 어떤 팁?
그림 덩어리에 이름을 지정해 보았습니까? – baptiste