
总结一下用Latex做论文排版遇到的问题和解决方案。
1. Latex表格字体控制
Latex设置表格字体方法:
begin{table}[h]
small %此处写字体大小控制命令
begin{tabular}
end{tabular}
end{table}
Latex 设置字体大小命令由小到大依次为:
tiny
scriptsize
footnotesize
small
normalsize
large
Large
LARGE
huge
Huge
2. 图片表格标题字体格式统一修改
usepackage{caption}
captionsetup{font={scriptsize}} %% 这一句放在 caption前面
这里还可以设置字体大小为:large small footnotesize scriptsize
其他格式修改参考: http://mirror.ctan.org/macros/latex/contrib/caption/caption-eng.pdf
3. 双栏排版格式下,将多图片横跨多栏
(1)表格横跨两栏代码
begin{table*} .... end{table*}
(2)图形横跨两栏代码
begin{figure*} .... end{figure*}
(3)多图合并成一排 (下面的例子有3张图)
begin{figure*}[htb!]
centering
begin{minipage}[t]{0.33textwidth}
centering
includegraphics[width=6cm]{t_d_IMDB1.png}
caption{}
label{imdb-fig-t_d}
end{minipage}
begin{minipage}[t]{0.33textwidth}
centering
includegraphics[width=6cm]{t_f_IMDB1.png}
caption{}
label{imdb-fig-t_f}
end{minipage}
begin{minipage}[t]{0.33textwidth}
centering
includegraphics[width=6cm]{t_c_IMDB1.png}
caption{}
label{imdb-fig-t_c}
end{minipage}
end{figure*}
4. LaTeX 符号命令大全 (函数、符号及特殊字符) (copied from https://www.cnblogs.com/Coolxxx/p/5982439.html)



More function and signs can be found at https://www.cnblogs.com/Coolxxx/p/5982439.html