Graphics, Figures & Tables ⇒ table in a paper
table in a paper
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
- Ijon Tichy
- Posts: 640
- Joined: Mon Dec 24, 2018 10:12 am
table in a paper
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}

