diff options
author | Andrew Dunning <andunning@gmail.com> | 2017-09-08 22:17:31 +0100 |
---|---|---|
committer | Andrew Dunning <andunning@gmail.com> | 2017-09-08 22:26:32 +0100 |
commit | 621e43e0ec2d0ee81436c01256d994a514d9824c (patch) | |
tree | 59afad3a384183053d016ca100ac16005e8be14c /test | |
parent | 3421f3eac71709566b9072e095048619cf813ace (diff) | |
download | pandoc-621e43e0ec2d0ee81436c01256d994a514d9824c.tar.gz |
Write euro symbol directly in LaTeX
The textcomp package allows pdfLaTeX to parse `€` directly, making the \euro command unneeded. Closes #3801.
Diffstat (limited to 'test')
-rw-r--r-- | test/writer.latex | 1 | ||||
-rw-r--r-- | test/writers-lang-and-dir.latex | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/test/writer.latex b/test/writer.latex index 60d3d03da..9500c7cf9 100644 --- a/test/writer.latex +++ b/test/writer.latex @@ -9,6 +9,7 @@ \ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex \usepackage[T1]{fontenc} \usepackage[utf8]{inputenc} + \usepackage{textcomp} % provides euro and other symbols \else % if luatex or xelatex \usepackage{unicode-math} \defaultfontfeatures{Ligatures=TeX,Scale=MatchLowercase} diff --git a/test/writers-lang-and-dir.latex b/test/writers-lang-and-dir.latex index ae29cd1bb..97c34010c 100644 --- a/test/writers-lang-and-dir.latex +++ b/test/writers-lang-and-dir.latex @@ -9,6 +9,7 @@ \ifnum 0\ifxetex 1\fi\ifluatex 1\fi=0 % if pdftex \usepackage[T1]{fontenc} \usepackage[utf8]{inputenc} + \usepackage{textcomp} % provides euro and other symbols \else % if luatex or xelatex \usepackage{unicode-math} \defaultfontfeatures{Ligatures=TeX,Scale=MatchLowercase} |