如何使 ACM 风格的 pdf 可搜索?

如何使 ACM 风格的 pdf 可搜索?

当我使用ACM 模板,搜索和复制变音符号不起作用。使用时cmap出现错误“fontenc 已加载”。如何修复此问题?

梅威瑟:

\documentclass{acm_proc_article-sp}

\usepackage{cmap}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

\begin{document}

\title{A Sample {\ttlit ACM} SIG Proceedings Paper in LaTeX}

\numberofauthors{1} 
\author{
\alignauthor
Ben Trovato\titlenote{Dr.~Trovato insisted his name be first.}\\
       \affaddr{Institute for Clarity in Documentation}\\
       \affaddr{1932 Wallamaloo Lane}\\
       \affaddr{Wallamaloo, New Zealand}\\
       \email{[email protected]}
}
\date{30 July 1999}

\maketitle
\begin{abstract}
This paper provides a sample of a \LaTeX\ document which conforms to
the formatting guidelines for ACM SIG Proceedings.
\end{abstract}

\section{Introduction}

Äöüß fiffy.

The \textit{proceedings} are the records of a conference.
ACM seeks to give these conference by-products a uniform,
high-quality appearance.
\end{document}

答案1

该课程的开发人员认为,在过去的 17 年里,字体没有取得任何进展。

在 1470-1492 行中,他们复制了过时的包ae.sty。您可以添加

\usepackage{lmodern}

cmap回到你的序言并解决问题。不需要的调用。

\documentclass{acm_proc_article-sp}

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}

\begin{document}

答案2

虽然选定的答案有效,它改变了 ACM 模板的字体

这是一个不会改变默认字体/格式的解决方案。

只需在之前添加以下内容\begin{document}

\input{glyphtounicode}
\pdfgentounicode=1

相关内容