Graphics, Figures & TablesSection Title above Table

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
loopylouise
Posts: 4
Joined: Thu Oct 13, 2011 4:13 pm

Section Title above Table

Post by loopylouise »

Hello everyone.

This is day 3 of using LaTeX for me so the chances are I'm being dense.
I've managed to get a table into the file (with much googling and bad language) and now the section title "Plasma Parameters" is appearing below to the table and the caption. Below is the code and also, hopefully, an attached image of what it looks like from the pdf.

Code: Select all

\section{Plasma Parameters}

Something useful and relevent.

\begin{table}
\begin{center}
\begin{tabular}{|l|c|c|c|}
\hline
Plasma & \begin{math}\omega_p\end{math} & 

\begin{math}\lambda_D\end{math} &  
\begin{math}\Lambda\end{math} \\ \hline
Interstellar & 6x10\textsuperscript{4} & 0.7 & 

4x10\textsuperscript{6}\\ \hline

Solar Chromosphere	&6x10\textsuperscript{10}	

&5x10\textsuperscript{-6}	 
&2x10\textsuperscript{3}\\ \hline
Solar Wind (1AU)	&2x10\textsuperscript{5}	

&7	 
&5x10\textsuperscript{10}\\ \hline
Ionosphere		&6x10\textsuperscript{7}	

&2x10\textsuperscript{-3}	 
&1x10\textsuperscript{5}\\ \hline
Arc Discharge		&6x10\textsuperscript{11}	

&7x10\textsuperscript{-7}	 
&5x10\textsuperscript{2}\\ \hline
Tokamak			&6x10\textsuperscript{11}	

&7x10\textsuperscript{-5}	 
&4x10\textsuperscript{8}\\ \hline
Inertial Confinement	&6x10\textsuperscript{15}	

&7x10\textsuperscript{-9}	 
&5x10\textsuperscript{4}\\ 
\hline
\end{tabular}

\caption{Plasma frequency, Parament and Debeye  length 

for examples of different plasmas.  

\cite{website:FitzpatrickParameter}}
\label{fig:PlasmaParameters}

\end{center}
\end{table}
Any suggestions are greatly appreciated. Thank you.
Louise
Attachments
table-title dilemma.JPG
table-title dilemma.JPG (48.29 KiB) Viewed 10402 times
Last edited by loopylouise on Mon Oct 17, 2011 3:07 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Section Title above Table

Post by localghost »

Start with certain placement parameters for your floating table.

Code: Select all

\begin{table}[!ht]
% table content
\end{table}
Assumed that there is enough free space, this should work.


Best regards and welcome to the board
Thorsten
loopylouise
Posts: 4
Joined: Thu Oct 13, 2011 4:13 pm

Re: Section Title above Table

Post by loopylouise »

Thanks for you help!
Post Reply