Answers for "latex 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
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
0

latex caption on right side

begin{figure}
  begin{minipage}[c]{0.67textwidth}
    includegraphics[width=textwidth]{2011-03-03}
  end{minipage}hfill
  begin{minipage}[c]{0.3textwidth}
    caption{
		My caption
    } label{fig:03-03}
  end{minipage}
end{figure}
Posted by: Guest on January-13-2021

Browse Popular Code Answers by Language