Graphics, Figures & Tablesplacing captons of subfloats at their right side

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
salma
Posts: 1
Joined: Mon Jul 19, 2010 3:00 pm

placing captons of subfloats at their right side

Post by salma »

How can I place the captions of subfloats(subfigures) at their right side?

Recommended reading 2024:

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

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

mina
Posts: 12
Joined: Sun Jul 12, 2009 4:48 pm

placing captons of subfloats at their right side

Post by mina »

Are you aware of this book?

http://en.wikibooks.org/wiki/LaTeX

It has a section on figures and floats and says this on side captions:
http://en.wikibooks.org/wiki/LaTeX/Floats,_Figures_and_Captions#Side_captions wrote: Side captions

It is sometimes desirable to have a caption appear on the side of a float, rather than above or below. The sidecap package can be used to place a caption beside a figure or table. The following example demonstrates this for a figure by using a SCfigure environment in place of the figure environment. SCfigure does not accept the usual figure arguments.

Code: Select all

\documentclass{article}
 
\usepackage[pdftex]{graphicx}
\usepackage{sidecap}
 
\begin{document}
 
\begin{SCfigure}
  \centering
  \includegraphics[width=0.55\textwidth]%
    {Giraff_picture}% picture filename
  \caption{ ... caption text ... }
\end{SCfigure}
 
\end{document}
With this text they show a picture of a giraffe with a caption on the right.

I can really recommend this book.

Cheers,
Mina
mina
Posts: 12
Joined: Sun Jul 12, 2009 4:48 pm

placing captons of subfloats at their right side

Post by mina »

Am using it now. Check out http://www.ctex.org/documents/packages/ ... idecap.pdf for more details on the sidecap package. I have an image with a small caption, so I use

Code: Select all

\usepackage[raggedright]{sidecap}
There is also options for placing the captions on alternate sides when on inner or outer pages of a book, or on one side throughout the document.
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

placing captons of subfloats at their right side

Post by localghost »

As far as I can see the OP asked for this feature in sub-floats. The sidecap package is definitely not capable, only for floats. And I'm not aware of any other package.


Best regards
Thorsten
User avatar
sommerfee
Posts: 503
Joined: Mon Apr 09, 2007 4:20 pm

Re: placing captons of subfloats at their right side

Post by sommerfee »

As far as I remember the floatrow package is able to do that.
Post Reply