我正在使用llnc
文档类,我想创建一个看起来像图片中的摘要(这是期刊所要求的,但他们没有自己的 LaTeX 模板,所以我只是使用了llnc
)。图片中的数字对应于文章的各个部分。
我不知道如何开始。
有人能帮助我吗?
先感谢您。
\documentclass[runningheads]{llncs}
\usepackage[affil-it]{authblk}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{csquotes}
\usepackage[style=verbose-ibid,backend=bibtex]{biblatex}
\usepackage{titletoc}
\bibliography{sample}
\begin{document}
\title{Example)\thanks{Funded by Example}}
\author{Author name\inst{1}\orcidID{0000-0000-0000-0000}}
\institute{Name of Institution
\email{email@example}\\
}
\maketitle
\begin{abstract}
The abstract should briefly summarize the contents of the paper in
150--250 words.
\keywords{First keyword \and Second keyword \and Another keyword.}
\end{abstract}
\paragraph{Introduction}
Example text
\section{Another section}
Example text
This is an example citation \autocite{name0000}.
\section{Another section}
Example text
\end{document}
答案1
这里有一个使用 etoc 包的最小示例(我切换到了文章类):
\documentclass{article}
\usepackage{etoc}
\title{Example\thanks{Funded by Example}}
\author{Author name}
\begin{document}
\maketitle
\begingroup\parindent 0pt \parfillskip 0pt \leftskip 0cm \rightskip 0cm
\etocsetstyle {section}
{}
{\leavevmode\leftskip 0cm\relax}
{\etociffirst{\normalfont}{ – }\etocnumber.~\etocname}
{\parfillskip 0pt plus 1fil\relax\par}
\tableofcontents*
\endgroup
\section*{Introduction}
Example text
\section{A section}
Example text
This is an example citation.
\section{Another section}
Example text
\end{document}