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

3月 16

Bioinformatics Links Directory

The Bioinformatics Links Directory features curated links to molecular resources, tools and databases. The links listed in this directory are selected on the basis of recommendations from bioinformatics experts in the field. We also rely on input from our community of bioinformatics users for suggestions. Starting in 2003, we have also started listing all links contained in the NAR Webserver issue.……【阅读全文】