diff options
| author | John MacFarlane <[email protected]> | 2021-09-09 18:32:37 -0700 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2021-09-09 21:20:30 -0700 |
| commit | f4d2c9e886bb5c2313b3df70786e76141b580feb (patch) | |
| tree | c55a38168ce4b11d54970c2ba6fdd88c912d4f4f /data/templates | |
| parent | 395d65fdbe398e42270acfe6a76ad98a00ecb35d (diff) | |
Use babel, not polyglossia, with xelatex.babel
Previously polyglossia worked better with xelatex, but
that is no longer the case, so we simplify the code so that
babel is used with all latex engines.
This involves a change to the default LaTeX template.
Diffstat (limited to 'data/templates')
| -rw-r--r-- | data/templates/default.latex | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/data/templates/default.latex b/data/templates/default.latex index d6a6208a9..27a3fc877 100644 --- a/data/templates/default.latex +++ b/data/templates/default.latex @@ -374,22 +374,10 @@ $for(header-includes)$ $header-includes$ $endfor$ $if(lang)$ -\ifXeTeX - % Load polyglossia as late as possible: uses bidi with RTL langages (e.g. Hebrew, Arabic) - \usepackage{polyglossia} - \setmainlanguage[$for(polyglossia-lang.options)$$polyglossia-lang.options$$sep$,$endfor$]{$polyglossia-lang.name$} -$for(polyglossia-otherlangs)$ - \setotherlanguage[$for(polyglossia-otherlangs.options)$$polyglossia-otherlangs.options$$sep$,$endfor$]{$polyglossia-otherlangs.name$} -$endfor$ -\else - \usepackage[$for(babel-otherlangs)$$babel-otherlangs$,$endfor$main=$babel-lang$]{babel} +\usepackage[$for(babel-otherlangs)$$babel-otherlangs$,$endfor$main=$babel-lang$]{babel} % get rid of language-specific shorthands (see #6817): \let\LanguageShortHands\languageshorthands \def\languageshorthands#1{} -$if(babel-newcommands)$ - $babel-newcommands$ -$endif$ -\fi $endif$ \ifLuaTeX \usepackage{selnolig} % disable illegal ligatures |
