修改文章类(authblk 包)的作者字段

修改文章类(authblk 包)的作者字段

我很困惑,在使用 authblk 包时,如何修改文章类中的作者字段。我正在用法语写一篇文章。以下代码

\documentclass[french,11pt]{article}

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[french]{babel}
\usepackage{kpfonts}
\usepackage{blindtext}

\setlength{\parskip}{1.2ex}
\setlength{\parindent}{0em}
\clubpenalty = 10000
\widowpenalty = 10000


\usepackage{graphicx,bm,url, amsfonts, latexsym, verbatim, xspace, setspace,mathrsfs,marvosym,wasysym,amsmath, amssymb}

\usepackage{caption}
\usepackage[caption=false]{subfig}
\usepackage{epstopdf}


\usepackage{enumitem}
\setlist[itemize]{leftmargin=*,itemsep=1pt,topsep=1pt}
%\setlist[description]{leftmargin=*,itemsep=1pt,topsep=1pt}
\setlist[enumerate]{leftmargin=*,itemsep=1pt,topsep=1pt}


\usepackage[colorlinks=true,
    linkcolor=red,
    urlcolor=blue,
    pdftitle={article},
    pdfauthor={DSA}]{hyperref}

\usepackage{geometry}
 \geometry{
 a4paper,
 total={170mm,257mm},
 left=20mm,
 top=20mm,
 }

\providecommand{\keywords}[1]{\textbf{\textit{Mots clés ---}} #1}

\providecommand{\thematic}[1]{\textbf{\textit{Thématique ---}} #1}

\usepackage{authblk}

\newcommand{\M}{{\it Mathematica}}


\begin{document}

\title{Une bonne publication}
\author[,1]{Dimitrios\thanks{\texttt{\url{[email protected]}}}}
\author[,1]{Panos\thanks{ \texttt{\url{[email protected]}}}}
\author[,1]{Thanos\thanks{Corresponding author: 
\texttt{\url{[email protected]}}}}
\affil[1]{Université de nulle parte, Terre, Galaxie}

\date{}

\clearpage\maketitle
\thispagestyle{empty}

\begin{abstract}

\blindtext


\end{abstract}
\end{document}

生成(部分快照)

在此处输入图片描述

我希望作者列表中出现法语单词代替。 那是,

迪米特里奥斯、帕诺斯与灭霸

有可能吗?提前致谢。

答案1

是的,该软件包提供了\Authand\Authands命令,您可以根据需要重新定义它们:

\usepackage{authblk}
\renewcommand\Authand{ et }
\renewcommand\Authands{, et }

输出:

输出

authblk有关更多详细信息,请参阅文档第 4 部分。

相关内容