diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Tests/Writers/LaTeX.hs | 2 | ||||
-rw-r--r-- | tests/writer.latex | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/tests/Tests/Writers/LaTeX.hs b/tests/Tests/Writers/LaTeX.hs index c32ded36d..8ce73c099 100644 --- a/tests/Tests/Writers/LaTeX.hs +++ b/tests/Tests/Writers/LaTeX.hs @@ -46,7 +46,7 @@ tests = [ testGroup "code blocks" ] , testGroup "math" [ "escape |" =: para (math "\\sigma|_{\\{x\\}}") =?> - "$\\sigma|_{\\{x\\}}$" + "\\(\\sigma|_{\\{x\\}}\\)" ] , testGroup "headers" [ "unnumbered header" =: diff --git a/tests/writer.latex b/tests/writer.latex index bf08c7111..5428e9ad7 100644 --- a/tests/writer.latex +++ b/tests/writer.latex @@ -709,20 +709,20 @@ Ellipses\ldots{}and\ldots{}and\ldots{}. \item \cite[22-23]{smith.1899} \item - $2+2=4$ + \(2+2=4\) \item - $x \in y$ + \(x \in y\) \item - $\alpha \wedge \omega$ + \(\alpha \wedge \omega\) \item - $223$ + \(223\) \item - $p$-Tree + \(p\)-Tree \item Here's some display math: \[\frac{d}{dx}f(x)=\lim_{h\to 0}\frac{f(x+h)-f(x)}{h}\] \item - Here's one that has a line break in it: $\alpha + \omega \times x^2$. + Here's one that has a line break in it: \(\alpha + \omega \times x^2\). \end{itemize} These shouldn't be math: |