##// END OF EJS Templates
Post review with Min, Fernando, and Brian. Simplification...
Jonathan Frederic -
Show More
@@ -1,17 +1,17 b''
1 1
2 2 % Default to the notebook output style
3 3 ((* if not cell_style is defined *))
4 ((* set cell_style = 'style_bw_ipython.tplx' *))
4 ((* set cell_style = 'style_ipython.tplx' *))
5 5 ((* endif *))
6 6
7 7 % Inherit from the specified cell style.
8 8 ((* extends cell_style *))
9 9
10 10
11 11 %===============================================================================
12 12 % Latex Article
13 13 %===============================================================================
14 14
15 15 ((* block docclass *))
16 16 \documentclass{article}
17 17 ((* endblock docclass *)) No newline at end of file
@@ -1,193 +1,197 b''
1 1 ((= Latex base template (must inherit)
2 2 This template builds upon the abstract template, adding common latex output
3 3 functions. Figures, data_text,
4 4 This template does not define a docclass, the inheriting class must define this.=))
5 5
6 ((*- extends 'abstract.tplx' -*))
6 ((*- extends 'display_priority.tplx' -*))
7 7
8 8 %===============================================================================
9 9 % Abstract overrides
10 10 %===============================================================================
11 11
12 ((* block packages *))
12 ((* block header *))
13 ((* block docclass *))((* endblock docclass *))
14
15 ((* block packages *))
13 16 \usepackage{graphicx} % Used to insert images
14 17 \usepackage{adjustbox} % Used to constrain images to a maximum size
15 18 \usepackage{color} % Allow colors to be defined
16 19 \usepackage{enumerate} % Needed for markdown enumerations to work
17 20 \usepackage{geometry} % Used to adjust the document margins
18 21 \usepackage{amsmath} % Equations
19 22 \usepackage{amssymb} % Equations
20 23 \usepackage[utf8]{inputenc} % Allow utf-8 characters in the tex document
21 24 \usepackage{ucs} % Extended unicode (utf-8) support
22 25 \usepackage{fancyvrb} % verbatim replacement that allows latex
23 26 \usepackage{grffile} % extends the file name processing of package graphics
24 %to support a larger range
25
27 % to support a larger range
26 28 % The hyperref package gives us a pdf with properly built
27 29 % internal navigation ('pdf bookmarks' for the table of contents,
28 30 % internal cross-reference links, web links for URLs, etc.)
29 31 \usepackage{hyperref}
30 ((* endblock packages *))
31
32 ((* block definitions *))
32 ((* endblock packages *))
33 33
34 ((* block definitions *))
34 35 \definecolor{orange}{cmyk}{0,0.4,0.8,0.2}
35 36 \definecolor{darkorange}{rgb}{.71,0.21,0.01}
36 37 \definecolor{darkgreen}{rgb}{.12,.54,.11}
37 38 \definecolor{myteal}{rgb}{.26, .44, .56}
38 39 \definecolor{gray}{gray}{0.45}
39 40 \definecolor{lightgray}{gray}{.95}
40 41 \definecolor{mediumgray}{gray}{.8}
41 42 \definecolor{inputbackground}{rgb}{.95, .95, .85}
42 43 \definecolor{outputbackground}{rgb}{.95, .95, .95}
43 44 \definecolor{traceback}{rgb}{1, .95, .95}
44
45 45 % new ansi colors
46 46 \definecolor{brown}{rgb}{0.54,0.27,0.07}
47 47 \definecolor{purple}{rgb}{0.5,0.0,0.5}
48 48 \definecolor{darkgray}{gray}{0.25}
49 49 \definecolor{lightred}{rgb}{1.0,0.39,0.28}
50 50 \definecolor{lightgreen}{rgb}{0.48,0.99,0.0}
51 51 \definecolor{lightblue}{rgb}{0.53,0.81,0.92}
52 52 \definecolor{lightpurple}{rgb}{0.87,0.63,0.87}
53 53 \definecolor{lightcyan}{rgb}{0.5,1.0,0.83}
54
55 54 % Define a nice break command that doesn't care if a line doesn't already
56 55 % exist.
57 56 \def\br{\hspace*{\fill} \\* }
58
59 57 % Math Jax compatability definitions
60 58 \def\gt{>}
61 59 \def\lt{<}
62
63 60 % Document parameters
64 61 ((* block title *))\title{((( resources.metadata.name | escape_latex )))}((* endblock title *))
65 62 ((* block date *))((* endblock date *))
66 63 ((* block author *))((* endblock author *))
67 ((* endblock definitions *))
68
69 ((* block commands *))
70 \sloppy % Prevent overflowing lines due to hard-to-break entities
64 ((* endblock definitions *))
71 65
66 ((* block commands *))
67 % Prevent overflowing lines due to hard-to-break entities
68 \sloppy
72 69 % Setup hyperref package
73 70 \hypersetup{
74 71 breaklinks=true, % so long urls are correctly broken across lines
75 72 colorlinks=true,
76 73 urlcolor=blue,
77 74 linkcolor=darkorange,
78 75 citecolor=darkgreen,
79 76 }
80
81 77 % Slightly bigger margins than the latex defaults
82 78 ((* block margins *))
83 79 \geometry{verbose,tmargin=1in,bmargin=1in,lmargin=1in,rmargin=1in}
84 80 ((* endblock margins *))
85 ((* endblock commands *))
81 ((* endblock commands *))
82 ((* endblock header *))
86 83
87 ((* block predoc *))
84 ((* block body *))
85 \begin{document}
86
87 ((* block predoc *))
88 88 ((* block maketitle *))\maketitle((* endblock maketitle *))
89 89 ((* block abstract *))((* endblock abstract *))
90 ((* endblock predoc *))
90 ((* endblock predoc *))
91
92 ((( super() )))
93
94 % Add a bibliography block to the postdoc
95 ((* block postdoc *))
96 ((* block bibliography *))((* endblock bibliography *))
97 ((* endblock postdoc *))
98 \end{document}
99 ((* endblock body *))
91 100
92 101 %===============================================================================
93 102 % Support blocks
94 103 %===============================================================================
95 104
96 105 % Displaying simple data text
97 106 ((* block data_text *))
98 107 \begin{verbatim}
99 108 ((( output.text )))
100 109 \end{verbatim}
101 110 ((* endblock data_text *))
102 111
103 112 % Display python error text as-is
104 113 ((* block pyerr *))
105 114 \begin{Verbatim}[commandchars=\\\{\}]
106 115 ((( super() )))
107 116 \end{Verbatim}
108 117 ((* endblock pyerr *))
109 118 ((* block traceback_line *))
110 119 ((( line | indent | strip_ansi | escape_latex )))
111 120 ((* endblock traceback_line *))
112 121
113 122 % Display stream ouput with coloring
114 123 ((* block stream *))
115 124 \begin{Verbatim}[commandchars=\\\{\}]
116 125 ((( output.text | escape_latex | ansi2latex )))
117 126 \end{Verbatim}
118 127 ((* endblock stream *))
119 128
120 129 % Display latex
121 130 ((* block data_latex -*))
122 131 ((*- if output.latex.startswith('$'): -*))
123 132 ((= Replace $ symbols with more explicit, equation block. =))
124 133 \begin{equation*}
125 134 ((( output.latex | strip_dollars )))
126 135 \end{equation*}
127 136 ((*- else -*))
128 137 ((( output.latex )))
129 138 ((*- endif *))
130 139 ((* endblock data_latex *))
131 140
132 141 % Default mechanism for rendering figures
133 142 ((*- block data_png -*))((( draw_figure(output.png_filename) )))((*- endblock -*))
134 143 ((*- block data_jpg -*))((( draw_figure(output.jpeg_filename) )))((*- endblock -*))
135 144 ((*- block data_svg -*))((( draw_figure(output.svg_filename) )))((*- endblock -*))
136 145 ((*- block data_pdf -*))((( draw_figure(output.pdf_filename) )))((*- endblock -*))
137 146
138 147 % Draw a figure using the graphicx package.
139 148 ((* macro draw_figure(filename) -*))
140 149 ((* set filename = filename | posix_path *))
141 150 ((*- block figure scoped -*))
142 151 \begin{center}
143 152 \adjustimage{max size={0.9\linewidth}{0.9\paperheight}}{((( filename )))}
144 153 \end{center}
145 154 { \hspace*{\fill} \\}
146 155 ((*- endblock figure -*))
147 156 ((*- endmacro *))
148 157
149 158 % Draw heading cell. Explicitly map different cell levels.
150 159 ((* block headingcell scoped *))
151 160
152 161 ((* if cell.level == 1 -*))
153 162 ((* block h1 -*))\section((* endblock h1 -*))
154 163 ((* elif cell.level == 2 -*))
155 164 ((* block h2 -*))\subsection((* endblock h2 -*))
156 165 ((* elif cell.level == 3 -*))
157 166 ((* block h3 -*))\subsubsection((* endblock h3 -*))
158 167 ((* elif cell.level == 4 -*))
159 168 ((* block h4 -*))\paragraph((* endblock h4 -*))
160 169 ((* elif cell.level == 5 -*))
161 170 ((* block h5 -*))\subparagraph((* endblock h5 -*))
162 171 ((* elif cell.level == 6 -*))
163 172 ((* block h6 -*))\\*\textit((* endblock h6 -*))
164 173 ((*- endif -*))
165 174 {((( cell.source | replace('\n', ' ') | citation2latex | markdown2latex )))}
166 175
167 176 ((* endblock headingcell *))
168 177
169 178 % Redirect pyout to display data priority.
170 179 ((* block pyout scoped *))
171 180 ((* block data_priority scoped *))
172 181 ((( super() )))
173 182 ((* endblock *))
174 183 ((* endblock pyout *))
175 184
176 185 % Render markdown
177 186 ((* block markdowncell scoped *))
178 187 ((( cell.source | citation2latex | markdown2latex )))
179 188 ((* endblock markdowncell *))
180 189
181 190 % Spit out the contents of raw cells unmodified
182 191 ((* block rawcell scoped *))
183 192 ((( cell.source )))
184 193 ((* endblock rawcell *))
185 194
186 195 % Don't display unknown types
187 196 ((* block unknowncell scoped *))
188 197 ((* endblock unknowncell *))
189
190 % Add a bibliography block to the postdoc
191 ((* block postdoc *))
192 ((* block bibliography *))((* endblock bibliography *))
193 ((* endblock postdoc *)) No newline at end of file
@@ -1,29 +1,29 b''
1 1
2 2 % Default to the notebook output style
3 3 ((* if not cell_style is defined *))
4 4 ((* set cell_style = 'style_ipython.tplx' *))
5 5 ((* endif *))
6 6
7 7 % Inherit from the specified cell style.
8 8 ((* extends cell_style *))
9 9
10 10
11 11 %===============================================================================
12 12 % Latex Book
13 13 %===============================================================================
14 14
15 15 ((* block predoc *))
16 16 ((( super() )))
17 17 ((* block tableofcontents *))\tableofcontents((* endblock tableofcontents *))
18 18 ((* endblock predoc *))
19 19
20 20 ((* block docclass *))
21 21 \documentclass{report}
22 22 ((* endblock docclass *))
23 23
24 24 ((* block h1 -*))\part((* endblock h1 -*))
25 25 ((* block h2 -*))\chapter((* endblock h2 -*))
26 26 ((* block h3 -*))\section((* endblock h3 -*))
27 27 ((* block h4 -*))\subsection((* endblock h4 -*))
28 28 ((* block h5 -*))\subsubsection((* endblock h5 -*))
29 ((* block h6 -*))\paragraph((* endblock h6 -*)) No newline at end of file
29 ((* block h6 -*))\paragraph((* endblock h6 -*))
1 NO CONTENT: file was removed
1 NO CONTENT: file was removed
1 NO CONTENT: file was removed
1 NO CONTENT: file was removed
1 NO CONTENT: file was removed
General Comments 0
You need to be logged in to leave comments. Login now