我需要整理图表列表,以便将两份报告连在一起,与报告的每个标题相对应,因为必须是一个 pdf 文件。我几乎没有看到任何涉及此内容的材料,而我找到的任何材料都过于复杂或根本不起作用。
这就是我需要的两个列表出现的方式(请注意,我使用的是部分不是章节):
这是我的 LoF 和 LoT,红线表示我需要章节标题的位置。实验室 2 是 1 的精确副本,因此我可以测试 LoF 和 LoT。
以下是主文件:
\documentclass[12pt]{article}
\usepackage[margin=3cm]{geometry}
\usepackage{graphicx}
\usepackage{listings}
\usepackage{tikz}
\usepackage[utf8]{inputenc}
\usepackage[linktocpage=true]{hyperref}
\hypersetup{
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=black,
urlcolor=black
}
\usepackage{chngcntr}
\usepackage{etoolbox}
\usepackage{subcaption}
\usepackage{caption}
\usepackage{cleveref}
\usepackage{refstyle}
\usepackage{color}
\usepackage{textcomp}
\definecolor{listinggray}{gray}{0.9}
\definecolor{lbcolor}{rgb}{0.9,0.9,0.9}
\input{ArduinoCodeListing}
\begin{document}
\input{labCover.tex}
\pagenumbering{roman}
\newpage
\setcounter{page}{1}
\tableofcontents
\newpage
\listoffigures
\listoftables
\newpage
\input{Lab1}
\newpage
\setcounter{section}{0}
\renewcommand{\thesection}{\arabic{section}}
\input{Lab2}
%\newpage
%\setcounter{section}{0}
%\renewcommand{\thesection}{\arabic{section}}
%\input{Lab3.tex}
%append more reports in the future...
\end{document}
答案1
经过进一步挖掘,我在这里链接的一篇文章中找到了我想要的内容: