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
1
vote
1 answer
If no parent object is specified in the call, what is the default value for findobj()?
In MatLab, if we write findobj(gca,'Type','line') then findobj will return a handle toa list the children of the current axis whose Type is line. However, what if we do not specify the parent object as gca and simply write findobj('Type','line')?…

Toothpick Anemone
- 4,290
- 2
- 20
- 42
1
vote
1 answer
placing figures in a row latex
I have 3 figures that I want to place in a row. I trim the figures as original figures
have a lot of whitespace.
The two figures gets placed in a row but one figure moves to the next row. Is their a way to modify the code to place all the three…

AMisra
- 1,869
- 2
- 25
- 45
0
votes
1 answer
Using a subfigure as textbody fails on tight layout with a lot of text
Using a subfigure as textbody fails on tight layout with a lot of text. As seen in the provided example, the bound of a figure are overreached by one subfigure, as if the text was not wrapped.
import pandas as pd
from matplotlib import pyplot as…

Alexander Vocaet
- 188
- 1
- 10
0
votes
0 answers
Subfigures in latex never shrinks to be on one row (pfd file)
I'm trying to adjust two subfigures into one row. This is my code:
\begin{figure}[ht]
\centering
\caption{Migration rates and nightlights in Albania in 1992-1995}
\begin{subfigure}[a]{0.3\textwidth}
…

Andrea
- 1
0
votes
1 answer
change subfigure configuration in latex
I use the following example code to create a subfigure in my latex document.
\usepackage{caption}
\usepackage{subcaption}
\begin{figure}
\centering
\begin{subfigure}[b]{0.3\textwidth}
\centering
…

jkmp
- 55
- 2
- 7
0
votes
1 answer
Latex subtables side by side
I have been trying to setup those subtables as 2x5, but it is generated as one subtable per row.
I have tried minipage, parbox, resizebox and nothing I know could pack 5 subtables into a single row. The code is shortened to 2x2 example.
I would…

Ernest
- 25
- 1
- 7
0
votes
1 answer
Matplotlib - Split graph creation into multiple functions
In order to create figures with some same graphs, I would like to define a function per group of graph. These should be called depending on the subfigure provided in order to have these graphs at the right location. Consequently, I would liek to…

EdouardDKP
- 71
- 6
0
votes
1 answer
Align Sub Figures in latex (IEEE paper format)
I want to align three figures in one row. I used the following latex code but got this output. What to change in this code to get these figures in one row? Thank you in…

jkmp
- 55
- 2
- 7
0
votes
0 answers
Matplotlib Subfigures too Short
I'm trying to render a figure with subfigures. Each subfigure is getting squashed vertically and I don't understand why. I've tried setting the aspect ratio but that just seems to make it narrower, without solving the problem that the image isn't…

iceplant
- 11
- 3
0
votes
1 answer
subfig - not plotting figures
I would like to refresh this thread: Subfigs of a figure on multiple pages.
I am struggling with reproduction. I have used suggestions on this post and I have used subfig docs. Unfortunately, neither works.
%Packages which I am…

JESUS_M
- 45
- 7
0
votes
1 answer
Subplots with QuTip Bloch sphere
I would like to know if is it possible to plot a figure with two subplots, in which one is a regular 2D plot and the other one a Bloch sphere.

Douglas A
- 1
- 1
0
votes
1 answer
Python: draw multiple figures in separate windows (same data but with different X range)
I wonder how to plot data in separate figures (not multiple figures in one window). The issue is that I want to visualize the data along different X range. For example:
import numpy as np
import pandas as pd
import…

open0121
- 105
- 2
- 15
0
votes
0 answers
How to place 8 figures inside a page with subfigure
I am trying to fit 8 figures inside a single figure. I am using 8 subfigures environments inside a figure environment and the code is woking reasonably well.
The first six figures are properly displayed as a matrix of figures with 3 rows and two…

Gabriel Jardanovski
- 5
- 1
- 4
0
votes
1 answer
Subfigures in beamer documents
I'm using beamer package to produce slides. I put many figures on a slide by using the subfigure package. The problem is that for captions, the subfigure are labeled "a", "b".. "m", "n" and so on, for subfigures appearing on different slides. How…

lmsasu
- 7,459
- 18
- 79
- 113