blob: cdc93e4a92556890967d7473be436a4c359cc09d (
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
|
Name: tex-record-separator and basic-line-continuation
=-=
\documentclass{}
\begin{document}
\begin{tabular}{l|l}
\textit{Player name} &\textit{Career home runs} \\
\hline
Hank Aaron &755 \\
Babe Ruth &714
\end{tabular}
\end{document}
=-=
\documentclass{}
\begin{document}
\begin{tabular}{l|l}
\textit{Player name} & \textit{Career home runs} \\
\hline
Hank Aaron & 755 \\
Babe Ruth & 714
\end{tabular}
\end{document}
=-=-=
|