##// 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 ((* elif cell.level == 6 -*))
158 ((* elif cell.level == 6 -*))
159 ((* block h6 -*))\\*\textit((* endblock h6 -*))
159 ((* block h6 -*))\\*\textit((* endblock h6 -*))
160 ((*- endif -*))
160 ((*- endif -*))
161 {((( cell.source | escape_latex )))}
161 {((( cell.source | parse_citation | escape_latex )))}
162
162
163 ((* endblock headingcell *))
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 % Render markdown
172 % Render markdown
173 ((* block markdowncell scoped *))
173 ((* block markdowncell scoped *))
174 ((( cell.source | markdown2latex )))
174 ((( cell.source | parse_citation | markdown2latex )))
175 ((* endblock markdowncell *))
175 ((* endblock markdowncell *))
176
176
177 % Spit out the contents of raw cells unmodified
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 ((* block unknowncell scoped *))
183 ((* block unknowncell scoped *))
184 ((* endblock unknowncell *))
184 ((* endblock unknowncell *))
185
185
186 % Add a bibliography block to the postdoc
186 ((* block postdoc *))
187 ((* block postdoc *))
187 ((* block bibliography *))((* endblock bibliography *))
188 ((* block bibliography *))((* endblock bibliography *))
188 ((* endblock postdoc *)) No newline at end of file
189 ((* endblock postdoc *))
General Comments 0
You need to be logged in to leave comments. Login now