数学中的积分弄乱了文本的复制粘贴

数学中的积分弄乱了文本的复制粘贴

对于像

\documentclass{article}

\usepackage[T1]{fontenc}

\input glyphtounicode.tex
\input glyphtounicode-cmr.tex
\pdfgentounicode=1

\pagestyle{empty} % for quick CTRL+A
\begin{document}
  Some text and then $x$.

  Some text and then $\int_0^1 x$.
\end{document}

尝试复制粘贴

Some text and then x.
Some text and then ∫ 1
0
x.

现在,我猜这个间隔在纯文本中不太容易正确表达(除非可以通过一些时髦的 Unicode 组合来实现),但我并不指望结果是不好 – 也许吧∫0 1 x?我能做些什么来获得更好的结果吗?

答案1

运行以下命令lualatex

\documentclass{article}
\usepackage{unicode-math}
\setmathfont{XITS Math}
\pagestyle{empty}
\begin{document}
    Some text and then $x$.

    Some text and then $∫_0^1 x$.
\end{document}

在此处输入图片描述

相关内容