I am trying to make the attached table, but I haven't been succesful so far. I'm pretty sure I have to use the multirow-package. Here's what I got so far:
Code: Select all
\documentclass[10pt, a4paper]{article}
\usepackage[english]{babel}
\usepackage[ansinew]{inputenc}
\usepackage{multirow}
\begin{document}
\begin{center}
\begin{tabular}{|l|l|l|}
\hline
\multirow{1}{*}{}
& Subjective pronoun & verb + \\
\hline
\multirow{3}{*}{Singular}
& I & am \\
& you & i \\
& (he, she)/it & \\
\hline
\multirow{3}{*}{Plural}
& we & im \\
& You & id \\
& they & and \\
\hline
\end{tabular}
\end{center}
\end{document}
Niles.