Answers for "latex table caption"

1

latex tabular caption

\begin{table}
\begin{tabular}
...
\end{tabular}
\caption{\label{tab:table-name}Your caption.}
\end{table}
Posted by: Guest on November-22-2020
3

latex image caption

\begin{figure}
    \includegraphics[width=\textwidth]{Picture}
    \caption{Picture caption}
\end{figure}
Posted by: Guest on March-04-2020
0

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