summaryrefslogtreecommitdiff
path: root/test/lhs-test.latex+lhs
Commit message (Collapse)AuthorAge
* Adjusted some tests for last commit.John MacFarlane2017-09-08
|
* Update tests for changes to LaTeX template.John MacFarlane2017-08-14
|
* LaTeX: Load `parskip` before `hyperref`. (#3654)Václav Haisman2017-05-09
| | | | | | | | | * LaTeX: Load `parskip` before `hyperref`. According to `hyperref` package's `README.pdf`, page 22, `hyperref` package should be loaded after `parskip` package. * Adjust tests for previous change.
* LaTeX writer: Fix problem with escaping in lstinline.John MacFarlane2017-04-29
| | | | | | | | | | | | | | | | | | Previously the LaTeX writer created invalid LaTeX when `--listings` was specified and a code span occured inside emphasis or another construction. This is because the characters `%{}\` must be escaped in lstinline when the listinline occurs in another command, otherwise they must not be escaped. To deal with this, adoping Michael Kofler's suggestion, we always wrap lstinline in a dummy command `\passthrough`, now defined in the default template if `--listings` is specified. This way we can consistently escape the special characters. Closes #1629.
* LaTeX writer: always add hypertarget when there's a non-empty identifier.John MacFarlane2017-03-01
| | | | | Previously the hypertargets were only added when there was actually a link to that identifier. Closes #2719.
* Use unicode-math by default in default.latex template.John MacFarlane2017-02-06
| | | | | | | mathspec will be used in xelatex if the `mathspec` variable is set; otherwise unicode-math will be used. Thanks to Václav Haisman.
* Moved tests/ -> test/.John MacFarlane2017-02-04