##// END OF EJS Templates
Post review with Min, Fernando, and Brian. Simplification...
Jonathan Frederic -
Show More
@@ -1,7 +1,7 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.
@@ -3,12 +3,15 b' 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 header *))
13 ((* block docclass *))((* endblock docclass *))
14
12 15 ((* block packages *))
13 16 \usepackage{graphicx} % Used to insert images
14 17 \usepackage{adjustbox} % Used to constrain images to a maximum size
@@ -22,7 +25,6 b' This template does not define a docclass, the inheriting class must define this.'
22 25 \usepackage{fancyvrb} % verbatim replacement that allows latex
23 26 \usepackage{grffile} % extends the file name processing of package graphics
24 27 %to support a larger range
25
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.)
@@ -30,7 +32,6 b' This template does not define a docclass, the inheriting class must define this.'
30 32 ((* endblock packages *))
31 33
32 34 ((* block definitions *))
33
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}
@@ -41,7 +42,6 b' This template does not define a docclass, the inheriting class must define this.'
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}
@@ -51,15 +51,12 b' This template does not define a docclass, the inheriting class must define this.'
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 *))
@@ -67,8 +64,8 b' This template does not define a docclass, the inheriting class must define this.'
67 64 ((* endblock definitions *))
68 65
69 66 ((* block commands *))
70 \sloppy % Prevent overflowing lines due to hard-to-break entities
71
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
@@ -77,18 +74,30 b' This template does not define a docclass, the inheriting class must define this.'
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 81 ((* endblock commands *))
82 ((* endblock header *))
83
84 ((* block body *))
85 \begin{document}
86 86
87 87 ((* block predoc *))
88 88 ((* block maketitle *))\maketitle((* endblock maketitle *))
89 89 ((* block abstract *))((* endblock abstract *))
90 90 ((* endblock predoc *))
91 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 *))
100
92 101 %===============================================================================
93 102 % Support blocks
94 103 %===============================================================================
@@ -186,8 +195,3 b' This template does not define a docclass, the inheriting class must define this.'
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 NO CONTENT: modified file
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