I have a lot of languages in my documents and suddenly there is an additional spacing when writing english oder greek words.
Here is an example: (between abc und def is an additional space and I don't know whats wrong.
\documentclass[
12pt,
headsepline,
pagesize=auto,
ngerman,
greek,
hebrew,
english,
russian,
latin,
bibliography=totocnumbered,
oneside
]{scrreprt}
\usepackage{fontspec}
\usepackage{polyglossia}
\setmainlanguage[spelling=new,babelshorthands=true]{german}
\usepackage{bidi}%\makeatletter\@Latintrue\makeatother
\TeXXeTstate=1
\setmainfont[%
Mapping=tex-text,%
Script=Latin%
]{Times New Roman} %
\newfontfamily\englishfont[%
Script=Latin%
]{Times New Roman}
\setotherlanguage{english}
\newcommand{\engl}[1]{\textenglish{#1}}
\begin{document}
abc \engl{def}
\end{document}
\endinput
\documentclass{article} \usepackage{polyglossia} \setmainlanguage{german} \setotherlanguage{english} \begin{document} abc \textenglish{def} \end{document}. The same spurious (?) space is when swtiching language using\begin{lang}or\selectlanguage{lang}. – andc Nov 13 '19 at 13:51