Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2014-06-18 | Added haddock template. | John MacFarlane | 1 | -7/+5 | |
2014-06-09 | Updated default latex template so `\subtitle` works properly. | John MacFarlane | 1 | -12/+6 | |
Closes #1327. | |||||
2014-06-01 | LaTeX/Beamer templates: remove conditional around date. | John MacFarlane | 1 | -5/+13 | |
Closes #1321. | |||||
2014-05-06 | LaTeX template: Added linestretch variable. | John MacFarlane | 1 | -7/+5 | |
Documented this and fontfamily. | |||||
2014-05-06 | Added fontfamily variable to latex template. (tlvince) | John MacFarlane | 1 | -6/+6 | |
2014-05-06 | Updated templates: conditionalize author/date in latex template. | John MacFarlane | 1 | -5/+7 | |
2014-05-06 | Update latex/beamer templates: load upquote after fontenc. | John MacFarlane | 1 | -8/+5 | |
2014-04-30 | Use \setkeys{Gin}{} to set appropriate defaults for \includegraphics. | John MacFarlane | 1 | -11/+7 | |
In pandoc and beamer templates. Thanks to Yihui Xie. | |||||
2014-04-11 | Beamer template: Consistent styles for figure and table captions | John MacFarlane | 1 | -5/+12 | |
Thanks to aaronwolen. | |||||
2014-04-11 | Beamer template: Adjust widths correctly for oversized images. | John MacFarlane | 1 | -7/+5 | |
Thanks to Garrick Aden-Buie for the patch. | |||||
2014-04-05 | Fixed PDF print function in reveal.js template. | John MacFarlane | 1 | -5/+7 | |
Closes #1220. Thanks to kevinkenan. | |||||
2014-04-04 | DocBook template: use authorgroup if there are authors. | John MacFarlane | 1 | -7/+5 | |
2014-04-04 | Added caption package to default beamer template. Closes #1200. | John MacFarlane | 1 | -7/+6 | |
2014-03-19 | beamer template: changes for better unicode handling. | John MacFarlane | 1 | -7/+7 | |
Ported from LaTeX template. Thanks to KarolS for the patch. | |||||
2014-03-04 | Added default.icml to templates. | John MacFarlane | 1 | -6/+7 | |
2014-02-20 | default.latex template: use fontenc package only for pdflatex. | John MacFarlane | 1 | -6/+6 | |
See #1164. | |||||
2014-02-18 | Move include-after to end in revealjs template. (certainlyakey) | John MacFarlane | 1 | -7/+6 | |
2013-12-13 | Allow use of `\includegraphics[size]` in beamer. | John MacFarlane | 1 | -6/+7 | |
This just required porting a macro definition from the default latex template to the default beamer template. | |||||
2013-12-11 | latex template: Put header-includes after title. | John MacFarlane | 1 | -5/+7 | |
Closes #908. | |||||
2013-12-11 | default latex template: added abstract variable. | John MacFarlane | 1 | -8/+5 | |
2013-12-09 | Updated beamer template for booktabs. | John MacFarlane | 1 | -7/+7 | |
2013-12-03 | Use latest pandoc-templates. | John MacFarlane | 1 | -3/+6 | |
2013-12-04 | Add booktabs package for LaTeX tables | Jose Luis Duran | 1 | -8/+5 | |
[ci skip] | |||||
2013-11-30 | ConTeXt writer: Don't hardcode figure/table placement. | John MacFarlane | 1 | -6/+7 | |
Instead, let this be set in the template, using `\setupfloat`. Thanks to Aditya Mahajan for the suggestion. | |||||
2013-11-22 | ConTeXt writer: Use setupcaption to separate style from content. | John MacFarlane | 1 | -5/+7 | |
Instead of adding 'nunumber' every time we place a figure... Closes #1067. | |||||
2013-10-21 | Updated beamer template. | John MacFarlane | 1 | -5/+5 | |
Now references should work properly (in a slide) when `--biblatex` or `--natbib` is used. | |||||
2013-09-24 | OpenDocument writer: don't use font-face-decls variable. | John MacFarlane | 1 | -8/+5 | |
2013-09-07 | HTML5 template: Add meta tag to allow user scaling. | John MacFarlane | 1 | -5/+8 | |
(Erik Evenson) | |||||
2013-08-11 | ODT/OpenDocument writer: Minor changes for ODF 1.2 conformance. | John MacFarlane | 1 | -8/+5 | |
See #939. We leave the nonconforming contextual-spacing attribute, which is provided by LibreOffice itself and seems to be supported. | |||||
2013-08-06 | Beamer template: Added fonttheme variable. | John MacFarlane | 1 | -5/+8 | |
2013-07-20 | LaTeX template: Added `biblio-style` variable. | John MacFarlane | 1 | -8/+5 | |
Closes #920. | |||||
2013-07-17 | LaTeX/Beamer template: Added `classoption` variable. | John MacFarlane | 1 | -7/+7 | |
This is intended for class options like `oneside`; it may be repeated with different options. Thanks to Oliver Matthews. | |||||
2013-07-04 | default.latex: Use tex-ansi mapping for monofont. | John MacFarlane | 1 | -6/+7 | |
This ensures that straight quotes appear as straight, rather than being treated as curly. See #889. | |||||
2013-06-27 | Man writer: give more fine-grained control in template. | John MacFarlane | 1 | -7/+6 | |
Now the `title`, `section`, `header`, and `footer` can all be set individually in metadata. The `description` variable has been removed. Quotes have been added so that spaces are allowed in the title. If you have a title that begins COMMAND(1) footer here | header here pandoc will parse it as before into a title, section, header, and footer. But you can also specify these elements explicitly. Closes #885. | |||||
2013-06-24 | Use new flexible metadata type. | John MacFarlane | 1 | -7/+7 | |
* Depend on pandoc 1.12. * Added yaml dependency. * `Text.Pandoc.XML`: Removed `stripTags`. (API change.) * `Text.Pandoc.Shared`: Added `metaToJSON`. This will be used in writers to create a JSON object for use in the templates from the pandoc metadata. * Revised readers and writers to use the new Meta type. * `Text.Pandoc.Options`: Added `Ext_yaml_title_block`. * Markdown reader: Added support for YAML metadata block. Note that it must come at the beginning of the document. * `Text.Pandoc.Parsing.ParserState`: Replace `stateTitle`, `stateAuthors`, `stateDate` with `stateMeta`. * RST reader: Improved metadata. Treat initial field list as metadata when standalone specified. Previously ALL fields "title", "author", "date" in field lists were treated as metadata, even if not at the beginning. Use `subtitle` metadata field for subtitle. * `Text.Pandoc.Templates`: Export `renderTemplate'` that takes a string instead of a compiled template.. * OPML template: Use 'for' loop for authors. * Org template: '#+TITLE:' is inserted before the title. Previously the writer did this. | |||||
2013-06-02 | Latest template changes: title attribute on title section in dzslides. | John MacFarlane | 1 | -5/+8 | |
2013-05-07 | Made `\includegraphics` more flexible in LaTeX template. | John MacFarlane | 1 | -5/+5 | |
Now it can be used with options, if needed. Thanks to Bernhard Weichel. | |||||
2013-05-01 | Fixed errors in revealjs template. | John MacFarlane | 1 | -5/+5 | |
2013-04-30 | revealjs templates: use query hashes for defaults, include remotes. | John MacFarlane | 1 | -8/+5 | |
2013-04-25 | LaTeX template: Changes to make mathfont work with xelatex. | John MacFarlane | 1 | -5/+8 | |
We need the mathspec library, not just fontspec, for this. We also need to set options for setmathfont. Closes #734. | |||||
2013-04-15 | DocBook template: Use DocBook 4.5 doctype. | John MacFarlane | 1 | -5/+5 | |
2013-03-25 | Slidy: Use slidy.js rather than slidy.js.gz. | John MacFarlane | 1 | -5/+5 | |
Reason: some browsers have trouble with the gzipped js file, at least on the local file system. Closes #795. | |||||
2013-03-24 | revealjs template: include pdf stylesheet by default. | John MacFarlane | 1 | -7/+5 | |
2013-03-23 | New revealjs template. | John MacFarlane | 1 | -6/+6 | |
2013-03-22 | Updated templates to include reveal.js. | John MacFarlane | 1 | -0/+8 | |
2013-03-21 | Added basic support for reveal.js. | Jamie F. Olson | 1 | -6/+0 | |
Support unordered and ordered lists with "fragment" elements. Modified by JGM to remove the --reveal_js-url command-line option. Instead use -V reveal_js-url=... as with slidy and the other slide formats. Also cleaned up the list code in the HTML writer. | |||||
2013-03-20 | Added OPML template, tests. | John MacFarlane | 1 | -13/+5 | |
Minor fixes to OPML writer. Improved OPML reader tests. | |||||
2013-03-03 | beamer template: Provide `\Oldincludegraphics` as in LaTeX template. | John MacFarlane | 1 | -7/+12 | |
The template redefines `\includegraphics` to give special treatment for too-wide images. But this causes problems for literal uses of `\includegraphics`. This change allows authors to use `\Oldincludegraphics`, as in the latex template. | |||||
2013-02-27 | LaTeX template: Load microtype after fonts. | John MacFarlane | 1 | -5/+8 | |
Microtype needs to know what fonts are being used. Thanks to dfc for the patch. | |||||
2013-02-20 | Small spacing change in context template. | John MacFarlane | 1 | -8/+5 | |