更改作者所属标记的字体

更改作者所属标记的字体

当使用该authblk包时,我可以使用该包提供的\Authfont和命令来调整作者姓名和所属机构使用的字体。\Affilfont

\documentclass{article}
\usepackage{authblk}

\title{Paper Title}
\author[1]{First Author}
\affil[1]{First author's affiliation}
\author[2]{Second Author} 
\author[2]{Third Author}
\affil[2]{Other authors' affiliations}
\date{}

\renewcommand{\Authfont}{\bfseries \itshape}
\renewcommand{\Affilfont}{\mdseries \itshape}

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

由代码生成的标题

我该怎么做才能将标记数字(1 和 2)的字体更改为与它们旁边显示的文本相匹配(即作者列表中的粗体斜体和附属机构中的斜体)?

答案1

您必须修改包调用的 \textsuperscript 命令。要获得粗体和斜体的组合,请加载 amsmath 包。

\documentclass{article}
\usepackage{authblk}
\usepackage{amsmath}

\bgroup
\renewcommand{\textsuperscript}[1]{$^{\boldsymbol{\mathit{#1}}}$}

\title{Paper Title}
\author[1]{First Author}
\author[2]{Second Author} 
\author[2]{Third Author}

\renewcommand{\textsuperscript}[1]{$^\mathit{#1}$}
\affil[1]{First author's affiliation}
\affil[2]{Other authors' affiliations}
\date{}
\egroup

\renewcommand{\Authfont}{\bfseries \itshape}
\renewcommand{\Affilfont}{\mdseries \itshape}

\begin{document}

\maketitle

\end{document}

相关内容