summaryrefslogtreecommitdiff
path: root/tests/writer.latex
Commit message (Collapse)AuthorAge
* LaTeX writer: use \(..\) instead of $..$ for inline math.John MacFarlane2014-07-29
| | | | Closes #1464.
* LaTeX writer: Use \nolinkurl in email autolinks.John MacFarlane2014-07-15
| | | | | | This allows them to be styled using `\urlstyle{tt}`. Thanks to Ulrike Fischer for the solution.
* Updated tests for template changes.John MacFarlane2014-05-06
|
* Updated tests for new LaTeX template.John MacFarlane2014-04-30
|
* Revised tests for new latex template.John MacFarlane2014-02-20
|
* Some test suite fixes for new metadata.John MacFarlane2013-06-25
|
* LaTeX writer: Always create labels for sections.John MacFarlane2013-06-02
| | | | | | | Previously the labels were only created when there were links to the section in the document. Closes #871.
* Updated tests for template changes.John MacFarlane2013-05-07
|
* Updated tests for changes in LaTeX template.John MacFarlane2013-04-26
|
* Updated tests for latex template change (microtype).John MacFarlane2013-02-27
|
* LaTeX template: Use `\urlstyle{same}` to avoid monospace URLs.John MacFarlane2013-01-21
|
* LaTeX test updates for latest changes to template & h-k.John MacFarlane2013-01-19
|
* Updated tests for tight/loose lists.John MacFarlane2013-01-07
| | | | | | Taking into account new context/latex output, and fixing some bugs in the test suite Tests.Helpers and Tests.Writers.ConTeXt. (We had the wrong order of expected/actual in the diff output.)
* Don't put the text of an autolink in Code font.John MacFarlane2013-01-06
|
* LaTeX writer: Don't rely on the enumerate package.John MacFarlane2012-09-16
| | | | Instead, use standard LaTeX commands to change numbering style.
* LaTeX writer: Properly escape strings inside \url{}.John MacFarlane2012-09-16
| | | | Closes #576.
* LaTeX writer: don't escape _ in url.John MacFarlane2012-09-15
|
* Updated tests for changes in LaTeX template.John MacFarlane2012-06-08
|
* Updated tests for changes in LaTeX changes.John MacFarlane2012-06-05
|
* Updated tests for changes in latex template.John MacFarlane2012-06-05
|
* Updated test suite.John MacFarlane2012-06-03
|
* LaTeX writer: More consistent interblock spacing.John MacFarlane2012-05-14
|
* Improved spacing around LaTeX block environments.John MacFarlane2012-04-30
| | | | verbatim, itemize, description, enumerate.
* LaTeX writer: Fixed spacing in quote environments.John MacFarlane2012-04-30
| | | | | | | | | | | | | | | | | | | | | | | | | | Closes #502. Previously you'd get: ~~~ hi \begin{quote} hi \end{quote} hi ~~~ Now we get: ~~~ hi \begin{quote} hi \end{quote} hi ~~~
* Updated latex writer tests for new template.John MacFarlane2012-04-28
|
* LaTeX writer: Use fixltx2e package to provide '\textsubscript'.John MacFarlane2012-04-21
|
* LaTeX writer: don't use eurosym package unless document has a €.John MacFarlane2012-04-03
|
* Added PDF metadata (title,author) in LaTeX standalone + PDF output.John MacFarlane2012-03-25
| | | | Closes #459.
* Updated tests for euro-related template changes.John MacFarlane2012-03-07
|
* Fixed LaTeX writer tests for last patch.John MacFarlane2012-03-03
|
* Updated latex tests.John MacFarlane2011-12-30
|
* Added 'beamer' as an output format.John MacFarlane2011-12-29
| | | | | | | | | Beamer output uses the default LaTeX template, with some customizations via variables. Added `writerBeamer` to `WriterOptions`. Added `--beamer` option to `markdown2pdf`.
* Changes to tests for new latex templates.John MacFarlane2011-07-30
|
* Use different hyperref options for xetex.John MacFarlane2011-07-23
| | | | | This fixes problems with unicode bookmarks on xetex. Thanks to CircleCode.
* LaTeX writer: New template.John MacFarlane2011-07-23
|
* Updated tests for new latex templates.John MacFarlane2011-07-22
|
* LaTeX writer: Use \texttt and escapes instead of \verb!..!.John MacFarlane2011-07-22
| | | | | \verb is simply too fragile; it doesn't work inside command arguments.
* LaTeX reader & writer: Use \and to separate authors.John MacFarlane2011-07-21
| | | | Closes #279.
* LaTeX writer: make verbatim environments flush to avoid extra space.John MacFarlane2011-07-19
| | | | | | | The indented `\end{verbatim}` was causing an extra blank line in the output. Closes #277.
* LaTeX writer: Changed figure defaults to htbp.John MacFarlane2011-02-11
| | | | | This prevents "too many unprocessed floats." Resolves Issue #285.
* Distinguish latex & context environments; blank line after in writers.John MacFarlane2011-01-26
|
* Bumped version to 1.8; depend on pandoc-types 1.8.John MacFarlane2011-01-26
| | | | | | | The old TeX, HtmlInline and RawHtml elements have been removed and replaced by generic RawInline and RawBlock elements. All modules updated to use the new raw elements.
* latex template: move special treatment of \sout.John MacFarlane2011-01-21
| | | | | | It needs to be inside the if(strikeout) condition, after the ulem package is imported; otherwise we try to renewcommand{\sout} when \sout isn't yet defined.
* Fixed problem with strikout in LaTeX headers with hyperref.John MacFarlane2011-01-19
| | | | | Added a command to the latex template to disable \sout inside pdf strings. Thanks to Joost Kremers for the fix.
* LaTeX writer: Escape strings in \href{..}.John MacFarlane2011-01-14
| | | | | Previously strings weren't escaped, so %5D would be interpreted as a LaTeX comment!
* LaTeX writer: Modified to use Pretty.John MacFarlane2010-12-19
| | | | Improved footnote formatting, removed spurious blank lines.
* LaTeX writer: Use \paragraph, \subparagraph for level 4,5 headers.John MacFarlane2010-12-18
|
* Disabled colored boxes around cites in latex template.Nathan Gass2010-12-13
|
* LaTeX & ConTeXt writers: escape [ and ] as {[} and {]}.John MacFarlane2010-10-24
| | | | | | This avoids unwanted interpretation as optional arguments in some contexts, which caused the brackets to silently disappear!
* Added amssymb to default latex template.John MacFarlane2010-07-20
| | | | Resolves github Issue 1.