目录中附录部分的位置

目录中附录部分的位置

主文本

\documentclass[12pt]{report}
\usepackage[margin=2.5cm, noheadfoot]{geometry}

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[main=magyar,english]{babel}

\begin{document}

\tableofcontents\vfill

\include{chapters.tex}

%----------------------------------------------------------------
%Appendix

\clearpage
\pagenumbering{roman}
\refstepcounter{chapter}
\addcontentsline{toc}{chapter}{Függelék}
\renewcommand\thesection{F.\arabic{section}}
\renewcommand\thefigure{F.\arabic{figure}}    
\setcounter{figure}{0}

\appendix
\include{appendix.tex}
%-----------------------------------------------------------------

\end{document}

章节.tex

\chapter{Chapter I}

\section{Section I}

\section{Section II}

\chapter{Chapter II}

\section{Section I}

附录.tex

\chapter*{Függelék}

\section{First}

\section{Second}

在此处输入图片描述

tartalomjegyzék 意思是:目录

függelék 的意思是:附录

如您所见,附录部分(F.1. 第一和 F.2. 第二)显示错误。我该如何将其放置在附录章节下方?

相关内容