{subfloats} is about small "sub"-figures and "sub"-tables within a single (floating) figure or table environment. For questions specifically about formatting a subfloat's caption, consider to use {subcaption}.
Questions tagged [subfloats]
1936 questions
59
votes
5 answers
Remove (a), (b) from subfigure numbering, but keep the subfigure caption?
I've a question on the labels in the subfigure environment. I would like to remove the (a) and (b) and insert something else instead. This 'new' caption is different for every subfigure and not a logical counter (so not i, ii or so).
Can any body…
Karen
- 593
30
votes
3 answers
Put subfigure labels inside figures using subfig package
I'd like to put subfigure labels (a), (b), etc., at the top left corner of subfigures like the following figure:
I know there are some workarounds like this post (with stackengine) or this post (with subcaption). However, I don't want to use…
Leo Fang
- 400
27
votes
3 answers
how to put subfigures in several rows
basically i need something like rowspan option in html table. I want that an figure 3 and figure 4 occupy three rows, I need a layout something like this:
|figure 1 | figure 2 | | |
|figure 5 | figure 6 | figure…
user3108
21
votes
1 answer
One figure having two columns of subfigures: the left column has one image and the right one has two images
I am trying to create a subfigure in LaTeX similar to this image:
I want to have a figure which has two columns. The left column contains one image and the right columns has two images. In fact, the right column is divided into two rows and the…
shashashamti2008
- 5,380
21
votes
3 answers
Undefined control sequence \subfloat
This is odd, my code was working just fine, then I literally just step out of the room and when I come back and compile I get the error undefined control sequence \subfloat.
Basically I am trying to arrange 3 images, cc.png, bb.png and tt.png in a…
Max Rodgers
- 311
10
votes
1 answer
Problem with \subfigure
I am having some troubles in using \subfigure in LaTeX.
Here's my code:
\begin{figure*}[t]
\centering
\subfigure[]{\includegraphics[width=0.32\textwidth]{./figure/bos_onto6.png}\label{fig:SGD_1_single}}
\subfigure[]{\includegraphics[width…
DavideChicco.it
- 989
10
votes
1 answer
how to use labels in subfloat
\begin{figure}%
\centering
\subfloat[Original]{{\includegraphics[width=4cm]{cata_orig.png} }}%
\qquad
\subfloat[Imposter]{{\includegraphics[width=4cm]{cata_impos.png} }}%
\caption{Catalog Images}%
…
canonball
- 223
10
votes
1 answer
multiple rows subfigure
I want to have a following layout of pictures:
I'm using subfigures:
\documentclass[12pt,…
DomDom
- 153
9
votes
1 answer
Obtaining the behavior of both subfigure and subcaptionbox in the subcaption package
In the subcaption package, the default way to create subfigures is when the subfigure environment:
\documentclass{article}
\usepackage{caption}
\usepackage{subcaption}
\begin{document}
\begin{figure}
\centering
\begin{subfigure}{0.4\textwidth}
…
Tyson Williams
- 6,100
9
votes
1 answer
Multiple subfigures using the subfigure environment
When I compile the attached code,I find that:
(a) The figure is not centred
(b) The subfigures overlap
(c) The captions are duplicated.
I wasn't able to include the .tikz file as I am a new user. However,I believe any other figure saved in the…
Arjun
- 93
- 1
- 1
- 4
7
votes
1 answer
Arrange images as tables or subfigure or some other layout
How to layout images like the attached picture? Should I arrange them as tables or subfigure or some other layout? Thanks.
This is my latex…
hercules
- 73
7
votes
1 answer
Subfigures, long caption side by side
Hello I have really big problems with positioning my sub figures. I have long caption text and I think that is the reason why they don't fit side by side. What can I do for solving this problem. [t] didn't work.
\begin{figure}[t]
\centering
…
7
votes
2 answers
How to vertically label the subfigures?
I have 6 images, and I want to align them in this way
(a)image1 (c)image3 (e)image5
(b)image2 (d)image4 (f)image6
Any one know how to do that? The problem for me is how to make (a), (b),..., (f) in vertical direction.
user32558
- 71
6
votes
1 answer
Figure fit pagewidth
Since the text in the figures are too small, it's better if I can enlarge them without putting each subfigure on a separate line. I can see only one way to do this is expand the figure to cover the spaces on the left and right side of the figure. Is…
v4r
- 367
6
votes
3 answers
Implementing a 3x4 subfigure
I would like to implement the following figure in LaTeX, including the axis labels.
(Assume that in this image matrix there are 12 individual square pictures ... can I fix the size of the individual square?)
How can this be done? I have worked with…
Philippe Knecht
- 173