\thanks 中不缩进,左对齐

\thanks 中不缩进,左对齐

我在 WinEdt 中使用以下命令在脚注中显示相应的作者联系信息。\\由于它很长,我以前会换行。

我有两个问题。首先,我需要将脚注中“通讯作者”的字母“C”与电子邮件的字母“E”左对齐。其次,我应该将第一位作者姓名后第二行的 *,a 与 a,* 互换。谢谢,如果我的问题的第一个版本不清楚,请原谅。

\documentclass[12pt]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{authblk}
\title {\bf  Title}
 \author[,a]{Author Name\thanks{Corresponding author. Tel.: +0 (000) 000 0000 ext. 00000; fax: +0 (000) 000 0000.\\ E-mail: [email protected]}}

\author[b]{Author Name}
\affil[a]{Department of , University of , Address, BB, CC}
\affil[b]{Department of , University of , Address, BB, CC}

\date{\today}
\begin {document}
\maketitle
\end{document}

在此处输入图片描述

答案1

在这种情况下,插入水平对齐两行所需的适当空间要容易得多。确切的空间是1.8em

在此处输入图片描述

\documentclass[12pt]{article}
\usepackage{authblk}% http://ctan.org/pkg/authblk
\title{\textbf{Title}}
\author[,a]{Author Name\thanks{Corresponding author. Tel.: +0 (000) 000 0000 ext. 00000; fax: +0 (000) 000 0000.\\
  \hspace*{1.8em}E-mail: [email protected]}}
\author[b]{Author Name}
\affil[a]{Department of , University of , Address, BB, CC}
\affil[b]{Department of , University of , Address, BB, CC}
\date{\today}

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

另请参阅\textit我使用或\it\bfseries等有关系吗\bf两个字母的字体样式命令(\bf,,\it...)会在 LaTeX 中复活吗?

答案2

假设你正在使用article类,您可以使用以下内容:

\documentclass{article}

\usepackage{titling}
\settowidth{\thanksmarkwidth}{*}
\setlength{\thanksmargin}{-\thanksmarkwidth}

\title{Test}
\author{author\thanks{Corresponding author. Tel.: +0 (000) 000 0000 ext. 00000; fax: +0 (000) 000 0000.\newline E-mail: \texttt{[email protected]}}}

\begin{document}

\maketitle

\end{document}

答案3

这是一个临时解决方案,也许不是您想要的,但它似乎解决了您的第二个问题,同时使用上述想法来解决第一个问题:

\documentclass[12pt]{article}
%\usepackage[T1]{fontenc} % This line didn't work on my system...
\usepackage[utf8]{inputenc}

\usepackage{authblk}

\title{The Title}
\author[b]{Author Name\textsuperscript{a,}\thanks{\noindent Corresponding author. Tel.: +0 (000) 000 0000 ext. 00000; fax: +0 (000) 000 0000.\\
\hspace*{1.8em}E-mail: [email protected]}\, and
Author Name}

\affil[a]{Department of , University of , Address, BB, CC}
\affil[b]{Department of , University of , Address, BB, CC}
\date{\today}

\begin{document}
\maketitle



\end{document}

输出

相关内容