이 질문이 업데이트되었습니다. 보다 -그림 및 표 목록에 라벨 추가, ToC에서 점 제거, 하위 그림에 표기
답변1
이 사이트의 일반적인 절차는 한 번에 하나의 질문을 하는 것이지만 귀하는 4개의 질문을 했습니다. 그 중 세 가지에는 답할 수 있지만 네 번째 질문에는 신경쓰지 마세요. 그것에 대해 또 다른 질문을 하세요.--- 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}