我必須承認今天是我第一天使用Sweave或LaTeX。對,是真的。我今天意識到,如果沒有我的參與,我的「40歲以前」列表不會自行解決。就像我這一代人那麼多人,學習Sweave和LaTeX就在我的名單上。在Sweave中使用Tufte-Latex課程
所以與長前導,我有一個非常好的第一Sweave文件:
\documentclass{article}
\begin{document}
\title{Look Mom! I'm doing \LaTeX}
\author{JD Long}
\maketitle
\section{Where I get both funky and fresh}
<<make some randomness>>=
set.seed(12)
t <- rnorm(100)
@
and an example plot
\begin{center}
<<fig=TRUE,echo=FALSE>>=
plot(density(t))
@
\end{center}
This is a very simple example of how we might get started with Sweave. You know what comes next, right? That's right... Lorem Ipsum, ladies!
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin sed sem est. Pellentesque massa magna, ullamcorper eget lacinia sit amet, dignissim ac leo. Fusce hendrerit elit vitae lacus mollis suscipit.
\end{document}
將會產生這個奇妙的輸出:
所以這一點是很大的。但是我真正想要做的就是開始引入像Tufte-LaTeX這樣的精彩LaTeX課程,根據我的理解,這些課程基本上將我的文檔轉化爲精彩的靈感藝術作品。
那麼,我如何將Tufte-LaTeX業務帶入我的Sweave文檔並使用它來使我的文檔變得更加神奇?
我可以爲後者擔保。 –
你的拉丁文有幾個錯別字。你需要安裝一個更好的拼寫字典,這根本不會。還有一個40歲的名單 - 你是否告訴了你的人壽保險公司? (我把你的拉丁文描述成錯別字,我很慷慨,其中一些最好改爲第三人,或者你是......我不忍心這麼說。) – Iterator