我想保护我的电子邮件地址免受自动网络爬虫的侵害。有没有办法在作者字段中放置电子邮件地址的图像而不是键入的地址并将其用于\maketitle
?
我想要以下格式,以便电子邮件(和附属机构)位于脚注中:
\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\title{Titulo}
\author{Socrates\thanks{Email picture file here: }}
\begin{document}
\maketitle
\end{document}
以下会引发错误:
\author{Socrates\thanks{Email: \includegraphics{email.png}}
\maketitle
感谢指点埃格尔,\protect
解决了以下问题:
\author{Socrates\thanks{Email: \protect \includegraphics{email.png}}
\maketitle
提前致谢。
更新:已编辑并添加屏幕截图。
UPD2:添加了我正在寻找的解决方案。
答案1
该命令\includegraphics
很脆弱,因此您必须\protect
在脚注中使用它。
\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\title{Titulo}
\author{Socrates\thanks{Email:
\protect\includegraphics[
width=4cm, % just for the example
height=\ht\strutbox]{example-image}}%
}
\textheight=8cm % just for the example
\begin{document}
\maketitle
\end{document}