Answers for "latex how to get table below text"

3

how to wrap text in latex table

\begin{tabular}{|p{1cm}|p{3cm}|}
  This text will be wrapped & Some more text \\
\end{tabular}
Posted by: Guest on March-06-2020
-1

latex table caption

\begin{table}[position specifier]
  \centering
  \begin{tabular}{|l|}
    ... your table ...
  \end{tabular}
  \caption{This table shows some data}
  \label{tab:myfirsttable}
\end{table}
Posted by: Guest on June-01-2021

Browse Popular Code Answers by Language