The code below is supposed to create a simple table with multirows. I would like to have a line break after each word in the first column. I tried to obtain this effect by forcing the column width to 3cm. Unfortunately it does not work, probably because of multirows statement. Anyone knows how to solve this problem? I would be thankful.
Code: Select all
\begin{table}[h]
\begin{center}
\begin{tabular}{p{3cm} | c | c}
& {\bf Subtrigger} & {\bf Condition} \\
\hline\hline
\multirow{3}{*}{\bf Monitor Sample} & s0 & \\
& s3 & \\
& s9 & \\
\hline
\multirow{4}{*}{\bf Alternative Monitor Sample} & s82 & \\
& s83 & \\
& s87 & \\
& s61 & \\
\end{tabular}
\end{center}
\caption{Subtrigger definitions used for monitoring s67}
\label{tab:sel:monitortrigger}
\end{table}