Graphics, Figures & TablesTable caption left justify + figure caption center

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
kubanecxxx
Posts: 2
Joined: Wed Dec 08, 2010 9:16 pm

Table caption left justify + figure caption center

Post by kubanecxxx »

Hi people,
I'm solving this problem in my bachelor thesis. I used this code to get a left justify, but I would need it only for a table enviroment.
Thank you

Code: Select all

% Here it is: the code that adjusts justification and spacing around caption.
\makeatletter
% http://www.texnik.de/floats/caption.phtml
% This does spacing around caption.
\setlength{\abovecaptionskip}{2pt}   % 0.5cm as an example
\setlength{\belowcaptionskip}{2pt}   % 0.5cm as an example
% This does justification (left) of caption.
\long\def\@makecaption#1#2{%
\vskip\abovecaptionskip
\sbox\@tempboxa{#1: #2}%
\ifdim \wd\@tempboxa >\hsize
#1: #2\par
\else
\global \@minipagefalse
\hb@xt@\hsize{\box\@tempboxa\hfil}%
\fi
\vskip\belowcaptionskip}
\makeatother
Last edited by kubanecxxx on Thu Dec 09, 2010 12:07 am, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Table caption left justify + figure caption center

Post by localghost »

Forget that code snippet and use the caption package.

Code: Select all

\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[includeheadfoot,margin=3cm]{geometry}
\usepackage[font=small,labelfont=bf,tableposition=top]{caption}
\usepackage{blindtext}

\captionsetup[table]{singlelinecheck=off}

\begin{document}
  \blindtext

  \begin{figure}[!ht]
    \centering
    \rule{6.4cm}{3.6cm}
    \caption{Dummy figure}\label{fig:dummy}
  \end{figure}

  \blindtext

  \begin{table}[!ht]
    \caption{Dummy table}\label{tab:dummy}
    \rule{6.4cm}{3.6cm}
  \end{table}

  \blindtext
\end{document}

Best regards and welcome to the board
Thorsten
kubanecxxx
Posts: 2
Joined: Wed Dec 08, 2010 9:16 pm

Re: Table caption left justify + figure caption center

Post by kubanecxxx »

Thank you very much, that works for me!!! GREAT
Post Reply