Subfigure is a package for Latex that provides support for sub-figures and tables by simplifying the positioning, captioning and layout of such objects within a single figure / table environment.
Questions tagged [subfigure]
44 questions
2
votes
0 answers
Numbering of the subfigures are not centered with the figure in LATEX
The numbering (a,b,c) in the subfigures is a little off-center with the subfigures. I keep \caption inside the subfigure section empty because I do not want any captions but if I remove it, the numbering will go away. Is there any way to keep the…

jkmp
- 55
- 2
- 7
2
votes
1 answer
latex subfigures not centered
This latex code:
\begin{figure}[H]
\setlength{\figW}{5cm} % determines the width of the images
\begin{subfigure}[b]{0.5\textwidth}
\input{images/eigw_kegel_0.5.tex}
\caption{}
\end{subfigure}
…

Koen
- 346
- 1
- 3
- 14
2
votes
3 answers
Why does my LaTeX subfigure not work with an a0poster?
Here's my problem. I have a bunch of figures already written in a LaTeX document, and I'd like to reuse them for a poster. The code for the figure looks like:
\begin{figure}[htp]
\begin{center}
\subfigure[Figure…

mmr
- 14,781
- 29
- 95
- 145
2
votes
1 answer
Multiple sub-figures arranged on one page
I would like to arrange 4 sets of 3 subfigures onto one page as shown in the attached picture. I want each of the 4 sets of subfigures to have their own figure number and caption.
Is it possible to split the page into quarters in which I could place…

M.Thomas
- 97
- 1
- 1
- 6
2
votes
1 answer
Matlab draw 'subaxis' based subplots on specified 'axes'
I am coding some GUI staff using Matlab. And I want to plot a figure with subfigures in one specified 'axes' using 'subaxis' method (which can be download on Matlab FX subaxis.m).
The program behaves quite right at first. As the subfigures are…

Samo Jerom
- 2,361
- 7
- 32
- 38
2
votes
2 answers
How to create own and fancy \sub command
I'm using packages subfigure and float to create figures and tables that I want to create and I'm trying to create my own environment graph with its own counter and caption (solved there, thanks to dmckee). Now I'd like to create \subgraph command…

Crowley
- 2,279
- 6
- 22
- 36
1
vote
4 answers
Docbook - more images in one figure
Is there in Docbook something similar to Subfig from LaTeX?
I want to put two images in a figure, side by side - how is this done in Docbook?

j_maly
- 1,091
- 1
- 13
- 27
1
vote
1 answer
Multiple Tikz-Trees in a subfigure-grouped figure row
How to put multiple Tikz trees in a subfigure-grouped figure row? As the provided screenshot indicates, every figure/ tree is put in a separate row. I guess that the tree width is > 50% of the line width, but I don't know one can regulate the width…

Eric
- 1,594
- 1
- 15
- 29
1
vote
1 answer
how to share axis in matplotlib and use only one equal aspect ratio
I would like to produce a figure where I display a 2d data on the left and a vertical slice of said data on the right.
I successfully did it with the following MWE:
import matplotlib.pyplot as plt
import numpy as np
nz = 66
nx = 130
ny = 230
h =…

Alexandre Hoffmann
- 75
- 6
1
vote
0 answers
Subfig and subtable alignement with multiple caption line
I'm trying to align a subfigure and a subtable and I found the following solution. Captions are aligned only if they have the same number of lines. Table caption is aligned at the bottom of the figure caption and changing [b] to [t] doesn't resolve…

FabiKeiki
- 11
- 2
1
vote
0 answers
Latex: vertically center an image in a subfigure
I am trying to put two pictures together in a subfigure and minipage environment. What I am seeking for is to have the two figures vertically centered with each other (the smaller figure has to be centered, not at the bottom as it usually happens).…

letoppina
- 23
- 3
1
vote
1 answer
How to disable scaling in the subfigure latex package?
I have some chemical structures with different image widths. As they can grouped thematically I want to place them within the same figure with subfigures.
However, I want to present the images in their original size and don't want to apply any…

JakobJakobson13
- 135
- 1
- 4
- 13
1
vote
1 answer
Include figure labels in R markdown for side by side plots
In my rmarkdown document, I want to include plots side by side to save space. For example, I want to include:
plot(rnorm(100))
hist(runif(100))
or
plot(rnorm(100))
hist(runif(100))
I don't really care if there is one caption for both subplots or…

acn
- 65
- 1
- 5
1
vote
0 answers
Pyplot / ArtistAnimation multiple subplots with animations
I'm trying to plot multiple animations using pyplot / artistanimation. I want to plot them all at the same time but it seems to only plot the last matrix and the two other subplots are empty.
A,B and C are quite large matrices that are created at…

Kingsley12
- 11
- 2
1
vote
1 answer
Ordering subfigures in LaTex
I have this code in LaTex:
\begin{figure}[h!]
\centering
\subfigure[]{\includegraphics[width=50mm]{katua.jpg}}
\subfigure[]{\includegraphics[width=60mm]{txakurren_balioak.png}}
…

Negreanu
- 79
- 7