blob: 2ddfeffe0296252b84c9462a7e57fc8d1c886d54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
\documentclass{article}
\usepackage[T1]{fontenc}
\begin{document}
\begin{tabular}{|c|c|c|c|c|}
\hline
& \multicolumn{2}{|c|}{Singular} & \multicolumn{2}{|c|}{Plural} \\
\hline
& English & \textbf{Gaeilge} & \textbf{English} & \textbf{Gaeilge} \\
\hline
1st Person & at me & \textbf{agam} & at us & \textbf{againn} \\
\hline
2nd Person & at you & \textbf{agat} & at you & \textbf{agaibh} \\
\hline
3rd Person & at him & \textbf{aige} & at them & \textbf{acu} \\
\hline
& at her & \textbf{aici} & & \\
\hline
\end{tabular}
\end{document}
|