summaryrefslogtreecommitdiff
path: root/data
Commit message (Collapse)AuthorAge
* LaTeX template: Added linestretch variable.John MacFarlane2014-05-06
| | | | Documented this and fontfamily.
* Added fontfamily variable to latex template. (tlvince)John MacFarlane2014-05-06
|
* Updated templates: conditionalize author/date in latex template.John MacFarlane2014-05-06
|
* Update latex/beamer templates: load upquote after fontenc.John MacFarlane2014-05-06
|
* Use \setkeys{Gin}{} to set appropriate defaults for \includegraphics.John MacFarlane2014-04-30
| | | | In pandoc and beamer templates. Thanks to Yihui Xie.
* MathMLinHTML: Fix deprecation warninggwern2014-04-20
| | | | | | | | The use of `nodeValue` on `Attr` objects causes a deprecation warning in Firefox since version 7. This patch causes calls to `value` instead of `nodeValue` for all `Attr` objects. This closes #362.
* Beamer template: Consistent styles for figure and table captionsJohn MacFarlane2014-04-11
| | | | Thanks to aaronwolen.
* Beamer template: Adjust widths correctly for oversized images.John MacFarlane2014-04-11
| | | | Thanks to Garrick Aden-Buie for the patch.
* Fixed PDF print function in reveal.js template.John MacFarlane2014-04-05
| | | | Closes #1220. Thanks to kevinkenan.
* DocBook template: use authorgroup if there are authors.John MacFarlane2014-04-04
|
* Added caption package to default beamer template. Closes #1200.John MacFarlane2014-04-04
|
* beamer template: changes for better unicode handling.John MacFarlane2014-03-19
| | | | Ported from LaTeX template. Thanks to KarolS for the patch.
* Added default.icml to templates.John MacFarlane2014-03-04
|
* default.latex template: use fontenc package only for pdflatex.John MacFarlane2014-02-20
| | | | See #1164.
* Move include-after to end in revealjs template. (certainlyakey)John MacFarlane2014-02-18
|
* reference.odt: Tidied styles.xml.John MacFarlane2014-01-02
|
* reference.docx: Include 'FootnoteText' style.John MacFarlane2013-12-27
| | | | | | | | Otherwise Word ignores the style, even when specified in the pPr element. I believe this should help with issue #901. You should now get 'FootnoteText' as the style of the footnote. You'll have to adjust the style yourself; it's currently just the same as Normal.
* Allow use of `\includegraphics[size]` in beamer.John MacFarlane2013-12-13
| | | | | This just required porting a macro definition from the default latex template to the default beamer template.
* Added Cite function to sample.lua.John MacFarlane2013-12-13
|
* latex template: Put header-includes after title.John MacFarlane2013-12-11
| | | | Closes #908.
* default latex template: added abstract variable.John MacFarlane2013-12-11
|
* Updated beamer template for booktabs.John MacFarlane2013-12-09
|
* Use latest pandoc-templates.John MacFarlane2013-12-03
|
* Add booktabs package for LaTeX tablesJose Luis Duran2013-12-04
| | | | [ci skip]
* ConTeXt writer: Don't hardcode figure/table placement.John MacFarlane2013-11-30
| | | | | Instead, let this be set in the template, using `\setupfloat`. Thanks to Aditya Mahajan for the suggestion.
* ConTeXt writer: Use setupcaption to separate style from content.John MacFarlane2013-11-22
| | | | | | Instead of adding 'nunumber' every time we place a figure... Closes #1067.
* Updated beamer template.John MacFarlane2013-10-21
| | | | | Now references should work properly (in a slide) when `--biblatex` or `--natbib` is used.
* Removed data files for s5, slideous, slidy.John MacFarlane2013-10-20
| | | | | | | Users of s5 and slideous will have to download the needed files, as has been documented for some time in the README. slidy files will be sought on the web, as before.
* OpenDocument writer: don't use font-face-decls variable.John MacFarlane2013-09-24
|
* HTML5 template: Add meta tag to allow user scaling.John MacFarlane2013-09-07
| | | | (Erik Evenson)
* Removed dependency on citeproc-hs.John MacFarlane2013-08-24
| | | | | | | | | | | | | | | | | | | | | | | | Going forward we'll use pandoc-citeproc, as an external filter. The `--bibliography`, `--csl`, and `--citation-abbreviation` fields have been removed. Instead one must include `bibliography`, `csl`, or `csl-abbrevs` fields in the document's YAML metadata. The filter can then be used as follows: pandoc --filter pandoc-citeproc The `Text.Pandoc.Biblio` module has been removed. Henceforth, `Text.CSL.Pandoc` from pandoc-citations can be used by library users. The Markdown and LaTeX readers now longer format bibliographies and citations. That must be done using `processCites` or `processCites'` from Text.CSL.Pandoc. All bibliography-related fields have been removed from `ReaderOptions` and `WriterOptions`: `writerBiblioFiles`, `readerReferences`, `readerCitationStyle`. API change.
* reference.odt: Change generator in meta.xml to Pandoc.John MacFarlane2013-08-11
|
* ODT/OpenDocument writer: Minor changes for ODF 1.2 conformance.John MacFarlane2013-08-11
| | | | | See #939. We leave the nonconforming contextual-spacing attribute, which is provided by LibreOffice itself and seems to be supported.
* Preliminary support for new Div and Span elements in writers.John MacFarlane2013-08-08
| | | | | Currently these are "transparent" containers, except in HTML, where they produce div and span elements with attributes.
* Beamer template: Added fonttheme variable.John MacFarlane2013-08-06
|
* LaTeX template: Added `biblio-style` variable.John MacFarlane2013-07-20
| | | | Closes #920.
* LaTeX/Beamer template: Added `classoption` variable.John MacFarlane2013-07-17
| | | | | This is intended for class options like `oneside`; it may be repeated with different options. Thanks to Oliver Matthews.
* Updated sample.lua for new metadata.John MacFarlane2013-07-14
|
* Simplified margin fields in default epub CSS file.John MacFarlane2013-07-13
|
* Default epub CSS: Removed highlighting styles.John MacFarlane2013-07-13
| | | | | These are added automatically to individual chapter files, depending on the highlighting style selected on the command line.
* default.latex: Use tex-ansi mapping for monofont.John MacFarlane2013-07-04
| | | | | This ensures that straight quotes appear as straight, rather than being treated as curly. See #889.
* Custom writer: Pass full metadata, not just tit/auth/date.John MacFarlane2013-06-27
|
* Man writer: give more fine-grained control in template.John MacFarlane2013-06-27
| | | | | | | | | | | | | | | | | 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.
* Use latest chicago-author-date.csl.John MacFarlane2013-06-25
|
* Use new flexible metadata type.John MacFarlane2013-06-24
| | | | | | | | | | | | | | | | | | | | | | | | | * 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.
* Latest template changes: title attribute on title section in dzslides.John MacFarlane2013-06-02
|
* Made `\includegraphics` more flexible in LaTeX template.John MacFarlane2013-05-07
| | | | | | Now it can be used with options, if needed. Thanks to Bernhard Weichel.
* Fixed errors in revealjs template.John MacFarlane2013-05-01
|
* revealjs templates: use query hashes for defaults, include remotes.John MacFarlane2013-04-30
|
* LaTeX template: Changes to make mathfont work with xelatex.John MacFarlane2013-04-25
| | | | | We need the mathspec library, not just fontspec, for this. We also need to set options for setmathfont. Closes #734.