laTex列表清单的结尾

时间:2019-02-13 23:30:53

标签: latex tex

摘要的最上方是“ ELENCO DELLE Figure”,但我希望在上一页中完成。

enter image description here

\newpage
%\thispagestyle{plain}
\markboth{Indice}{Indice}
\tableofcontents
\listoffigures
%%\listoftables

\pagenumbering{arabic}
\input{abstract.tex}
\input{capitolo1.tex}
\input{capitolo2.tex}
\input{capitolo3.tex}
\input{capitolo4.tex}
\input{capitolo5.tex}
\input{capitolo6.tex}
\listoffigures

\newpage
\pagestyle{plain}


\bibliographystyle{plain}
\bibliography{references}

\input{ringraziamenti.tex}
\end{document}

有没有人可以回答这个问题?

1 个答案:

答案 0 :(得分:0)

要更改摘要的页面标题,可以使用与索引相同的技巧,并在摘要前面使用\markboth{Abstract}{Abstract}

\documentclass{book}

\begin{document}


\newpage
%\thispagestyle{plain}
\markboth{Indice}{Indice}
\tableofcontents
\listoffigures
%%\listoftables

\pagenumbering{arabic}

\clearpage
\markboth{Abstract}{Abstract}
code for your abstract

\end{document}