Authblk 样式文件使用但我无法找到所需的输出

Authblk 样式文件使用但我无法找到所需的输出

我正在使用该authblk软件包。但我无法找到下面提到的问题的输出。

我使用下面提到的逻辑。如果重复相同的隶属关系,不同的作者如下面提到的编码(作者 2,作者 3),地址计数器将无法正常工作,如(地址 1,地址 2)。

我需要一个不受命令影响的输出作者所属编号\affil\affil计数为 1、2、3、...

我需要另一个要求,每个作者都有一个链接。如果我移动鼠标(作者 1),相应的超链接如(http://www.canon.org/peole/520456) 手势在 PDF 输出中显示。如果我单击作者,链接将打开 Web 浏览器。

请提供解决方案。

\author[aff={1}]{Author 1}

\author[aff={2}]{Author 2}

\author[aff={2}]{Author 3}

\author[aff={3}]{Author 4}

\affil{address1}

\affil{address2}

\affil{address3}

作者图片

答案1

使用

\author{Author 1}
\affil{address1}

\author{Author 2}    
\author{Author 3}
\affil{address2}

\author{Author 4}
\affil{address3}

完整代码:

\documentclass{article}

\usepackage[noblocks]{authblk}

\title{Bad superscript with authblk / xltxtra}
\author{Author 1}
\affil{address1}

\author{Author 2}    
\author{Author 3}
\affil{address2}

\author{Author 4}
\affil{address3}

\begin{document}
  \maketitle
\end{document}

在此处输入图片描述

相关内容