|
# knitr syntax highlighting theme examples overview |
|
# Berry Boessenkool, [email protected], Sept 2014 |
|
|
|
library(knitr) |
|
themes <- knit_theme$get() |
|
Code <- "'R sample'; \"string2\" # comment. # examples from Tinn R |
|
var_a = 1:100 ; var.b <- 1: 4.6 # Numbers, Identifier |
|
1 + 1 - 1 * 1 / 1 ^ 1 < 6 & !TRUE; #h$k ? # Operator, Symbol |
|
tryCatch(NA); NULL; TRUE; T; FALSE; if(F) 7 # Programming |
|
mean; as.data.frame(iris) # Function, dataset |
|
plot(4, col='blue', cex=0.5) # Plotting |
|
foo = function(dummy=NA) if (TRUE) { for (i in 1:10) x <- NULL }" |
|
#sqrt(-1) # warning #1 + \"a\" # error" only makes sense if eval=TRUE |
|
|
|
for(i in 1:length(themes)) |
|
{ |
|
file <- paste0("theme-",themes[i],".Rnw") |
|
# Header: |
|
cat("\\documentclass{article} |
|
\\usepackage[paperheight=3.3cm,paperwidth=14cm, left=0cm,right=0cm, |
|
top=0cm,bottom=0cm]{geometry} |
|
\\begin{document}\n", file=file) |
|
# Code |
|
cat(paste0("<<theme",i,", echo=FALSE>>= |
|
knit_theme$set(knit_theme$get('", themes[i], "')) |
|
@\n"), file=file, append=TRUE) |
|
cat(paste0("<<code",i,", eval=FALSE>>=\n"), file=file, append=TRUE) |
|
cat(paste(themes[i], " ;", Code), file=file, append=TRUE) |
|
cat("\n@\n\n", file=file, append=TRUE) |
|
# Enddoc: |
|
cat("\\end{document}", file=file, append=TRUE) |
|
# |
|
# Make PDF |
|
knit2pdf(input=paste0("theme-",themes[i],".Rnw")) |
|
} |
|
|
|
# combine_all |
|
pdffiles <- dir(pattern=glob2rx("*.pdf")) |
|
pdffiles <- pdffiles[-42] # "fine_blue" does not work... |
|
file <- "2_combine_all.Rnw" |
|
# |
|
cat("\\documentclass[a4paper]{article} |
|
\\usepackage[cm]{fullpage} |
|
\\begin{document} |
|
\\center |
|
knitr syntax highlighting theme examples overview\\\\ |
|
Berry Boessenkool, [email protected], Sept 2014\n\n", file=file) |
|
# |
|
for(i in 1:length(pdffiles)) |
|
cat(paste0("\\includegraphics[width=.8\\linewidth]{",pdffiles[i],"}\n"), |
|
file=file, append=TRUE) |
|
# |
|
cat("\\end{document}", file=file, append=TRUE) |
|
|
|
# knit2pdf(input=file) # doesnt work for me, so I just knit that via Rstudio. |
These are not the same as RStudio themes, correct? For example I don't see
spacelab
on here.edit: oh ok, I get it. These here are the
highlight
parameter and those are thetheme
parameter.