论文格式-目录、图表

论文格式-目录、图表

答案1

本网站的常规流程是一次只问一个问题,但你问了四个问题。我可以回答其中三个问题,但懒得回答你的第四个问题。再问一个问题。--- GOM

% thesisprob.tex  SE 562876
\documentclass{report}
\usepackage{tocloft}

\setlength{\cftbeforechapskip}{3\baselineskip} % change space before chapter titles

\renewcommand{\cftfigpresnum}{Fig. }  % put before figure entries
\setlength{\cftfignumwidth}{5em} % extra space for Fig. number
% and similar for tables

\begin{document}
\tableofcontents
\listoffigures

\chapter{First}
\begin{figure}
\centering
AN ILLUSTRATION
\caption{A figure}
\end{figure}

\chapter{Second}
\begin{figure}
\centering
AN ILLUSTRATION
\caption{A figure}
\end{figure}

\end{document}

相关内容