作者行下划线

作者行下划线

我正在尝试修改作者行,以便我的名字下方有作为主要申请人的资格。我尝试使用如下方式执行此操作underset

$\underset{\footnotesize{\mbox{main applicant}}}{\mbox{Alejandro M. Aragón}}$

但它不起作用,因为它给了我以下错误:

(/usr/local/texlive/2014/texmf-dist/tex/latex/wasysym/uwasy.fd
File: uwasy.fd 2003/10/30 v2.0 Wasy-2 symbol font definitions
)
./proposal.tex:97: Missing control sequence inserted.
<inserted text> 
                \inaccessible 
l.97 \vspace
            {-10ex}
?

我也正在使用这个authblk包,以防这与它有关。

这是我开始时的做法,它很有效,但我希望将“主要申请人”和“发起人”文本作为下划线而不是括号。

\documentclass[10pt,a4paper]{article}
\usepackage{titling}
\usepackage{authblk}
\usepackage{marvosym} % letter symbol
\usepackage[top=2cm, bottom=2cm, left=2cm, right=2cm]{geometry}

\setlength{\droptitle}{-7em}

\title{This is the title}

\author[1]{Author One (main applicant)  \thanks{  \Letter:author1@email}}
\author[1]{Author Two (promotor) \thanks{  \Letter:author2@email}}
\affil[1]{\small{Affiliation, \break Address}}

\date{}
\renewcommand\Authands{ and }
\begin{document}
  \maketitle
\vspace{-10ex}
\end{document}

答案1

在这方面,该stackengine包装用途广泛。EDITED 使用所谓的长堆栈,以避免字母降部存在时出现任何堆叠差异。

\documentclass[10pt,a4paper]{article}
\usepackage{titling}
\usepackage{authblk}
\usepackage{marvosym} % letter symbol
\usepackage[top=2cm, bottom=2cm, left=2cm, right=2cm]{geometry}
\usepackage{stackengine}
\setlength{\droptitle}{-7em}
\def\stacktype{L}
\setstackgap{L}{.8\baselineskip}

\title{This is the title}

\author[1]{\stackunder{Author One}{\footnotesize (main applicant)}%
    \thanks{  \Letter:author1@email}}
\author[1]{\stackunder{Author Two}{\footnotesize (promotor)}%
   \thanks{  \Letter:author2@email}}
\affil[1]{\small{Affiliation, \break Address}}

\date{}
\renewcommand\Authands{ and }
\begin{document}
  \maketitle
\vspace{-10ex}
\end{document}

在此处输入图片描述

相关内容