Graphics, Figures & Tables ⇒ table in a paper
table in a paper
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
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Ijon Tichy
- Posts: 640
- Joined: Mon Dec 24, 2018 10:12 am
table in a paper
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:
or about a floating table:
Please, always show a
minimal working example of what you are trying. And don't forget to use the shown example to explain what should be different.
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}
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}

Sorry, but I can no longer participate here as the administrator is trampling on my wishes on one of his other platforms. 
