Graphics, Figures & TablesOverfull \vbox with multirow

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
gfink
Posts: 3
Joined: Mon May 30, 2011 11:18 pm

Overfull \vbox with multirow

Post by gfink »

Hi,

I have a table with some matrices in them and in the last row i use multirow.
There is obviously enough space for the matrix, but i keep getting the "overfull \vbox". Any ideas on how to get rid of it? Is it also possible to have the matrix
vertically centered in the last column? Below is an example. Thanks!

Geoff

Code: Select all

\documentclass[letterpaper,12pt]{report}

\usepackage{multirow}

\begin{document}

 \begin{tabular}{|c|c|c|c|c|}
 \hline
 & \bf{a} & \bf{b} & \bf{c} & \bf{d}\\
 \hline
 $H_x$ &
 $\left[\begin{array}{ccc}0&1&0\\1&-4&1\\0&1&0\end{array}\right]$ &
 b &
 c &
 \
 \multirow{2}{*}{$\left[\begin{array}{ccc}0&1&0\\1&-4&1\\0&1&0\end{array}\right]$} \\
 $H_y$ &
 $\left[\begin{array}{ccc}0&1&0\\1&-4&1\\0&1&0\end{array}\right]$ &
 b &
 c & \\
 \hline
 \end{tabular}

\end{document}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

Post Reply