Graphics, Figures & Tablestable in a paper

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
lonohawu

table in a paper

Post by lonohawu »

Hi. I am fairly confused about putting a table in a paper (article). I have followed the usual instructions but the table seems to be always centered vertically on the page

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
Ijon Tichy
Posts: 640
Joined: Mon Dec 24, 2018 10:12 am

table in a paper

Post by Ijon Tichy »

How should be answer this? We do not know, what you are thinking which are the usual instructions. We do not know, what you are doing. We even do not know, if you are talking just about a table in the LaTeX sense of a tabular:

Code: Select all

\documentclass{article}
\usepackage{mwe}
\begin{document}
\blindtext

\begin{tabular}{lcr}
this & is & an \\
example & of & a \\
tabular & without & sense
\end{tabular}

\blindtext
\end{document}
or about a floating table:

Code: Select all

\documentclass{article}
\usepackage{mwe}
\begin{document}
\blindtext

\begin{table}
\centering
\begin{tabular}{lcr}
this & is & an \\
example & of & a \\
tabular & without & sense
\end{tabular}
\caption{An example}
\label{tab:extab}
\end{table}

\blindtext
\end{document}
Please, always show a Infominimal working example of what you are trying. And don't forget to use the shown example to explain what should be different.
Sorry, but I can no longer participate here as the administrator is trampling on my wishes on one of his other platforms. :cry:
Post Reply