summaryrefslogtreecommitdiff
path: root/main.tex
blob: 8578f2baca2359422035c833f6c4214d39ae6615 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
\documentclass[12pt,a4paper,english]{article}

%% character encodings, language, etc.
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}

%% better font
\usepackage{fontspec}
\setmainfont{Times New Roman}
%\setsansfont{Sans Serif}
%\setmonofont{Courier New}

%% typical math resources
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsfonts}

%% for handling multiple authors
\usepackage{authblk}

%% for nice units and fractions
\usepackage{units}

%% for creating hyperlinks in cross-references
\usepackage{hyperref}

%% for paragraphs without indentations
\usepackage{parskip}

%% smaller margins (add [cm] option for even smaller)
\usepackage{fullpage}

%% for, well, fancy headers
\usepackage{fancyhdr}

%% pdf looks better with microtype
\usepackage[kerning,spacing]{microtype}
\microtypecontext{spacing=nonfrench}

%% enable graphics
\usepackage{graphics}
\usepackage[pdftex]{graphicx}

%% for colored text and backgrounds
%\usepackage{color}

\ifpdf
    %% insert license.xmp into the final document
    \usepackage{xmpincl}
    \includexmp{license}

    %% for \pdfdate
    \usepackage{datetime}
    
    \pdfinfo{
        /Author         (Enzymatic Synthesis Group)
        /Title          (Enzymatic DNA Synthesis Roadmap)
        /CreationDate   (D:\pdfdate) %20120221120000
        /ModDate        (D:\pdfdate)
        /Subject        (enzymatic dna synthesis)
        /Keywords       (enzymatic dna synthesis, dna synthesis, dna, polymerase, dna polymerase, protein design, enzyme design, oligonucleotide synthesis)
    }
\fi %pdf

%% just some metadata for \maketitle if it should be used later
%% consider using http://www-spires.fnal.gov/spires/hepnames/authors_xml/
\title{Enzymatic DNA Synthesis Roadmap}
\author{Enzymatic Synthesis Group}

%% for use with authblk
\author[1]{Bryan A. Bishop}
\author[2]{another author}
\author[2]{some other author}

\affil[1]{institute for minimal institutionalization}
\affil[2]{institute for advanced institutionalization}

\begin{document}
    \input{tex/title.tex}
    \input{tex/copyright.tex}
    \input{tex/table-of-contents.tex}

    \input{tex/introduction.tex}
    
    %\input{tex/bibliography.tex}
    
    \input{tex/appendix1.tex}
\end{document}