Bring the knitr paper template up to date with the typography work
on master. The preamble now mirrors master's paper_template/text.tex:
- \DocumentMetadata{pdfstandard=ua-2} + tagpdf instead of the old
memoir / pdfmanagement-only setup
- article class with cdsc-paper.sty (the article-class replacement
for cdsc-memoir.sty added on master)
- fontspec with EB Garamond and TeX Gyre Heros, plus
\defaultfontfeatures{Ligatures=TeX} so --, ---, ``, '' work
- Makefile builds with latexmk -lualatex instead of -pdf
The knitr-specific bits are preserved unchanged:
- <<init>>= chunk for knit_hooks and resources/preamble.R
- <<test_table>>= chunk demonstrating kable inside a table float
- %.tex: %.Rtex pattern rule for knit() in the Makefile
verapdf --flavour ua2: 0 failures, 1723 passed rules.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
184 lines
6.6 KiB
Plaintext
184 lines
6.6 KiB
Plaintext
% Tagged PDF (PDF/UA-2) accessibility setup. The article class works
|
|
% with the LaTeX tagging-project, so we use the full \DocumentMetadata
|
|
% path here.
|
|
\DocumentMetadata{
|
|
pdfversion=2.0,
|
|
pdfstandard=ua-2,
|
|
lang=en-US,
|
|
}
|
|
|
|
\documentclass[12pt]{article}
|
|
|
|
\usepackage{cdsc-paper}
|
|
\usepackage{tagpdf}
|
|
\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}
|
|
% fontspec disables the classic TeX input ligatures by default
|
|
% (-- => en-dash, --- => em-dash, `` and '' => curly quotes), so
|
|
% re-enable them globally for every font loaded below.
|
|
\defaultfontfeatures{Ligatures=TeX}
|
|
\setmainfont{EB Garamond}
|
|
\setsansfont{TeX Gyre Heros}
|
|
\usepackage{wrapfig}
|
|
|
|
\usepackage[letterpaper,left=1.65in,right=1.65in,top=1.3in,bottom=1.2in]{geometry}
|
|
|
|
% packages i use in essentially every document
|
|
\usepackage{graphicx}
|
|
\usepackage{enumerate}
|
|
|
|
% packages i use in many documents but leave off by default
|
|
% \usepackage{amsmath, amsthm, amssymb}
|
|
% \usepackage{dcolumn}
|
|
% \usepackage{endfloat}
|
|
|
|
% import and customize urls
|
|
\usepackage[dvipsnames]{xcolor}
|
|
\usepackage[breaklinks]{hyperref}
|
|
|
|
% pdftitle/pdfauthor populate PDF and XMP metadata; keep these in sync
|
|
% with \title{} and \author{} below. UA-2 requires dc:title in XMP.
|
|
\hypersetup{colorlinks=true, linkcolor=Black, citecolor=Black, filecolor=Blue,
|
|
urlcolor=Blue, unicode=true,
|
|
pdftitle={Title},
|
|
pdfauthor={Your Name},
|
|
pdflang={en-US},
|
|
pdfdisplaydoctitle=true}
|
|
|
|
% list of footnote symbols for \thanks{}
|
|
\makeatletter
|
|
\renewcommand*{\@fnsymbol}[1]{\ensuremath{\ifcase#1\or *\or \dagger\or \ddagger\or
|
|
\mathsection\or \mathparagraph\or \|\or **\or \dagger\dagger
|
|
\or \ddagger\ddagger \else\@ctrerr\fi}}
|
|
\makeatother
|
|
\newcommand*\samethanks[1][\value{footnote}]{\footnotemark[#1]}
|
|
|
|
% add bibliographic stuff
|
|
\usepackage[american]{babel}
|
|
\usepackage{csquotes}
|
|
\usepackage[natbib=true, style=apa, backend=biber]{biblatex}
|
|
\addbibresource{refs.bib}
|
|
\DeclareLanguageMapping{american}{american-apa}
|
|
|
|
\defbibheading{secbib}[\bibname]{%
|
|
\section*{#1}%
|
|
\markboth{#1}{#1}%
|
|
\baselineskip 14.2pt}
|
|
|
|
\def\citepos#1{\citeauthor{#1}'s (\citeyear{#1})}
|
|
\def\citespos#1{\citeauthor{#1}' (\citeyear{#1})}
|
|
|
|
% LATEX NOTE: these lines will import vc stuff after running `make vc` which
|
|
% will add version control information to the bottom of each page. This can be
|
|
% useful for keeping track of which version of a document somebody has:
|
|
% \input{vc}
|
|
% \pagestyle{cdsc-page-git}
|
|
|
|
% LATEX NOTE: this alternative line will just input a timestamp at the
|
|
% build process, useful for Overleaf
|
|
% \pagestyle{cdsc-page-overleaf}
|
|
|
|
\begin{document}
|
|
|
|
\setlength{\parskip}{4.5pt}
|
|
% LATEX NOTE: Ideal linespacing is usually said to be between 120-140% the
|
|
% typeface size. So, for 12pt (default in this document, we're looking for
|
|
% somewhere between a 14.4-17.4pt \baselineskip. Single; 1.5 lines; and Double
|
|
% in MSWord are equivalent to ~117%, 175%, and 233%.
|
|
|
|
\baselineskip 16pt
|
|
|
|
\title{Title}
|
|
\author{Your Name\\
|
|
\href{mailto:youremail@uw.edu}{youremail@uw.edu}}
|
|
\date{}
|
|
|
|
\published{\textsc{\textcolor{BrickRed}{This document is an
|
|
unpublished draft.\\ Please do not distribute or cite without
|
|
permission.}}}
|
|
|
|
\maketitle
|
|
|
|
\begin{abstract}
|
|
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.
|
|
\end{abstract}
|
|
|
|
\section{Section}
|
|
|
|
% LATEX NOTE: This alphabet below is here so we can measure the line-length of
|
|
% different layouts. Typesetters suggest that an average line-length of
|
|
% between 45-90 characters and a rule of thumb for typesetting is that you
|
|
% should be able to fit between 2-3 alphabets on one line. Generally speaking,
|
|
% the shorter the line length, the better -- and the smaller the linespacing
|
|
% can become. The following line is 3 alphabets (73 characters).
|
|
|
|
abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz
|
|
|
|
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}.
|
|
|
|
\begin{table}
|
|
\centering
|
|
<<test_table, echo=FALSE>>=
|
|
kable(form.copy, format="latex")
|
|
@
|
|
\caption{This is a test table. There are \Sexpr{f(nrow(form.copy))} rows in the table.}
|
|
\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}.
|
|
|
|
% bibliography here
|
|
\setcounter{biburlnumpenalty}{9001}
|
|
\printbibliography[title = {References}, heading=secbib]
|
|
|
|
|
|
\end{document}
|
|
|
|
% LocalWords:
|