blob: 144b2810b36fa608abea29c38b6f34c62bb58e46 (
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
|
% $Id: vbar.w,v 1.2 1995/08/08 00:14:51 schrod Exp $
%----------------------------------------------------------------------
% tests ways to get ruled tables
\documentclass{cweb}
\usepackage{cwebarray}
\begin{document}
@ Test 1:
\begin{tabular}{^^7cl^^7cl^^7c}
\hline
1st column & 2nd column\\
\hline
\end{tabular}
@ Test 2:
\begin{tabular}{IlIlI}
\hline
1st column & 2nd column\\
\hline
\end{tabular}
\end{document}
|