How to create a new line in the table cell
Posted
by
Justin
on Stack Overflow
See other posts from Stack Overflow
or by Justin
Published on 2014-06-08T03:20:32Z
Indexed on
2014/06/08
3:24 UTC
Read the original article
Hit count: 231
latex
I am new to latex, and I am trying to create a table, but the content in the table cell is quite long, so I decided to create a new line for the cells.
But I am not sure how to do that, could someone help me on that? Here is my code:
\begin{table}[h!]
\caption{Multirow table}
\begin{center}
\begin{tabular}{ |c|c|c| }
\hline
Observation(Species name) & Likelihood (Limnodynastes peronii Distribution Model) &Likelihood (Rhinella marina Distribution Model)\\
\hline
Observation 1 (Limnodynastes peronii) &0.0712 &0.2699\\
\hline
Observation 2 (Rhinella marina) &0.30 &0.013 \\
\hline
\end{tabular}
\end{center}
\end{table}
© Stack Overflow or respective owner