1. How can I add a row in a column, that spans the entire width of the column. My current code only partly extends the entire width (see code below).
2. I'd like to add vertical ticks along a scale as show in my attachment, under the "Altitude" column. Again, unable to resolve this issue.
Hopefully someone can help!
Cheers.
Code: Select all
\begin{table}[ht]
\centering
\caption{Stratification of Earth's atmosphere}
\label{table: stratification}
\begin{tabular}{|l|l|l|l|l|}
\hline
Altitude {[}km{]} & Stratification & Ionization & Propagation & Technical \\ \hline
\begin{tabular}[c]{@{}l@{}}100 000\\ 10 000\\ 1 000\\ 100\\ 10\end{tabular} & \begin{tabular}[c]{@{}l@{}}Thermosphere \\ \hdashline[6pt/1pt] \\ Mesosphere\\ \\ Stratosphere\\ \\ Troposphere\end{tabular} & \begin{tabular}[c]{@{}l@{}}Protonosphere \\ (Plasmasphere)\\ \\ Ionosphere\\ \\ Neutrosphere\end{tabular} & \begin{tabular}[c]{@{}l@{}}Ionosphere\\ \\ \\ Troposphere\end{tabular} & \begin{tabular}[c]{@{}l@{}}Upper\\ Atmosphere\\ \\ \\ Lower\\ Atmosphere\end{tabular} \\ \hline
\end{tabular}
\end{table}