我正在为我们下个月要举行的会议准备一份纪念品。
我正在以以下方式包含内容..
\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
这是修改后的代码,它将把目录中给出的内容附加\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}{}}}