論文格式 - 目錄、圖表

論文格式 - 目錄、圖表

答案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}

相關內容