I am trying to solve a multirow problem at work and thought I'd do a little "homework" on my home system to see if I could get it fixed before tomorrow. To that end, I thought I'd create a simple LaTeX document to work with. Problem is, when I try to compile the document, I get the following error message:
Code: Select all
[LaTeX] multirow.tex => multirow.dvi (latex)
[LaTeX] finished with exit status 1
./multirow.tex:3:File `multirow.sty' not found. \begin
[LaTeX] 1 error, 0 warnings, 0 badboxes
Code: Select all
\documentclass[10pt]{article}
\usepackage{multirow}
\begin{document}
\begin{tabular}{|l|l|l|}
\hline
\multicolumn{3}{|c|}{Team sheet} \\
\hline
Goalkeeper & GK & Paul Robinson \\ \hline
\multirow{4}{*}{Defenders} & LB & Lucus Radebe \\
& DC & Michael Duberry \\
& DC & Dominic Matteo \\
& RB & Didier Domi \\ \hline
\multirow{3}{*}{Midfielders} & MC & David Batty \\
& MC & Eirik Bakke \\
& MC & Jody Morris \\ \hline
Forward & FW & Jamie McMaster \\ \hline
\multirow{2}{*}{Strikers} & ST & Alan Smith \\
& ST & Mark Viduka \\
\hline
\end{tabular}
\end{document}
http://en.wikibooks.org/wiki/LaTeX/Tabl ... tiple_rows
The problem I'm trying to solve (besides what I've just stated) is that I need to have multiple rows available in the 4th column of a 4 column table. Most examples I've seen while Googling have placed the multiple rows in the first column. I'm attaching a small PDF (odt and doc extensions weren't recognized) to illustrate what the table should look like.
Thanks again for your input.