1
2
3
4
| %导言区
makeatletter
@addtoreset{chapter}{part}
makeatother |
%导言区
makeatletter
@addtoreset{chapter}{part}
makeatother
1
2
3
| %导言区
usepackage{caption}
captionsetup{labelsep=period, tablewithin=section} |
%导言区
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} |
%导言区
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 →