% !TeX root = ../hitreport-example.tex \chapter{图表示例} \section{插图} 图片通常在 {figure} 环境中使用 {includegraphics} 插入,如图~\ref{fig:example} 的源代码。 建议矢量图片使用 PDF 格式,比如数据可视化的绘图; 照片应使用 JPG 格式; 其他的栅格图应使用无损的 PNG 格式。 注意,LaTeX 不支持 TIFF 格式;EPS 格式已经过时。 \begin{figure} \centering \includegraphics[width=0.6\linewidth]{example-image-a.pdf} \caption{示例图片} \label{fig:example} \end{figure} 若图或表中有附注,采用英文小写字母顺序编号,附注写在图或表的下方。 % LaTeX 传统上一般将附注的内容同图表的标题写在一起,形成很长的一段文字。 如果一个图由两个或两个以上分图组成时,各分图分别以(a)、(b)、(c)...... 作为图序,并须有分图题。 推荐使用 {subcaption} 宏包来处理, 比如图~\ref{fig:subfig-a} 和图~\ref{fig:subfig-b}。 \begin{figure} \centering \subcaptionbox{分图 A\label{fig:subfig-a}} {\includegraphics[width=0.45\linewidth]{example-image-a.pdf}} \subcaptionbox{分图 B\label{fig:subfig-b}} {\includegraphics[width=0.45\linewidth]{example-image-b.pdf}} \caption{多个分图的示例} \label{fig:multi-image} \end{figure} \section{表格} 表应具有自明性。为使表格简洁易读,尽可能采用三线表,如表~\ref{tab:three-line}。 三条线可以使用 {booktabs} 宏包提供的命令生成。 \begin{table} \centering \caption{三线表示例} \begin{tabular}{ll} \toprule 文件名 & 描述 \\ \midrule thuthesis.dtx & 模板的源文件,包括文档和注释 \\ thuthesis.cls & 模板文件 \\ thuthesis-*.bst & BibTeX 参考文献表样式文件 \\ thuthesis-*.bbx & BibLaTeX 参考文献表样式文件 \\ thuthesis-*.cbx & BibLaTeX 引用样式文件 \\ \bottomrule \end{tabular} \label{tab:three-line} \end{table} 表格如果有附注,尤其是需要在表格中进行标注时,可以使用 {threeparttable} 宏包。 研究生要求使用英文小写字母 a、b、c……顺序编号,本科生使用圈码 ①、②、③……编号。 \begin{table} \centering \begin{threeparttable}[c] \caption{带附注的表格示例} \label{tab:three-part-table} \begin{tabular}{ll} \toprule 文件名 & 描述 \\ \midrule thuthesis.dtx\tnote{a} & 模板的源文件,包括文档和注释 \\ thuthesis.cls\tnote{b} & 模板文件 \\ thuthesis-*.bst & BibTeX 参考文献表样式文件 \\ thuthesis-*.bbx & BibLaTeX 参考文献表样式文件 \\ thuthesis-*.cbx & BibLaTeX 引用样式文件 \\ \bottomrule \end{tabular} \begin{tablenotes} \item [a] 可以通过 xelatex 编译生成模板的使用说明文档; 使用 xetex 编译 {thuthesis.ins} 时则会从 {.dtx} 中去除掉文档和注释,得到精简的 {.cls} 文件。 \item [b] 更新模板时,一定要记得编译生成 {.cls} 文件,否则编译论文时载入的依然是旧版的模板。 \end{tablenotes} \end{threeparttable} \end{table} 如某个表需要转页接排,可以使用 {longtable} 宏包,需要在随后的各页上重复表的编号。 编号后跟表题(可省略)和“(续)”,置于表上方。续表均应重复表头。 \begin{longtable}{cccc} \caption{跨页长表格的表题} \\ \toprule 表头 1 & 表头 2 & 表头 3 & 表头 4 \\ \midrule \endfirsthead \caption[]{跨页长表格的表题(续)} \\ \toprule 表头 1 & 表头 2 & 表头 3 & 表头 4 \\ \midrule \endhead \bottomrule \endfoot Row 1 & & & \\ Row 2 & & & \\ Row 3 & & & \\ Row 4 & & & \\ Row 5 & & & \\ Row 6 & & & \\ Row 7 & & & \\ Row 8 & & & \\ Row 9 & & & \\ Row 10 & & & \\ Row 11 & & & \\ Row 12 & & & \\ Row 13 & & & \\ Row 14 & & & \\ Row 15 & & & \\ Row 16 & & & \\ Row 17 & & & \\ Row 18 & & & \\ Row 19 & & & \\ Row 20 & & & \\ Row 21 & & & \\ Row 22 & & & \\ Row 23 & & & \\ Row 24 & & & \\ Row 25 & & & \\ Row 26 & & & \\ Row 27 & & & \\ Row 28 & & & \\ Row 29 & & & \\ Row 30 & & & \\ Row 31 & & & \\ Row 32 & & & \\ Row 33 & & & \\ Row 34 & & & \\ Row 35 & & & \\ Row 36 & & & \\ Row 37 & & & \\ Row 38 & & & \\ Row 39 & & & \\ Row 40 & & & \\ Row 41 & & & \\ Row 42 & & & \\ Row 43 & & & \\ Row 44 & & & \\ Row 45 & & & \\ Row 46 & & & \\ Row 47 & & & \\ Row 48 & & & \\ Row 49 & & & \\ Row 50 & & & \\ \end{longtable}