Graphics, Figures & Tables ⇒ Problem with my tables!
-
- Posts: 36
- Joined: Tue Oct 09, 2018 1:01 pm
Problem with my tables!
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- 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: 10330
- 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}.