如何获取文章摘要内容中的作者姓名?

如何获取文章摘要内容中的作者姓名?

我正在为我们下个月要举行的会议准备一份纪念品。

我正在以以下方式包含内容..

\documentclass{article}


\def\aut#1{\textbf{#1}}
\def\insti#1{\textit{#1}}
\def\address#1{\textit{#1}}
\def\email#1{\texttt{#1}}


\begin{document}

\tableofcontents
\addtocontents{toc}{~\hfill\textbf{Page}\par}

\section{The title of the Paper-1}


\aut{Here type the author name}\\
\insti{Name of the institute}\\
\address{fill the institute address here\\
         If you want second line}\\
\email{[email protected]}\\


\begin{abstract}
Type your Abstract here...

\end{abstract}

\section{The title of the Paper-2}


\aut{Here type the author name}\\
\insti{Name of the institute}\\
\address{fill the institute address here\\
         If you want second line}\\
\email{[email protected]}\\


\begin{abstract}
Type your Abstract here...

\end{abstract}
\end{document}

问题:

  1. 我需要内容列表中的作者姓名。
  2. 如果我想在内容中同时包含学院和地址以及标题,我该怎么办?

目前我的输出是, 在此处输入图片描述

我想要内容中的作者姓名后面跟着他们的头衔。

答案1

这是修改后的代码,它将把目录中给出的内容附加\aut\insti目录中。

\def\aut#1{\textbf{#1}\addcontentsline{toc}{subsection}{\hskip1pc#1}}
\def\insti#1{\textit{#1}\addcontentsline{toc}{subsection}{\hskip1pc#1}}

在此处输入图片描述

并且,这些修改后的命令也将删除页码。

\def\aut#1{\textbf{#1}\addtocontents{toc}{\protect\contentsline{subsection}{#1}{}}}
\def\insti#1{\textit{#1}\addtocontents{toc}{\protect\contentsline{subsection}{#1}{}}}

相关内容