Springer llncs 클래스를 사용하여 목차에 섹션 항목을 추가하는 방법

Springer llncs 클래스를 사용하여 목차에 섹션 항목을 추가하는 방법

초록 뒤에 다음 명령을 사용하여 TeXStudio를 사용하여 보고서에 목차를 추가하려고 합니다.

\tableofcontents

이렇게 하면 목차라는 제목이 생성되지만 섹션은 보고서 제목만 나열되지 않습니다.

내 제목은 다음과 같습니다: 서론, Lit Review, 방법론, 결론.

누구든지 이 문제를 해결하는 방법을 알고 있습니까?

다음은 콘텐츠가 제거된 템플릿의 뼈대입니다.

%%%%%%%%%%%%%%%%%%%%%%% 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}

목차에 일부 내용이 포함되도록 서문에 추가합니다.

관련 정보