粗体文本周围缺少空格

粗体文本周围缺少空格

我正在尝试使用 XeLateX 编译器在 Overleaf 上编写 LaTex 文档。生成的 pdf 文本应该可以在基本文本编辑器中复制和粘贴,并保留其含义和间距。

然而,由于不为人知的原因,我的加粗文本周围缺少空格。

\documentclass{report}

\begin{document}

This is a test and \textbf{this} is missing surrounding spaces 

\end{document}

缺少周围空间

复制后,我得到以下文本:

This is a test and
this
is missing surrounding spaces

我该怎么做才能得到这个结果?

This is a test and this is missing surrounding spaces

非常感谢。

答案1

我认为这在很大程度上取决于所使用的环境。我使用 Tex-Live 2018(使用 Texstudio 编辑器)测试了以下内容,生成的文本可以毫无问题地复制。

%!TeX Program=xelatex
\documentclass{report}
\usepackage{cmap}
\begin{document}

This is a test and \textbf{this} is missing surrounding spaces 

\end{document}

相关内容