小白学LaTeX--实验报告

时间:2021-12-31 06:09:04

1.前言

本学期有众多悲催的课设与实验报告,听老师说用LaTeX写会得高分。尝试用LaTeX写了一份实验报告,无奈功夫未到,无法完全按照格式要求完成。现在此分享,欢迎指正。

效果图一览:

小白学LaTeX--实验报告

2.代码说明

基本格式:

(说明,全文所需的包等均放在了Myformat.tex文件中)

\documentclass[11pt]{paper}
%正文字体大小为11,采用默认的paper排版格式
\include{Myformat} % 读取写好的格式
\begin{document}
\begin{center}%开始插题目
\vspace{4mm}  %插入间距
\begin{spacing}{2}%行距2
\Timu{Lab Report of "Fourier Analysis and Synthesis of Waveforms" experiment}%题目内容
\end{spacing}
\vspace{4mm}  %插入间距
\large{       %调大以下内容的字号
\begin{tabular}{ll} %用表格的方式插入学生信息
  \textbf{Name:} & Fisher' C \\
  \textbf{Student number:} & 666666 \\
  \textbf{College email:} & kekeke@gmail.com \\
\end{tabular}
}
\end{center}
\end{document}

插入目录

目录用\tableofcontents指令,该指令默认将所有的标题放入目录。为使目录只显示到二级标题(subsection),需要用\setcounter{tocdepth}{2}

\vspace{10mm}
\setcounter{tocdepth}{2}%只显示2级标题
\tableofcontents % 在当前位置插入目录
\newpage

自定义页眉

在\begin{document}前插入以下内容
\lhead{EBU5374}%左页眉
\chead{Signals and Systems Theory} %中间内容
\rhead{Fisher' C,6666666}  % 右边内容