9月 17

忙碌的周末

周末忙忙碌碌折腾了两天,虽然很累,但也很充实。周六,把密码管理软件把密码重新整理了一下;周日,把个人博客转移到了自己购买的虚拟主机上,还是很有成就感的。总体来说,累并充实着!辛苦、欣喜之情难以细述,仅以此文记之。……【阅读全文】

5月 08

用XeTeX排版毕业论文的经验总结

  • 重置每个部分(part)中的章节计数器
1
2
3
4
%导言区
makeatletter
@addtoreset{chapter}{part}
makeatother
  • 将图或表后的冒号(:)改成句点(.)
1
2
3
%导言区
usepackage{caption}
captionsetup{labelsep=period, tablewithin=section}
  • 表格相关的包(长表格自动换页,合并单元格,等)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
%导言区
usepackage{booktabs,longtable}
usepackage{multirow}
usepackage{tabu}
%正文区
begin{longtabu}{X[1,c]X[1,c]X[1,c]X[1,c]X[2,c]X[2,c]}
caption[短标题]{长标题。}
label{table:LABEL}
toprule
Chr & Position & Gene & Variation & Type & Effect
midrule
endfirsthead
(续ref{table:LABEL})
toprule
Chr & Position & Gene & Variation & Type & Effect
midrule
endhead
midrule
multicolumn{6}{r}{待续ldots}
endfoot
bottomrule
endlastfoot
 
1 & 999 & ABC & AT & Splicing Site mutation & Frame Shift
%此处省略N行
%注意:最后一行一定要有换行符(),否则编译出错
 
tabuphantomline
end{longtabu}

Continue reading