如何使用 Springer llncs 类将章节条目添加到目录中

如何使用 Springer llncs 类将章节条目添加到目录中

我尝试使用 TeXStudio 在摘要后使用以下命令简单地将目录添加到我的报告中:

\tableofcontents

这将创建一个标题目录,但它不会列出各章节,而只列出报告的标题。

我的标题如下:简介、文献综述、方法论、结论。

有人知道如何解决这个问题吗?

这是删除了内容的模板骨架:

%%%%%%%%%%%%%%%%%%%%%%% file typeinst.tex %%%%%%%%%%%%%%%%%%%%%%%%%
%
% This is the LaTeX source for the instructions to authors using
% the LaTeX document class 'llncs.cls' for contributions to
% the Lecture Notes in Computer Sciences series.
% http://www.springer.com/lncs       Springer Heidelberg 2006/05/04
%
% It may be used as a template for your own input - copy it
% to a new file with a new name and use it as the basis
% for your article.
%
% NB: the document class 'llncs' has its own and detailed documentation, see
% ftp://ftp.springer.de/data/pubftp/pub/tex/latex/llncs/latex2e/llncsdoc.pdf
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%


\documentclass[runningheads,a4paper]{llncs}


\usepackage{url}
\usepackage{paralist}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage[numbers]{natbib}
\graphicspath{ {images/} }

\urldef{\mailsa}\path|{firstname.lastname}@xxx.ie|

\begin{document}

\mainmatter  % start of an individual contribution

\title{Final Year Project Report}

\subtitle{xxxxxxxxxxxxxxxxxxxxxxxx }


\author{Brian Varley \inst{1}
}
%
\institute{xxxxxxx Institute of Technology, Ireland\\
\url{http://www.xxx.ie}\\
}

\maketitle


\begin{abstract}



\end{abstract}

\smallskip
\noindent \textbf{Keywords.} 



\tableofcontents




\section{Project Introduction}



\begin{itemize}
  \item 
  \item 
  \item 
\end{itemize}


\begin{figure}
\centering
\begin{minipage}{.5\textwidth}
  \centering
  \includegraphics[width=.4\linewidth]{myo}
  \caption{figure}{Thalmic Lab's Myo arm band}
  \label{fig:test1}
\end{minipage}%
\begin{minipage}{.5\textwidth}
  \centering
  \includegraphics[width=.4\linewidth]{kinect}
  \caption{figure}{Microsoft Kinect V2 Sensor}
  \label{fig:test2}
\end{minipage}
\end{figure}


Kinect v2 sensor capabilities:

\begin{itemize}
  \item 
  \item 

\end{itemize}



The proposed application's core features are outlined as follows in order of precedence: 
\begin{itemize}
  \item 
  \item 
  \item 
\end{itemize} 






\begin{figure}[h]
\caption{ Proposed physio application prototype system architecture, detailing flow of user input.}
\centering
\includegraphics[width=1\textwidth]{gesture_arc}
\end{figure}


\





\section{Literature Review}





\section{Methodology}
\label{sec:Applications of Vision Based Gesture Recognition in HCI} 




\begin{figure}[h]
\caption{ Proposed project time line.}
\centering
\includegraphics[width=1\textwidth]{initial_timieline}
\end{figure}



\section{Conclusion}




\section{Appendices}


\listoffigures



\bibliographystyle{plainnat}
\bibliography{Bibliography}



\end{document}

表格内容标题错误

报告中声明:

答案1

llncs课程有很多有趣的特点,除非在 LLNCS 上发表,否则它可能不是我真正选择的课程。

这里设置

  \setcounter{tocdepth}{0}

所以你可能想添加

  \setcounter{tocdepth}{3}

到你的序言中,以便你的目录有一些内容。

相关内容