summaryrefslogtreecommitdiff
path: root/data
Commit message (Collapse)AuthorAge
* LaTeX template: Moved geometry after hyperref.John MacFarlane2017-01-29
| | | | | Thanks to Václav Haisman. Otherwise PDF sizes can be wrong in some circumstances.
* Copied a few changes from default.latex to default.beamer.John MacFarlane2017-01-25
| | | | (Wandmalfarbe)
* Changed position of \VerbatimNotes and fancyvrb in latex, beamer templates.John MacFarlane2017-01-24
| | | | | | | | | | This fixes hyperlinks on footnotes in documents that contain verbatim in notes. (Note: the beamer template was updated to match the LaTeX template, but at this point verbatim in notes seems not to work in beamer.) Closes #3361.
* Fix sample.lua barfing on Raw data (#3358)bumper3142017-01-18
| | | | | | * Fix for "pandoc: user error (Incorrect result type (string expected, got nil))." when the source format contains Raw data. * Update sample.lua
* LaTeX template: Add hyphen option to url package.John MacFarlane2017-01-10
|
* LaTeX template: allow passing `microtypeoptions` to microtype.John MacFarlane2017-01-03
| | | | Thanks to Vaclav Haisman.
* docbook5template: fix namespace declarations (Mauro Bieg).John MacFarlane2016-12-30
|
* We no longer need the MathMLInHTML.js shim from 2004!John MacFarlane2016-12-09
|
* Really fixed bash completion this time!John MacFarlane2016-12-07
| | | | Closes #2749.
* Improved bash-completion for filenames with spaces.John MacFarlane2016-12-07
|
* Fixed bash completion for filenames with spaces.John MacFarlane2016-12-07
| | | | Closes #2749.
* LaTeX template: use correct separator for pdfkeywords.John MacFarlane2016-12-04
| | | | | | Needs a comma not a semicolon. Thanks to Wandmalfarbe.
* [odt] Infer table's caption from the paragraph (#3224)hubertp-lshift2016-11-26
| | | | | | | | | | | | | | | ODT's reader always put empty captions for the parsed tables. This commit 1) checks paragraphs that follow the table definition 2) treats specially a paragraph with a style named 'Table' 3) does some postprocessing of the paragraphs that combines tables followed immediately by captions The ODT writer used 'TableCaption' style name for the caption paragraph. This commit follows the open office approach which allows for appending captions to table but uses a built-in style named 'Table' instead of 'TableCaption'. Any users of odt format (both writer and reader) are therefore required to change the style's name to 'Table', if necessary.
* Use pre-wrap for code in dzslides template (Nicolas Porcel).John MacFarlane2016-11-25
| | | | Otherwise overly long code will appear on every slide.
* Inline code when text has a special styleHubert Plociniczak2016-11-08
| | | | | | | | | | | | When a piece of text has a text 'Source_Text' then we assume that this is a piece of the document that represents a code that needs to be inlined. Addapted an odt writer to also reflect that change; previously it was just writing a 'preformatted' text using a non-distinguishable font style. Code blocks are still not recognized by the ODT reader. That's a separate issue.
* Add hypersetup options to beamer templates (Jake Zimmerman).John MacFarlane2016-10-25
|
* Handle line blocks in sample.lua custom lua writer.John MacFarlane2016-10-23
|
* LaTeX template: use footnote package to fix notes in tables.John MacFarlane2016-09-28
| | | | Thanks to Václav Haisman.
* revealjs template: Added `notes-server` option (Yoan Blanc).John MacFarlane2016-09-28
| | | | jgm/pandoc-templates#212
* LaTeX template: set default figure placement.John MacFarlane2016-09-28
| | | | | | | | | Thanks to Václav Haisman. This accompanies #3093. This change allows users to set the default figure placement for figures, instead of enforcing one choice. Users with custom templates will need to add this.
* Use p tags for subtitle, author, date in epub, revealjs, slidy templates.John MacFarlane2016-09-25
| | | | See #3119.
* HTML template: use p instead of h1 for subtitle, author, date.John MacFarlane2016-09-25
| | | | Closes #3119.
* Beamer template: added support for fontfamilies.John MacFarlane2016-09-23
| | | | | As already in LaTeX. Closes #216.
* Added `themeoptions` variable to beamer template (Carsten Gips).John MacFarlane2016-08-11
|
* Added `beamerarticle` variable.John MacFarlane2016-08-06
| | | | | | This causes the `beamerarticle` package to be loaded in beamer, to produce an article from beamer slides. (Carsten Gips)
* Textile reader: support `bc..` extended code blocks.John MacFarlane2016-07-22
| | | | | Also, remove trailing newline in code blocks (consistently with Markdown reader).
* Restored whitespace between paragraphs in beamer template.John MacFarlane2016-07-20
| | | | See jgm/pandoc-templates#207.
* LaTeX template: Added dummy definition for `\institute`.John MacFarlane2016-07-18
| | | | | | This isn't a standard command, and we want to avoid a crash when `institute` is used with the default template.
* beamer, latex templates: pass biblatexoptions directly in package load.John MacFarlane2016-07-01
| | | | This allows runtime optinos to be used. Fixes jgm/pandoc-citeproc#201
* Added Zim Wiki writer, template and tests.Alex Ivkin2016-06-30
|
* Added `secnumdepth` variable to LaTeX template.John MacFarlane2016-06-25
| | | | Closes #2920.
* Implement RawInline and RawBlock in sample lua custom writer.John MacFarlane2016-06-20
| | | | Closes #2985.
* latex template: fix for obscure hyperref/xelatex issue.John MacFarlane2016-06-07
| | | | | | | | | | | | | | | | | | | Here's a minimal case: \documentclass[]{article} \usepackage{hyperref} \begin{document} \section{\%á} \end{document} Without this change, this fails on the second invocation of xelatex. See https://tex.stackexchange.com/questions/313266/and-non-ascii-characters-in-headings This affects inputs this like # %á with pdf output via xelatex.
* LaTeX template: support for custom font families.John MacFarlane2016-05-19
| | | | | | | | | | | | | | | | Needed for correct polyglossia operation with Cyrillic fonts and perhaps can find some other usages. Example usage in YAML metadata: ``` fontfamilies: - name: \cyrillicfont font: Liberation Serif - name: \cyrillicfonttt options: Scale=MatchLowercase font: Liberation ``` (vladipus)
* Added docbook5 template.John MacFarlane2016-05-01
|
* Added `institute` variable in LaTeX and Beamer templates.John MacFarlane2016-03-19
|
* Custom writer: Pass attributes parameter to CaptionedImage.John MacFarlane2016-02-05
| | | | Closes #2697.
* Added default.tei TEI templateJohn MacFarlane2016-01-21
|
* HTML slide templates: add toc. (Andrew Dunning)John MacFarlane2016-01-01
|
* Added 'paper' after $papersize$ variable in latex template.John MacFarlane2015-12-23
| | | | | | | | | | | | | | | | Thus you can say `papersize: a4` and the latex will contain `a4paper`. This change may break some existing workflows; if you currently specify `a4paper`, you'll get `a4paperpaper` which is meaningless. However, the change seems worth it, as it will make the `papersize` variable work uniformly across ConTeXt, LaTeX, and html->pdf via wkhtmltopdf. See https://github.com/jgm/pandoc/commit/3861df510c45ecfc0ac9581dc6f16b07eac4a 62d#commitcomment-15135193
* Beamer: Moved header-includes before setting of title etc.John MacFarlane2015-12-19
| | | | | This matches a change already made in the LaTeX template (Thomas Hodgson). Closes jgm/pandoc-templates#168
* LaTeX/Beamer template changes (Thomas Hodgson):John MacFarlane2015-12-19
| | | | | | | | | | | | | | | * Added `thanks` variable * Use `parskip.sty` when `indent` isn't set (fall back to using `setlength` as before if `parskip.sty` isn't available). * Use `biblio-style` with biblatex. * Added `biblatexoptions` variable. * Added `section-titles` variable (defaults to true) to enable/suppress section title pages in beamer slide shows. * Moved beamer themes after fonts, so that themes can change fonts. (Previously the fonts set were being clobbered by lmodern.sty.)
* Implemented SoftBreak and new `--wrap` option.John MacFarlane2015-12-11
| | | | | | | | | | | | | | | | Added threefold wrapping option. * Command line option: deprecated `--no-wrap`, added `--wrap=[auto|none|preserve]` * Added WrapOption, exported from Text.Pandoc.Options * Changed type of writerWrapText in WriterOptions from Bool to WrapOption. * Modified Text.Pandoc.Shared functions for SoftBreak. * Supported SoftBreak in writers. * Updated tests. * Updated README. Closes #1701.
* Beamer template: make `\euro` conditional on presence of character.John MacFarlane2015-12-04
| | | | | | for xelatex and lualatex, as it is for pdflatex. Andrew Dunning.
* LaTeX template changes:John MacFarlane2015-12-03
| | | | | | | | - only pass options to color package if colorlinks is set - make definition of `\euro` conditional in xelatex/lualatex, as it is already for pdflatex (Andrew Dunning)
* Fixed man template so disabling hyphenation actually works.John MacFarlane2015-12-03
| | | | The command needs to come after .TH.
* context template: use simplefonts for font loading.John MacFarlane2015-11-20
| | | | | | | This is needed for things to work on ConTeXt stable from TeXLive 2015. Thanks to Pablo Rodríguez.
* context template: Revert use of `\setuphead` in title block.John MacFarlane2015-11-20
| | | | Thanks to Andrew Dunning and Rik Kabel.
* latex template changes.John MacFarlane2015-11-20
| | | | | | | | | | | | | | | | | | | | | * Removed setting of `subject` in PDF metadata. This used to be set to the subtitle, but really the subtitle need not give the subject. Also, `subtitle` can contain formatting, so we'd need, at least, a plain text version for this. * Moved `header-includes` before setting of `\title`, `\author`, etc. This allows these macros to be redefined. * Use `\subtitle` command for `subtitle`, instead of tacking it on to the title as before. We give a no-op fallback definition if it is not defined. This change should produce much better results in classes that support `\subtitle`. With the default article class, which does not define `\subtitle`, subtitles will no longer be printed unless the user defines `\subtitle` and redefines `\maketitle`. * Moved redefinitions of `\paragraph` and `\subparagraph` to before header-includes.
* Added 'navigation' variable to beamer template.John MacFarlane2015-11-17
| | | | | | Valid values are `empty` (the default), `horizontal`, `vertical`, and `frame`. Note that this changes the default behavior from `horizontal` to `empty`. Closes #2543.