Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
2701 views
1
% From: Richard Morrisroe <[email protected]>
2
% To: <[email protected]>
3
% Subject: Re: [ESS] noweb file and assignment key
4
% Date: Tue, 30 Oct 2012 20:57:32 +0000
5
6
\documentclass{article}
7
8
\begin{document}
9
10
<<packages, echo=FALSE, results=hide>>=
11
i.can.haz.assginment <- TRUE
12
@
13
14
Now, we will introduce an extraneous apostrophe, for no reason '
15
16
<<test2>>=
17
aa <- _2 #ess-smart-underscore-no-longer-works
18
@
19
20
'
21
<<test3, echo=TRUE, results=verbatim >>=
22
nowitdoes <- cat("Note the apostrophe above which closes the earlier one\n")
23
@
24
25
\end{document}
26
27