i have to place the caption of a table at the top left position and for images at the standard centered bottom position.
The following code places the label of the table at top centered position, altough the switch justification=raggedleft is set.
Does anybody know why?
Code: Select all
\documentclass[a4paper,10pt]{article}
\usepackage[margin=10pt,font=small,labelfont=bf,justification=raggedleft]{caption}
\begin{document}
Table Test:
\begin{table}
\caption{Test Table}
\begin{tabular} {|l|l|} \hline
Item1 & Item2 \\ \hline
\end{tabular}
\label{tab:Test1}
\end{table}
\end{document}
Thomas