aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2015-01-20Merge pull request #78 from EoinTravers/patch-1John MacFarlane1-2/+2
Link to non-minified reveal.js JS and CSS files
2015-01-19Link to non-minified reveal.js JS and CSS filesEoin Travers1-2/+2
`reveal.js` no longer ships with /css/reveal.min.css or /js/reveal.min.js, so template should refer to non-minified original files.
2014-12-28Merge pull request #76 from ousia/masterJohn MacFarlane2-2/+2
YAML rights containing blank lines should be wrapped in a <div> (not <p>)
2014-12-28replace <p class="rights"> with <div class="rights"> (fixes #75)Pablo Rodríguez2-2/+2
2014-11-17epub templates: insert id="cover" in body of cover page.John MacFarlane2-2/+2
We check for the coverpage variable.
2014-11-17Revert "epub, epub3: Added id="cover" to body of titlepage."John MacFarlane2-8/+3
This reverts commit 63443da4501728332a6624a1d1b769ef9183436b.
2014-11-17Revert "Removed extra body tag from epub3 template."John MacFarlane2-0/+3
This reverts commit 7ff2baf592ee4627da0ad1e5cec60e6be3de5785.
2014-11-16Removed extra body tag from epub3 template.John MacFarlane2-3/+0
2014-11-16epub, epub3: Added id="cover" to body of titlepage.John MacFarlane2-3/+8
Closes jgm/pandoc#1758.
2014-09-27LaTeX template: Add shorthands=off to babel options.John MacFarlane1-1/+1
This prevents special bindings of characters like " in Spanish.
2014-09-26Merge pull request #70 from bluebirch/masterJohn MacFarlane1-8/+8
Fix polyglossia/biblatex problem with xelatex
2014-09-25Revert "Use biblatex-chicago instead of biblatex."Stefan Björk1-1/+1
This reverts commit a0ea58bc2ed43a09f6c349ad20a0b1ee2791a75b.
2014-09-24Use biblatex-chicago instead of biblatex.Stefan Björk1-1/+1
2014-09-24Fixed typo.Stefan Björk1-1/+0
2014-09-24Moved polyglossia/babel definitions to before biblatex; otherwise biblatex ↵Stefan Björk1-8/+9
fails with xetex.
2014-09-09Added \VerbatimFootnotes if there is verbatim in notes.John MacFarlane1-0/+1
See http://tex.stackexchange.com/questions/203/how-to-obtain-verbatim-text-in-a-footnote Closes jgm/pandoc#1616.
2014-08-31EPUB, EPUB3 templates: Handle structured metadata on titlepage.John MacFarlane2-7/+37
Previously we just expected 'title', 'subtitle', 'author', 'date'. Now we still support those, but also support the format recommended for epub metadata in the pandoc README: --- title: - type: main text: My Book - type: subtitle text: An investigation of metadata creator: - role: author text: John Smith - role: editor text: Sarah Jones identifier: - scheme: DOI text: doi:10.234234.234/33 publisher: My Press rights: (c) 2007 John Smith, CC BY-NC ...
2014-08-20latex template: disable protrusion for typewriter font.John MacFarlane1-1/+4
Closes #1549. Thanks to lemzwerg.
2014-08-17Typo: duel->dual. (#13)John MacFarlane1-1/+1
2014-08-16Indicate that the templates are duel licensed, GPLv2+ and BSD3.John MacFarlane1-0/+37
Closes #13.
2014-08-12epub3: Put title page in section w epub:type titlepage.John MacFarlane1-4/+6
2014-07-20Added `lot` and `lof` variables to latex template.John MacFarlane1-0/+6
lof = list of figures. lot = list of tables.
2014-07-08Added `type="text/css"` to link tags in epub3 template.John MacFarlane1-1/+1
2014-06-28Merge pull request #65 from claremacrae/dokuwikiJohn MacFarlane1-0/+13
Merge in template file for Dokuwiki support
2014-06-28Merge remote-tracking branch 'jgm/master' into dokuwikiClare Macrae9-59/+139
2014-06-18Added default.haddock.John MacFarlane1-0/+1
2014-06-09Fixed subtitle in latex template.John MacFarlane1-2/+1
See jgm/pandoc#1327.
2014-06-09LaTeX template: fix subtitles.John MacFarlane1-4/+2
The old code really requires scrartcl from koma-script. Closes #1327.
2014-06-01LaTeX/Beamer templates: Remove conditionalization around date.John MacFarlane2-4/+0
This restores the old behavior, where no date was printed if no date was specified. If the `\date` command is removed entirely, standard document classes will print today's date. Closes #1321. Partially reverts fc5229df167aa61cdbcf14ce24581b36bb0a5b90. See #61.
2014-05-06latex template: Added linestretch variable that loads setspace.John MacFarlane1-0/+4
2014-05-06latex template: Added fontfamily variable.John MacFarlane1-0/+4
Thanks to tlvince for the patch. Closes #50.
2014-05-06latex template: conditionalize author and date.John MacFarlane1-0/+4
Thanks to ivoanjo for the patch. Closes #61.
2014-05-06Load upquote after fontenc in latex template.John MacFarlane2-2/+3
2014-05-06Merge pull request #60 from yihui/patch-1John MacFarlane1-1/+1
upquote must be used after fontenc
2014-05-06upquote must be used after fontencYihui Xie1-1/+1
otherwise single quotes in verbatim environments will be in trouble; see an example at http://stackoverflow.com/a/12852815/559676
2014-04-30Merge pull request #58 from yihui/masterJohn MacFarlane2-22/+11
Use \setkeys{Gin}{} to set appropriate defaults for \includegraphics
2014-04-11Use \setkeys{Gin}{} to set appropriate defaults for \includegraphics, ↵Yihui Xie2-22/+11
instead of entirely redefining this command. Note we also consider the height of images; if an image is too high, 0.8\textheight will be used for beamer slides, and \textheight is used for articles (see http://tex.stackexchange.com/q/11954/9128). If the user has explicitly provided the width/height options in \includegraphics[], our defaults will be overwritten, and this approach is better than the check `\@ifnextchar[` after \includegraphics because the latter approach simply gives up everything once it sees [, whereas \setkeys{Gin} can keep the good defaults unless they are explicitly overwritten in []. closes #30, closes #28, and closes #26
2014-04-11Revert "LaTeX template: Allow bibliography to be used in place of ↵John MacFarlane1-7/+2
biblio-files." This reverts commit 5f8d7968fe7c3d8da3363b7e3ff1a11914c081ae. I'll use a different approach, setting the biblio-files variable in the LaTeX writer. This will also work for beamer. See #42.
2014-04-11LaTeX template: Allow bibliography to be used in place of biblio-files.John MacFarlane1-2/+7
Closes #43. Thanks to nougad.
2014-04-11Merge pull request #44 from aaronwolen/beamer-captionsJohn MacFarlane1-0/+3
Beamer template: Consistent styles for figure and table captions
2014-04-11Fix issue #52: set max width and height of images in default.beamerGarrick Aden-Buie1-17/+8
2014-04-05reveal.js template: Fix PDF print function.John MacFarlane1-4/+13
See pandoc issue #1220.
2014-04-04DocBook template: Use authorgroup.John MacFarlane1-3/+7
2014-04-04Added caption package to beamer template.John MacFarlane1-0/+1
Closes #1200.
2014-03-19Merge pull request #54 from KarolS/masterJohn MacFarlane1-0/+10
Improving Unicode support in the Beamer template
2014-03-04Merge pull request #46 from mb21/masterJohn MacFarlane1-0/+43
InDesign ICML template
2014-02-28InDesign ICML templatemb211-0/+43
2014-02-26Backported changes from default.latex to default.beamer in order to improve ↵KarolS1-0/+10
Unicode support
2014-02-20default.latex: include fontenc only if pdflatex engine is used.John MacFarlane1-1/+1
See pandoc #1164.
2014-02-12Moved $include-after$ to the closing </body>Alexander Belyaev1-3/+4
See https://groups.google.com/forum/#!topic/pandoc-discuss/Fbfh8IIcVds