Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-01-10 | LaTeX template: Add hyphen option to url package. | John MacFarlane | 1 | -0/+1 | |
2017-01-03 | LaTeX template: allow passing `microtypeoptions` to microtype. | John MacFarlane | 1 | -1/+1 | |
Thanks to Vaclav Haisman. | |||||
2016-09-28 | Updated test suite. | John MacFarlane | 1 | -0/+6 | |
2016-06-07 | latex template: fix for obscure hyperref/xelatex issue. | John MacFarlane | 1 | -2/+2 | |
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. | |||||
2015-12-19 | LaTeX/Beamer template changes (Thomas Hodgson): | John MacFarlane | 1 | -0/+4 | |
* 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.) | |||||
2015-12-12 | Fixed tests. | John MacFarlane | 1 | -3/+3 | |
2015-12-03 | LaTeX template changes: | John MacFarlane | 1 | -2/+0 | |
- 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) | |||||
2015-11-20 | latex template changes. | John MacFarlane | 1 | -3/+2 | |
* 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. | |||||
2015-11-12 | Updated tests for template changes. | John MacFarlane | 1 | -6/+3 | |
2015-10-20 | Updated tests for latex/context template changes. | John MacFarlane | 1 | -25/+7 | |
2015-10-18 | Updated tests for template changes. | John MacFarlane | 1 | -1/+1 | |
2015-10-13 | Fixed tests for template changes. | John MacFarlane | 1 | -1/+2 | |
2015-10-10 | Removed xltxtra, xunicode from LaTeX template. | John MacFarlane | 1 | -1/+0 | |
Thanks Andrew Dunning. Updated tests and changelog. | |||||
2015-10-04 | Updated tests for changes to latex template. | John MacFarlane | 1 | -1/+9 | |
2015-06-27 | Updated latex writer tests for last template change. | John MacFarlane | 1 | -0/+1 | |
2015-05-27 | LaTeX template: Move hyperref before polyglossia. | John MacFarlane | 1 | -2/+2 | |
This avoids an error "Please load package hyperref before bidi package, and then try to run xelatex on your document again". See jgm/pandoc-templates #96. | |||||
2015-05-04 | Test updates for 15d16e84567ca74c18448c60a2499e484581798f. | John MacFarlane | 1 | -0/+4 | |
2015-05-02 | Fixed tests for change to latex template. | John MacFarlane | 1 | -1/+1 | |
2015-04-17 | Merge branch 'latex-tightlist' of https://github.com/jlduran/pandoc into ↵ | John MacFarlane | 1 | -0/+2 | |
jlduran-latex-tightlist Conflicts: data/templates | |||||
2015-04-17 | LaTeX template: redefine `\paragraph`, `\subparagraph`... | John MacFarlane | 1 | -0/+6 | |
to behave more like section headers. Closes #1658. | |||||
2014-12-15 | Improved texorpdfstring patch #1148. | John MacFarlane | 1 | -1/+1 | |
* Make LaTeX reader recognize texorpdfstring. * Don't use texorpdfstring unless it's actually needed. * Fix tests. | |||||
2014-12-15 | Merge branch 'use-texorpdfstring' of https://github.com/wilx/pandoc into ↵ | John MacFarlane | 1 | -1/+1 | |
wilx-use-texorpdfstring Conflicts: src/Text/Pandoc/Writers/LaTeX.hs tests/Tests/Writers/LaTeX.hs | |||||
2014-09-01 | LaTeX writer: Use a declaration for tight lists | Jose Luis Duran | 1 | -0/+2 | |
Currently, pandoc has hard-coded the following in order to make tight lists in LaTeX: ```hs text "\\itemsep1pt\\parskip0pt\\parsep0pt" ``` Which is fine, but does not allow customizations. For example, the `memoir` class already has a `\tightlist` declaration for this purpose: ```tex \newcommand{\tightlist}{% \setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}} ``` I'm proposing to use a similar solution: ```diff @@ In Writers/LaTeX.hs: -then text "\\itemsep1pt\\parskip0pt\\parsep0pt" +then text "\\tightlist" @@ In templates/default.latex: +\newcommand{\tightlist}{% + \setlength{\itemsep}{1pt}\setlength{\parskip}{0pt}\setlength{\parsep}{0pt}} ``` This allows us to customize the tightness to our needs. Backward Compatibility If a person is using a custom LaTeX template (not based upon the `memoir` class), the `\tightlist` declaration must be added. | |||||
2014-08-20 | More test updates. | John MacFarlane | 1 | -1/+4 | |
2014-06-01 | Updated tests for c8bc70a6bb12e0fbfadadb9480efafb3be4f11a5. | John MacFarlane | 1 | -0/+1 | |
2014-05-06 | Updated tests for template changes. | John MacFarlane | 1 | -4/+2 | |
2014-02-20 | Revised tests for new latex template. | John MacFarlane | 1 | -1/+1 | |
2014-02-13 | Update tests suite to expect \texorpdfstring. | Vaclav Zeman | 1 | -1/+1 | |
2013-09-01 | Use registerHeader in RST and LaTeX readers. | John MacFarlane | 1 | -1/+1 | |
This will give automatic unique identifiers, unless `-auto_identifiers` is specified. | |||||
2013-06-25 | Some test suite fixes for new metadata. | John MacFarlane | 1 | -0/+1 | |
2013-04-26 | Updated tests for changes in LaTeX template. | John MacFarlane | 1 | -1/+3 | |
2013-02-27 | Updated tests for latex template change (microtype). | John MacFarlane | 1 | -2/+2 | |
2013-01-26 | RST writer: Use `.. code:: language` for code blocks with language. | John MacFarlane | 1 | -2/+2 | |
Closes #721. Also fixed whitespace in lhs tests. | |||||
2013-01-21 | LaTeX template: Use `\urlstyle{same}` to avoid monospace URLs. | John MacFarlane | 1 | -0/+1 | |
2013-01-19 | LaTeX test updates for latest changes to template & h-k. | John MacFarlane | 1 | -0/+2 | |
2012-06-08 | Updated tests for changes in LaTeX template. | John MacFarlane | 1 | -1/+1 | |
2012-06-05 | Updated tests for changes in LaTeX changes. | John MacFarlane | 1 | -8/+7 | |
2012-06-05 | Updated tests for changes in latex template. | John MacFarlane | 1 | -15/+17 | |
2012-06-03 | Updated test suite. | John MacFarlane | 1 | -15/+12 | |
2012-05-14 | LaTeX writer: More consistent interblock spacing. | John MacFarlane | 1 | -0/+1 | |
2012-04-30 | Improved spacing around LaTeX block environments. | John MacFarlane | 1 | -0/+1 | |
verbatim, itemize, description, enumerate. | |||||
2012-04-30 | LaTeX writer: Fixed spacing in quote environments. | John MacFarlane | 1 | -1/+0 | |
Closes #502. Previously you'd get: ~~~ hi \begin{quote} hi \end{quote} hi ~~~ Now we get: ~~~ hi \begin{quote} hi \end{quote} hi ~~~ | |||||
2012-04-28 | Updated latex writer tests for new template. | John MacFarlane | 1 | -0/+2 | |
2012-04-21 | LaTeX writer: Use fixltx2e package to provide '\textsubscript'. | John MacFarlane | 1 | -0/+1 | |
2012-04-03 | LaTeX writer: don't use eurosym package unless document has a €. | John MacFarlane | 1 | -1/+0 | |
2012-03-25 | Added PDF metadata (title,author) in LaTeX standalone + PDF output. | John MacFarlane | 1 | -0/+6 | |
Closes #459. | |||||
2012-03-07 | Updated tests for euro-related template changes. | John MacFarlane | 1 | -0/+3 | |
2011-12-30 | Updated latex tests. | John MacFarlane | 1 | -2/+6 | |
2011-12-29 | Added 'beamer' as an output format. | John MacFarlane | 1 | -1/+1 | |
Beamer output uses the default LaTeX template, with some customizations via variables. Added `writerBeamer` to `WriterOptions`. Added `--beamer` option to `markdown2pdf`. | |||||
2011-07-30 | Changes to tests for new latex templates. | John MacFarlane | 1 | -6/+5 | |