Graphics, Figures & Tables ⇒ placing captons of subfloats at their right side
placing captons of subfloats at their right side
How can I place the captions of subfloats(subfigures) at their right side?
NEW: TikZ book now 40% off at Amazon.com for a short time.
placing captons of subfloats at their right side
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:
I can really recommend this book.
Cheers,
Mina
http://en.wikibooks.org/wiki/LaTeX
It has a section on figures and floats and says this on side captions:
With this text they show a picture of a giraffe with a caption on the right.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}
I can really recommend this book.
Cheers,
Mina
placing captons of subfloats at their right side
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
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.
Code: Select all
\usepackage[raggedright]{sidecap}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
placing captons of subfloats at their right side
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
Best regards
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: placing captons of subfloats at their right side
As far as I remember the floatrow package is able to do that.