Graphics, Figures & Tables ⇒ Problem with my tables!
-
- Posts: 36
- Joined: Tue Oct 09, 2018 1:01 pm
Problem with my tables!
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
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Problem with my tables!
-
- Posts: 36
- Joined: Tue Oct 09, 2018 1:01 pm
Problem with my tables!
Code: Select all
\begin{table}[!ht]
\begin{center}
\begin{tabular}{ | c | c | c |}
\hline
\multirow{2}{*}{Parameter} & \multirow{2}{*}{Undrained Conditions} & \multirow{2}{*}{Drained Conditions} \\
& & \\ \hline
Friction angle - \( \phi \) & \( \phi = \phi_{u} = 0 \) & \( \phi = \phi' > 0 \) \\ \hline
Cohesion - \(c\) & \( c = s_{u} > 0 \) & \( c = c' = 0 \) \\ \hline
Surcharge - \(q\) & \(q\) (total stress) & \( q'\) (effective stress) \\ \hline
Unit weight - \( \gamma \) & \( \gamma \) (total weight) & \( \gamma'\) (effective weight) \\
\hline
\end{tabular}
\end{center}
\caption{\label{tab:table-name}Undrained and drained parameters}
\end{table}
-
- Posts: 36
- Joined: Tue Oct 09, 2018 1:01 pm
Problem with my tables!
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
-
- Posts: 36
- Joined: Tue Oct 09, 2018 1:01 pm
Problem with my tables!
And there is no need to change to \cline{1-3}.