打印任何可从 pdf 复制粘贴的 utf-8 字符

打印任何可从 pdf 复制粘贴的 utf-8 字符

我有这个代码:

\documentclass[varwidth,border=10pt]{standalone}
\usepackage{graphicx}
\newcommand{\MyBrand}{%
    \includegraphics[width=3em]{myBrand}%
}
\begin{document}
I always use \MyBrand , it's the best!
\end{document}

其结果为以下 pdf:

答案1

您可以使用 accsupp 包。但它并不适用于每个 pdf 查看器,例如,sumatra 就无法复制它。

\documentclass[]{standalone}
\usepackage[utf8]{inputenc}
\usepackage{graphicx,accsupp}
\usepackage[unicode]{hyperref}

\newcommand{\MyBrand}{%
\BeginAccSupp{method=pdfstringdef,unicode,ActualText={MyBr

相关内容