[Tex/LaTex] Table caption to the left or right of table

captionshorizontal alignment

I am unable to find a method to place the caption of a table to the right or left of this specific table. Does anyone know if there is a way to do this in plain TEX or Koma Script (eventually in conjunction with the tabularx environment)?

Best Answer

You can use the floatrow package: choose something like

 \floatsetup{capbesideposition={center,left}}

in the preamble, and use this syntax for a particular figure to have a side caption:

\begin{figure}[!h]
   \fcapside{\caption{Test for side caption}\label{sic}}
   {\includegraphics{myfigure}}
\end{figure}

See § 1.1.1 and §§ 3.1.3 to 3.1.7 of the doc for further details about captions.

Related Question