Skip to content
Maximilian Kürschner edited this page May 10, 2021 · 1 revision

Input:

\begin{table}[H]
  \center                                       %to center the table
  \begin{tabular}{l|l|l}                        %l for the column, | for divider
  A & B & C                                     %& for the column divider
  \end{tabular}
  \caption{caption}                             %will be the caption of the image
  \label{fig:Logo}                              %used to reference figure in text
\end{table}
\noindent                                       %to remove indentation after table

Output:

table-image

❗ To add the caption above just move caption and label above the 'tabular' enviroment

❓ For easy table creation look here

Clone this wiki locally