##// END OF EJS Templates
Added citation support to latex templates
Jonathan Frederic -
Show More
@@ -158,7 +158,7 b' This template does not define a docclass, the inheriting class must define this.'
158 158 ((* elif cell.level == 6 -*))
159 159 ((* block h6 -*))\\*\textit((* endblock h6 -*))
160 160 ((*- endif -*))
161 {((( cell.source | escape_latex )))}
161 {((( cell.source | parse_citation | escape_latex )))}
162 162
163 163 ((* endblock headingcell *))
164 164
@@ -171,7 +171,7 b' This template does not define a docclass, the inheriting class must define this.'
171 171
172 172 % Render markdown
173 173 ((* block markdowncell scoped *))
174 ((( cell.source | markdown2latex )))
174 ((( cell.source | parse_citation | markdown2latex )))
175 175 ((* endblock markdowncell *))
176 176
177 177 % Spit out the contents of raw cells unmodified
@@ -183,6 +183,7 b' This template does not define a docclass, the inheriting class must define this.'
183 183 ((* block unknowncell scoped *))
184 184 ((* endblock unknowncell *))
185 185
186 % Add a bibliography block to the postdoc
186 187 ((* block postdoc *))
187 188 ((* block bibliography *))((* endblock bibliography *))
188 189 ((* endblock postdoc *)) No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now