As I said, this works:
Code: Select all
\documentclass[tablecaptionabove]{scrartcl}
\usepackage[labelfont=bf]{caption}
\begin{document}
\begin{table}
\centering
\caption{Correctly placed caption}
\begin{tabular}{|c|}
\hline
Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\
\hline
\end{tabular}
\end{table}
\end{document}
Code: Select all
\documentclass{article}
\usepackage[labelfont=bf,position=auto]{caption}
\begin{document}
\begin{table}
\centering
\caption{Correctly placed caption}
\begin{tabular}{|c|}
\hline
Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\\
\hline
\end{tabular}
\end{table}
\end{document}