Compare commits
14 Commits
master
...
1c2bcf3929
| Author | SHA1 | Date | |
|---|---|---|---|
| 1c2bcf3929 | |||
| a3e469ca3f | |||
| 887dfdfa8b | |||
| 9b5ca55478 | |||
| da76fb674e | |||
| 5af07a555f | |||
| d8e90cd7d3 | |||
| c92fd3b8be | |||
| ec596703e2 | |||
|
|
ee4ba6c2b4 | ||
| 54c07cb9f5 | |||
| 5526efbaee | |||
| ce30e1ac61 | |||
| c46fe4b78e |
4
README
4
README
@@ -47,8 +47,8 @@ On other systems, installing a full TeX Live distribution should provide
|
|||||||
everything needed.
|
everything needed.
|
||||||
|
|
||||||
All four templates build with LuaLaTeX (via latexmk -lualatex). The text
|
All four templates build with LuaLaTeX (via latexmk -lualatex). The text
|
||||||
fonts are Libertinus Serif and TeX Gyre Heros, both provided by
|
fonts are EB Garamond (provided by texlive-fonts-extra) and TeX Gyre
|
||||||
texlive-fonts-extra.
|
Heros.
|
||||||
|
|
||||||
================================
|
================================
|
||||||
=== Accessibility ==============
|
=== Accessibility ==============
|
||||||
|
|||||||
@@ -10,15 +10,7 @@
|
|||||||
% (-- => en-dash, --- => em-dash, `` and '' => curly quotes), so
|
% (-- => en-dash, --- => em-dash, `` and '' => curly quotes), so
|
||||||
% re-enable them globally for every font loaded below.
|
% re-enable them globally for every font loaded below.
|
||||||
\defaultfontfeatures{Ligatures=TeX}
|
\defaultfontfeatures{Ligatures=TeX}
|
||||||
\setmainfont{Libertinus Serif}
|
\setmainfont{EB Garamond}
|
||||||
% Mako prefers Adobe Garamond Premier Pro
|
|
||||||
% (https://fonts.adobe.com/fonts/garamond-premier-pro). It is a
|
|
||||||
% commercial font and is not redistributable, so the templates default
|
|
||||||
% to the free Libertinus Serif above. If you have the font installed
|
|
||||||
% (e.g., dropped into ~/.fonts/), comment the line above and uncomment
|
|
||||||
% the next one. CDSC members can contact Mako (mako@atdot.cc) for the
|
|
||||||
% font files.
|
|
||||||
% \setmainfont{Garamond Premier Pro}
|
|
||||||
\setsansfont{TeX Gyre Heros}
|
\setsansfont{TeX Gyre Heros}
|
||||||
|
|
||||||
\usepackage[letterpaper,left=1.3in,right=1.3in,top=0.8in,bottom=0.8in]{geometry}
|
\usepackage[letterpaper,left=1.3in,right=1.3in,top=0.8in,bottom=0.8in]{geometry}
|
||||||
|
|||||||
@@ -18,15 +18,7 @@
|
|||||||
% (-- => en-dash, --- => em-dash, `` and '' => curly quotes), so
|
% (-- => en-dash, --- => em-dash, `` and '' => curly quotes), so
|
||||||
% re-enable them globally for every font loaded below.
|
% re-enable them globally for every font loaded below.
|
||||||
\defaultfontfeatures{Ligatures=TeX}
|
\defaultfontfeatures{Ligatures=TeX}
|
||||||
\setmainfont{Libertinus Serif}
|
\setmainfont{EB Garamond}
|
||||||
% Mako prefers Adobe Garamond Premier Pro
|
|
||||||
% (https://fonts.adobe.com/fonts/garamond-premier-pro). It is a
|
|
||||||
% commercial font and is not redistributable, so the templates default
|
|
||||||
% to the free Libertinus Serif above. If you have the font installed
|
|
||||||
% (e.g., dropped into ~/.fonts/), comment the line above and uncomment
|
|
||||||
% the next one. CDSC members can contact Mako (mako@atdot.cc) for the
|
|
||||||
% font files.
|
|
||||||
% \setmainfont{Garamond Premier Pro}
|
|
||||||
\setsansfont{TeX Gyre Heros}
|
\setsansfont{TeX Gyre Heros}
|
||||||
|
|
||||||
\usepackage[letterpaper,left=1.65in,right=1.65in,top=1.3in,bottom=1.2in]{geometry}
|
\usepackage[letterpaper,left=1.65in,right=1.65in,top=1.3in,bottom=1.2in]{geometry}
|
||||||
|
|||||||
2
paper_template/.gitignore
vendored
2
paper_template/.gitignore
vendored
@@ -13,3 +13,5 @@
|
|||||||
/*.ttt
|
/*.ttt
|
||||||
/*.bcf
|
/*.bcf
|
||||||
/*.run.xml
|
/*.run.xml
|
||||||
|
/figures/*
|
||||||
|
/*.tex
|
||||||
|
|||||||
@@ -1,11 +1,9 @@
|
|||||||
#!/usr/bin/make
|
#!/usr/bin/make
|
||||||
|
|
||||||
all: $(patsubst %.tex,%.pdf,$(wildcard *.tex))
|
all: $(patsubst %.Rtex,%.pdf,$(wildcard *.Rtex))
|
||||||
|
|
||||||
# use the following section for Rnw/knitr documents
|
%.tex: %.Rtex
|
||||||
# all: $(patsubst %.Rnw,%.pdf,$(wildcard *.Rnw))
|
Rscript -e "library(knitr); knit('$<')"
|
||||||
# %.tex: %.Rnw
|
|
||||||
# Rscript -e "library(knitr); knit('$<')"
|
|
||||||
|
|
||||||
%.pdf: %.tex
|
%.pdf: %.tex
|
||||||
latexmk -f -lualatex $<
|
latexmk -f -lualatex $<
|
||||||
@@ -15,9 +13,9 @@ clean:
|
|||||||
rm -f *.tmp *.run.xml
|
rm -f *.tmp *.run.xml
|
||||||
rm -f vc
|
rm -f vc
|
||||||
rm -f *.bbl
|
rm -f *.bbl
|
||||||
# the following lines are useful for Rnw/knitr
|
# the following lines are useful for Rtex/knitr
|
||||||
# rm -rf cache/ figure/
|
rm -rf cache/ figure/
|
||||||
# rm -f *.tex
|
rm -f *.tex
|
||||||
|
|
||||||
viewpdf: all
|
viewpdf: all
|
||||||
evince *.pdf
|
evince *.pdf
|
||||||
@@ -27,4 +25,4 @@ vc: resources/vc-git
|
|||||||
pdf: all
|
pdf: all
|
||||||
|
|
||||||
.PHONY: clean all
|
.PHONY: clean all
|
||||||
# .PRECIOUS: %.tex
|
.PRECIOUS: %.tex
|
||||||
|
|||||||
BIN
paper_template/knitr_rdata/knitr_data.RData
Normal file
BIN
paper_template/knitr_rdata/knitr_data.RData
Normal file
Binary file not shown.
50
paper_template/resources/preamble.R
Normal file
50
paper_template/resources/preamble.R
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
bold <- function(x) {paste('{\\textbf{',x,'}}', sep ='')}
|
||||||
|
gray <- function(x) {paste('{\\textcolor{gray}{',x,'}}', sep ='')}
|
||||||
|
wrapify <- function (x) {paste("{", x, "}", sep="")}
|
||||||
|
|
||||||
|
# load("knitr_data.RData"); now broken up into small files so we'll bring 'em all in together
|
||||||
|
r <- do.call("c", lapply(paste("knitr_rdata/", list.files("knitr_rdata"), sep=""),
|
||||||
|
function (x) {load(x); return(r)}))
|
||||||
|
|
||||||
|
attach(r)
|
||||||
|
|
||||||
|
f <- function (x) {formatC(x, format="d", big.mark=',')}
|
||||||
|
|
||||||
|
format.percent <- function(x) {paste(f(x*100),"\\%",sep='')}
|
||||||
|
|
||||||
|
format.day.ordinal <- function(x) {
|
||||||
|
day <- format(x,format="%d")
|
||||||
|
daylast <- substr(day,nchar(day),nchar(day))
|
||||||
|
dayfirst <- substr(day,1,1)
|
||||||
|
if(dayfirst == '0')
|
||||||
|
day = daylast
|
||||||
|
|
||||||
|
if( daylast == "1")
|
||||||
|
day <- paste0(day,"st")
|
||||||
|
else if(daylast == "2")
|
||||||
|
day <- paste0(day,"nd")
|
||||||
|
else if (daylast == "3")
|
||||||
|
day <- paste0(day,"rd")
|
||||||
|
else
|
||||||
|
day <- paste0(day,"th")
|
||||||
|
|
||||||
|
return(day)
|
||||||
|
}
|
||||||
|
|
||||||
|
format.month <- function(x){
|
||||||
|
return( format(x,format='%B %Y'))
|
||||||
|
}
|
||||||
|
|
||||||
|
format.date <- function(x) {
|
||||||
|
return(paste(format(x,format = '%B'),format.day.ordinal(x),format(x,format='%Y'),sep=' '))
|
||||||
|
}
|
||||||
|
|
||||||
|
format.pvalue <- function (x, digits=3) {
|
||||||
|
threshold <- 1*10^(-1*digits)
|
||||||
|
x <- round(x, digits)
|
||||||
|
if (x < threshold) {
|
||||||
|
return(paste("p<", threshold, sep=""))
|
||||||
|
} else {
|
||||||
|
return(paste("p=", x, sep=""))
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -13,20 +13,23 @@
|
|||||||
\usepackage{tagpdf}
|
\usepackage{tagpdf}
|
||||||
\tagpdfsetup{activate-all}
|
\tagpdfsetup{activate-all}
|
||||||
|
|
||||||
|
<<init, echo=FALSE>>=
|
||||||
|
knit_hooks$set(document = function(x) {
|
||||||
|
x <- sub('\\usepackage[]{xcolor}',
|
||||||
|
'\\usepackage[dvipsnames]{xcolor}', x, fixed = TRUE)
|
||||||
|
x
|
||||||
|
})
|
||||||
|
opts_chunk$set(fig.path="figures/knitr-")
|
||||||
|
|
||||||
|
source("resources/preamble.R")
|
||||||
|
@
|
||||||
|
|
||||||
\usepackage{fontspec}
|
\usepackage{fontspec}
|
||||||
% fontspec disables the classic TeX input ligatures by default
|
% fontspec disables the classic TeX input ligatures by default
|
||||||
% (-- => en-dash, --- => em-dash, `` and '' => curly quotes), so
|
% (-- => en-dash, --- => em-dash, `` and '' => curly quotes), so
|
||||||
% re-enable them globally for every font loaded below.
|
% re-enable them globally for every font loaded below.
|
||||||
\defaultfontfeatures{Ligatures=TeX}
|
\defaultfontfeatures{Ligatures=TeX}
|
||||||
\setmainfont{Libertinus Serif}
|
\setmainfont{EB Garamond}
|
||||||
% Mako prefers Adobe Garamond Premier Pro
|
|
||||||
% (https://fonts.adobe.com/fonts/garamond-premier-pro). It is a
|
|
||||||
% commercial font and is not redistributable, so the templates default
|
|
||||||
% to the free Libertinus Serif above. If you have the font installed
|
|
||||||
% (e.g., dropped into ~/.fonts/), comment the line above and uncomment
|
|
||||||
% the next one. CDSC members can contact Mako (mako@atdot.cc) for the
|
|
||||||
% font files.
|
|
||||||
% \setmainfont{Garamond Premier Pro}
|
|
||||||
\setsansfont{TeX Gyre Heros}
|
\setsansfont{TeX Gyre Heros}
|
||||||
\usepackage{wrapfig}
|
\usepackage{wrapfig}
|
||||||
|
|
||||||
@@ -145,45 +148,14 @@ brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|||||||
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown
|
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown
|
||||||
fox jumps over the lazy dog \citep{989866}.
|
fox jumps over the lazy dog \citep{989866}.
|
||||||
|
|
||||||
The quick brown fox jumps over the lazy dog. The quick brown fox jumps
|
\begin{table}
|
||||||
over the lazy dog. The quick brown fox jumps over the lazy dog. The
|
\centering
|
||||||
quick brown fox jumps over the lazy dog. The quick brown fox jumps over
|
<<test_table, echo=FALSE>>=
|
||||||
the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
kable(form.copy, format="latex")
|
||||||
brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
@
|
||||||
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown
|
\caption{This is a test table. There are \Sexpr{f(nrow(form.copy))} rows in the table.}
|
||||||
fox jumps over the lazy dog \citep{989866}.
|
\label{tab:test}
|
||||||
|
\end{table}
|
||||||
The quick brown fox jumps over the lazy dog. The quick brown fox jumps
|
|
||||||
over the lazy dog. The quick brown fox jumps over the lazy dog. The
|
|
||||||
quick brown fox jumps over the lazy dog. The quick brown fox jumps over
|
|
||||||
the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
||||||
brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
||||||
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown
|
|
||||||
fox jumps over the lazy dog \citep{989866}.
|
|
||||||
|
|
||||||
The quick brown fox jumps over the lazy dog. The quick brown fox jumps
|
|
||||||
over the lazy dog. The quick brown fox jumps over the lazy dog. The
|
|
||||||
quick brown fox jumps over the lazy dog. The quick brown fox jumps over
|
|
||||||
the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
||||||
brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
||||||
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown
|
|
||||||
fox jumps over the lazy dog \citep{989866}.
|
|
||||||
|
|
||||||
The quick brown fox jumps over the lazy dog. The quick brown fox jumps
|
|
||||||
over the lazy dog. The quick brown fox jumps over the lazy dog. The
|
|
||||||
quick brown fox jumps over the lazy dog. The quick brown fox jumps over
|
|
||||||
the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
||||||
brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
||||||
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown
|
|
||||||
fox jumps over the lazy dog \citep{989866}.
|
|
||||||
|
|
||||||
The quick brown fox jumps over the lazy dog. The quick brown fox jumps
|
|
||||||
over the lazy dog. The quick brown fox jumps over the lazy dog. The
|
|
||||||
quick brown fox jumps over the lazy dog. The quick brown fox jumps over
|
|
||||||
the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
||||||
brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
||||||
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown
|
|
||||||
fox jumps over the lazy dog \citep{989866}.
|
|
||||||
|
|
||||||
The quick brown fox jumps over the lazy dog. The quick brown fox jumps
|
The quick brown fox jumps over the lazy dog. The quick brown fox jumps
|
||||||
over the lazy dog. The quick brown fox jumps over the lazy dog. The
|
over the lazy dog. The quick brown fox jumps over the lazy dog. The
|
||||||
Reference in New Issue
Block a user