latex 生成的pdf有多行文本在每行后放置换行符

latex 生成的pdf有多行文本在每行后放置换行符

\item我在of{itemize}或 in中有多行文本{section},并正在创建文档的 pdf。当我从 pdf 中复制文本时,每行末尾都有一个换行符。我正在创建一个将由 AI 工具读取的文档,拆分句子会弄乱它。

我该如何配置它以不添加那些不必要的换行符?

例如,如果我从以下代码生成的 pdf 中复制文本,则character inthe middle

\begin{itemize}
    \item This is some text that spans multiple lines. I need the pdf to not have a newline 
    character in the middle of the sentence in the copied text
    \item Some more text.
\end{itemize}

在此处输入图片描述

答案1

嗯,这是标记的 PDF 项目是关于。如果你在当前的 TeXsystem 中使用 lualatex(它能最好地处理真实空格字符)编译此代码

\DocumentMetadata{testphase=phase-III}
\documentclass{article}

\begin{document}
\begin{itemize}
    \item This is some text that spans multiple lines. I need the pdf to not have a newline 
    character in the middle of the sentence in the copied text
    \item Some more text.
\end{itemize}
\end{document}

然后复制并粘贴


This is some text that spans multiple lines. I need the pdf to not have a newline character in the middle of the sentence in the copied text
Some more text.

但一般来说,你不应该太相信从 PDF 复制粘贴。该格式不包含简单文本,这意味着每个读者都必须进行一些启发式思考。

相关内容