blob: b07299efbe0df56b4ab73e4b4562ad12ee1a8e4e (
plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
|
\documentclass{article}
\usepackage{longtable,boldline}
\begin{document}
\begin{verbatim}
\begin{center}
\begin{tabular}{V{2.7}c|c|cV{2.7}}\hlineB{2.7}
1st &First &I \\\hline
2nd &Second &II \\\clineB{1-2}{.5}
3rd &Third &III\\\hlineB{2.7}
\end{tabular}
\end{center}
\end{verbatim}
\begin{center}
\begin{tabular}{V{2.7}c|c|cV{2.7}}\hlineB{2.7}
1st &First &I \\\hline
2nd &Second &II \\\clineB{1-2}{.5}
3rd &Third &III\\\hlineB{2.7}
\end{tabular}
\end{center}
\begin{verbatim}
\begin{center}
\begin{longtable}{V{2.7}c|c|cV{2.7}}\hlineB{2.7}
1st &First &I \\\hline
2nd &Second &II \\\clineB{1-2}{.5}
3rd &Third &III\\\hlineB{2.7}
\end{longtable}
\end{center}
\end{verbatim}
\begin{center}
\begin{longtable}{V{2.7}c|c|cV{2.7}}\hlineB{2.7}
1st &First &I \\\hline
2nd &Second &II \\\clineB{1-2}{.5}
3rd &Third &III\\\hlineB{2.7}
\end{longtable}
\end{center}
\end{document}
|