-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtcre_supporting.tex
125 lines (96 loc) · 2.89 KB
/
tcre_supporting.tex
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% master document for tcre_supporting.tex
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% class
\documentclass{article}
%%%%%%%%%%%%%%%%%%%%
%%% preamble
%%%%%%%%%%%%%%%%%%%%
%%% font encodings
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
%%% bibliography
\usepackage[
backend=biber,
style=nature,
natbib=true,
url=false,
doi=false,
isbn=false,
eprint=false,
sorting=none
]{biblatex}
\addbibresource{Bibliography/auto.bib}
\addbibresource{Bibliography/byhand.bib}
%%% revision information
\usepackage[mark]{gitinfo2}
\renewcommand{\gitMark}{Branch: \gitBranch @\gitAbbrevHash \gitDirty\ \textbullet{} Author: \gitAuthorName\,(\gitAuthorIsoDate) \textbullet{} Tags: \gitTags}
\renewcommand{\gitMarkFormat}{\small}
%%% clicakable colored links
\usepackage{xcolor}
\usepackage[colorlinks=true,
linkcolor=blue,
urlcolor=blue,
citecolor=blue,
anchorcolor=blue
]{hyperref}
%%% inculde figures
\usepackage{graphicx}
%%% nicier charater proturution, kerning, etc.
\usepackage{microtype}
%%% more math symbols
\usepackage{amsmath}
\usepackage{mathpazo}
%\usepackage{textgreek}
%%% proper fomating of units
\usepackage{siunitx}
%%% better tables
\usepackage{booktabs}
%%% gcontrol margins
\usepackage[left=2cm, right=7cm, marginparwidth=6cm, marginparsep=3mm]{geometry}
%%% red colored margin notes
\usepackage{marginnote}
\renewcommand*{\marginfont}{\color{red}\sffamily\small}
%%% fancy author formating
\usepackage{authblk}
\renewcommand\Authfont{\scshape}
\renewcommand\Affilfont{\slshape\small}
%%% references between documents (cross ref)
\usepackage{xr}
\externaldocument{tcre}
%%% reset figure and table counters and add 'S' to the begingin of the lables
\newcommand{\beginsupplement}{%
\setcounter{table}{0}
\renewcommand{\thetable}{S\arabic{table}}%
\setcounter{figure}{0}
\renewcommand{\thefigure}{S\arabic{figure}}%
}
%%% title
\title{Supporting Information: Two-Component Reference Energy for the Design of Proteins and Foldamers}
%%% authors & affiliations
\author[1]{Riley Simmons-Edler}
\author[2]{Andrew Watkins}
\author[2]{Paramjit Arora}
\author[1,3,4]{Richard Bonneau}
\author[1,4]{P. Douglas Renfrew\thanks{[email protected]}}
\affil[1]{Center for Genomics and Systems Biology, Department of Biology, New York University, New York, NY 10009, USA}
\affil[2]{Department of Chemistry, New York University, New York, NY 10003, USA}
\affil[3]{Courant Institute of Mathematical Sciences, Computer Science Department, New York University, New York, NY 10009, USA}
\affil[4]{Simons Center for Data Analysis, Simons Foundation, New York, NY 10010, United States}
%%% date
\date{}
%%%%%%%%%%%%%%%%%%%%
%%% document
%%%%%%%%%%%%%%%%%%%%
\begin{document}
\maketitle
%%% toc
\tableofcontents
%%% run supp comand
\beginsupplement
%%% sections
\input{Sections/supporting}
%%% references
\printbibliography
\end{document}