How to add a description after each column at the bottom?
up vote
3
down vote
favorite
I want to add a description "column a" for the first column, "column b" for the second column, "column c" for the third column. How to do that?
documentclass{article}
begin{document}
begin{figure}[h!]
includegraphics[width=0.32textwidth]{example-image-a}
includegraphics[width=0.32textwidth]{example-image-b}
includegraphics[width=0.32textwidth]{example-image-c}
includegraphics[width=0.32textwidth]{example-image-a}
includegraphics[width=0.32textwidth]{example-image-b}
includegraphics[width=0.32textwidth]{example-image-c}
includegraphics[width=0.32textwidth]{example-image-a}
includegraphics[width=0.32textwidth]{example-image-b}
includegraphics[width=0.32textwidth]{example-image-c}
caption{Column A $rightarrow$ Column B $rightarrow$ Column C. }
end{figure}
end{document}
graphics subfloats
add a comment |
up vote
3
down vote
favorite
I want to add a description "column a" for the first column, "column b" for the second column, "column c" for the third column. How to do that?
documentclass{article}
begin{document}
begin{figure}[h!]
includegraphics[width=0.32textwidth]{example-image-a}
includegraphics[width=0.32textwidth]{example-image-b}
includegraphics[width=0.32textwidth]{example-image-c}
includegraphics[width=0.32textwidth]{example-image-a}
includegraphics[width=0.32textwidth]{example-image-b}
includegraphics[width=0.32textwidth]{example-image-c}
includegraphics[width=0.32textwidth]{example-image-a}
includegraphics[width=0.32textwidth]{example-image-b}
includegraphics[width=0.32textwidth]{example-image-c}
caption{Column A $rightarrow$ Column B $rightarrow$ Column C. }
end{figure}
end{document}
graphics subfloats
add a comment |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
I want to add a description "column a" for the first column, "column b" for the second column, "column c" for the third column. How to do that?
documentclass{article}
begin{document}
begin{figure}[h!]
includegraphics[width=0.32textwidth]{example-image-a}
includegraphics[width=0.32textwidth]{example-image-b}
includegraphics[width=0.32textwidth]{example-image-c}
includegraphics[width=0.32textwidth]{example-image-a}
includegraphics[width=0.32textwidth]{example-image-b}
includegraphics[width=0.32textwidth]{example-image-c}
includegraphics[width=0.32textwidth]{example-image-a}
includegraphics[width=0.32textwidth]{example-image-b}
includegraphics[width=0.32textwidth]{example-image-c}
caption{Column A $rightarrow$ Column B $rightarrow$ Column C. }
end{figure}
end{document}
graphics subfloats
I want to add a description "column a" for the first column, "column b" for the second column, "column c" for the third column. How to do that?
documentclass{article}
begin{document}
begin{figure}[h!]
includegraphics[width=0.32textwidth]{example-image-a}
includegraphics[width=0.32textwidth]{example-image-b}
includegraphics[width=0.32textwidth]{example-image-c}
includegraphics[width=0.32textwidth]{example-image-a}
includegraphics[width=0.32textwidth]{example-image-b}
includegraphics[width=0.32textwidth]{example-image-c}
includegraphics[width=0.32textwidth]{example-image-a}
includegraphics[width=0.32textwidth]{example-image-b}
includegraphics[width=0.32textwidth]{example-image-c}
caption{Column A $rightarrow$ Column B $rightarrow$ Column C. }
end{figure}
end{document}
graphics subfloats
graphics subfloats
asked 14 hours ago
Peter
1576
1576
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
up vote
2
down vote
accepted
A solution with tabular for more control:
documentclass{article}
usepackage{graphicx}
begin{document}
begin{figure}[h!]
begin{tabular}{c@{hspace{1.5mm}}c@{hspace{1.5mm}}c}
includegraphics[width=0.32textwidth]{example-image-a}&
includegraphics[width=0.32textwidth]{example-image-b}&
includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
includegraphics[width=0.32textwidth]{example-image-a}&
includegraphics[width=0.32textwidth]{example-image-b}&
includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
includegraphics[width=0.32textwidth]{example-image-a}&
includegraphics[width=0.32textwidth]{example-image-b}&
includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
(a) &
(b) &
(c)
end{tabular}
caption{Column A $rightarrow$ Column B $rightarrow$ Column C. }
end{figure}
end{document}
add a comment |
up vote
2
down vote
A solution with subfigure
:
documentclass{article}
usepackage{graphicx}
usepackage{subcaption}
begin{document}
begin{figure}[h!]
begin{subfigure}[t]{.32linewidth}
includegraphics[width=linewidth]{example-image-a}
includegraphics[width=linewidth]{example-image-b}
includegraphics[width=linewidth]{example-image-c}
caption{Column A $rightarrow$}
end{subfigure}
begin{subfigure}[t]{.32linewidth}
includegraphics[width=linewidth]{example-image-a}
includegraphics[width=linewidth]{example-image-b}
includegraphics[width=linewidth]{example-image-c}
caption{Column B $rightarrow$}
end{subfigure}
begin{subfigure}[t]{.32linewidth}
includegraphics[width=linewidth]{example-image-a}
includegraphics[width=linewidth]{example-image-b}
includegraphics[width=linewidth]{example-image-c}
caption{Column C. }
end{subfigure}
caption{Caption for all the three subfigures}
end{figure}
end{document}
add a comment |
up vote
1
down vote
Use Subfigures, see related question.
documentclass{article}
usepackage[utf8]{inputenc}
usepackage{graphicx}
usepackage{caption}
usepackage{subcaption}
begin{document}
begin{figure}[t]
centering
begin{subfigure}[t]{0.32textwidth}
includegraphics{a}
includegraphics{a}
includegraphics{a}
subcaption{caption of Column A}
end{subfigure}
begin{subfigure}[t]{0.32textwidth}
includegraphics{b}
includegraphics{b}
includegraphics{b}
subcaption{caption of Column B}
end{subfigure}
begin{subfigure}[t]{0.32textwidth}
includegraphics{c}
includegraphics{c}
includegraphics{c}
subcaption{caption of Column C}
end{subfigure}
caption{Caption of all the figures }
end{figure}
end{document}
You are able to nest subfigures within the figure-environment.
aww :( I was too slow.
– Hiwi Makro
12 hours ago
add a comment |
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
A solution with tabular for more control:
documentclass{article}
usepackage{graphicx}
begin{document}
begin{figure}[h!]
begin{tabular}{c@{hspace{1.5mm}}c@{hspace{1.5mm}}c}
includegraphics[width=0.32textwidth]{example-image-a}&
includegraphics[width=0.32textwidth]{example-image-b}&
includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
includegraphics[width=0.32textwidth]{example-image-a}&
includegraphics[width=0.32textwidth]{example-image-b}&
includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
includegraphics[width=0.32textwidth]{example-image-a}&
includegraphics[width=0.32textwidth]{example-image-b}&
includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
(a) &
(b) &
(c)
end{tabular}
caption{Column A $rightarrow$ Column B $rightarrow$ Column C. }
end{figure}
end{document}
add a comment |
up vote
2
down vote
accepted
A solution with tabular for more control:
documentclass{article}
usepackage{graphicx}
begin{document}
begin{figure}[h!]
begin{tabular}{c@{hspace{1.5mm}}c@{hspace{1.5mm}}c}
includegraphics[width=0.32textwidth]{example-image-a}&
includegraphics[width=0.32textwidth]{example-image-b}&
includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
includegraphics[width=0.32textwidth]{example-image-a}&
includegraphics[width=0.32textwidth]{example-image-b}&
includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
includegraphics[width=0.32textwidth]{example-image-a}&
includegraphics[width=0.32textwidth]{example-image-b}&
includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
(a) &
(b) &
(c)
end{tabular}
caption{Column A $rightarrow$ Column B $rightarrow$ Column C. }
end{figure}
end{document}
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
A solution with tabular for more control:
documentclass{article}
usepackage{graphicx}
begin{document}
begin{figure}[h!]
begin{tabular}{c@{hspace{1.5mm}}c@{hspace{1.5mm}}c}
includegraphics[width=0.32textwidth]{example-image-a}&
includegraphics[width=0.32textwidth]{example-image-b}&
includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
includegraphics[width=0.32textwidth]{example-image-a}&
includegraphics[width=0.32textwidth]{example-image-b}&
includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
includegraphics[width=0.32textwidth]{example-image-a}&
includegraphics[width=0.32textwidth]{example-image-b}&
includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
(a) &
(b) &
(c)
end{tabular}
caption{Column A $rightarrow$ Column B $rightarrow$ Column C. }
end{figure}
end{document}
A solution with tabular for more control:
documentclass{article}
usepackage{graphicx}
begin{document}
begin{figure}[h!]
begin{tabular}{c@{hspace{1.5mm}}c@{hspace{1.5mm}}c}
includegraphics[width=0.32textwidth]{example-image-a}&
includegraphics[width=0.32textwidth]{example-image-b}&
includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
includegraphics[width=0.32textwidth]{example-image-a}&
includegraphics[width=0.32textwidth]{example-image-b}&
includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
includegraphics[width=0.32textwidth]{example-image-a}&
includegraphics[width=0.32textwidth]{example-image-b}&
includegraphics[width=0.32textwidth]{example-image-c}\[0.1mm]
(a) &
(b) &
(c)
end{tabular}
caption{Column A $rightarrow$ Column B $rightarrow$ Column C. }
end{figure}
end{document}
answered 13 hours ago
koleygr
10.9k1937
10.9k1937
add a comment |
add a comment |
up vote
2
down vote
A solution with subfigure
:
documentclass{article}
usepackage{graphicx}
usepackage{subcaption}
begin{document}
begin{figure}[h!]
begin{subfigure}[t]{.32linewidth}
includegraphics[width=linewidth]{example-image-a}
includegraphics[width=linewidth]{example-image-b}
includegraphics[width=linewidth]{example-image-c}
caption{Column A $rightarrow$}
end{subfigure}
begin{subfigure}[t]{.32linewidth}
includegraphics[width=linewidth]{example-image-a}
includegraphics[width=linewidth]{example-image-b}
includegraphics[width=linewidth]{example-image-c}
caption{Column B $rightarrow$}
end{subfigure}
begin{subfigure}[t]{.32linewidth}
includegraphics[width=linewidth]{example-image-a}
includegraphics[width=linewidth]{example-image-b}
includegraphics[width=linewidth]{example-image-c}
caption{Column C. }
end{subfigure}
caption{Caption for all the three subfigures}
end{figure}
end{document}
add a comment |
up vote
2
down vote
A solution with subfigure
:
documentclass{article}
usepackage{graphicx}
usepackage{subcaption}
begin{document}
begin{figure}[h!]
begin{subfigure}[t]{.32linewidth}
includegraphics[width=linewidth]{example-image-a}
includegraphics[width=linewidth]{example-image-b}
includegraphics[width=linewidth]{example-image-c}
caption{Column A $rightarrow$}
end{subfigure}
begin{subfigure}[t]{.32linewidth}
includegraphics[width=linewidth]{example-image-a}
includegraphics[width=linewidth]{example-image-b}
includegraphics[width=linewidth]{example-image-c}
caption{Column B $rightarrow$}
end{subfigure}
begin{subfigure}[t]{.32linewidth}
includegraphics[width=linewidth]{example-image-a}
includegraphics[width=linewidth]{example-image-b}
includegraphics[width=linewidth]{example-image-c}
caption{Column C. }
end{subfigure}
caption{Caption for all the three subfigures}
end{figure}
end{document}
add a comment |
up vote
2
down vote
up vote
2
down vote
A solution with subfigure
:
documentclass{article}
usepackage{graphicx}
usepackage{subcaption}
begin{document}
begin{figure}[h!]
begin{subfigure}[t]{.32linewidth}
includegraphics[width=linewidth]{example-image-a}
includegraphics[width=linewidth]{example-image-b}
includegraphics[width=linewidth]{example-image-c}
caption{Column A $rightarrow$}
end{subfigure}
begin{subfigure}[t]{.32linewidth}
includegraphics[width=linewidth]{example-image-a}
includegraphics[width=linewidth]{example-image-b}
includegraphics[width=linewidth]{example-image-c}
caption{Column B $rightarrow$}
end{subfigure}
begin{subfigure}[t]{.32linewidth}
includegraphics[width=linewidth]{example-image-a}
includegraphics[width=linewidth]{example-image-b}
includegraphics[width=linewidth]{example-image-c}
caption{Column C. }
end{subfigure}
caption{Caption for all the three subfigures}
end{figure}
end{document}
A solution with subfigure
:
documentclass{article}
usepackage{graphicx}
usepackage{subcaption}
begin{document}
begin{figure}[h!]
begin{subfigure}[t]{.32linewidth}
includegraphics[width=linewidth]{example-image-a}
includegraphics[width=linewidth]{example-image-b}
includegraphics[width=linewidth]{example-image-c}
caption{Column A $rightarrow$}
end{subfigure}
begin{subfigure}[t]{.32linewidth}
includegraphics[width=linewidth]{example-image-a}
includegraphics[width=linewidth]{example-image-b}
includegraphics[width=linewidth]{example-image-c}
caption{Column B $rightarrow$}
end{subfigure}
begin{subfigure}[t]{.32linewidth}
includegraphics[width=linewidth]{example-image-a}
includegraphics[width=linewidth]{example-image-b}
includegraphics[width=linewidth]{example-image-c}
caption{Column C. }
end{subfigure}
caption{Caption for all the three subfigures}
end{figure}
end{document}
edited 12 hours ago
answered 13 hours ago
CarLaTeX
27.5k445120
27.5k445120
add a comment |
add a comment |
up vote
1
down vote
Use Subfigures, see related question.
documentclass{article}
usepackage[utf8]{inputenc}
usepackage{graphicx}
usepackage{caption}
usepackage{subcaption}
begin{document}
begin{figure}[t]
centering
begin{subfigure}[t]{0.32textwidth}
includegraphics{a}
includegraphics{a}
includegraphics{a}
subcaption{caption of Column A}
end{subfigure}
begin{subfigure}[t]{0.32textwidth}
includegraphics{b}
includegraphics{b}
includegraphics{b}
subcaption{caption of Column B}
end{subfigure}
begin{subfigure}[t]{0.32textwidth}
includegraphics{c}
includegraphics{c}
includegraphics{c}
subcaption{caption of Column C}
end{subfigure}
caption{Caption of all the figures }
end{figure}
end{document}
You are able to nest subfigures within the figure-environment.
aww :( I was too slow.
– Hiwi Makro
12 hours ago
add a comment |
up vote
1
down vote
Use Subfigures, see related question.
documentclass{article}
usepackage[utf8]{inputenc}
usepackage{graphicx}
usepackage{caption}
usepackage{subcaption}
begin{document}
begin{figure}[t]
centering
begin{subfigure}[t]{0.32textwidth}
includegraphics{a}
includegraphics{a}
includegraphics{a}
subcaption{caption of Column A}
end{subfigure}
begin{subfigure}[t]{0.32textwidth}
includegraphics{b}
includegraphics{b}
includegraphics{b}
subcaption{caption of Column B}
end{subfigure}
begin{subfigure}[t]{0.32textwidth}
includegraphics{c}
includegraphics{c}
includegraphics{c}
subcaption{caption of Column C}
end{subfigure}
caption{Caption of all the figures }
end{figure}
end{document}
You are able to nest subfigures within the figure-environment.
aww :( I was too slow.
– Hiwi Makro
12 hours ago
add a comment |
up vote
1
down vote
up vote
1
down vote
Use Subfigures, see related question.
documentclass{article}
usepackage[utf8]{inputenc}
usepackage{graphicx}
usepackage{caption}
usepackage{subcaption}
begin{document}
begin{figure}[t]
centering
begin{subfigure}[t]{0.32textwidth}
includegraphics{a}
includegraphics{a}
includegraphics{a}
subcaption{caption of Column A}
end{subfigure}
begin{subfigure}[t]{0.32textwidth}
includegraphics{b}
includegraphics{b}
includegraphics{b}
subcaption{caption of Column B}
end{subfigure}
begin{subfigure}[t]{0.32textwidth}
includegraphics{c}
includegraphics{c}
includegraphics{c}
subcaption{caption of Column C}
end{subfigure}
caption{Caption of all the figures }
end{figure}
end{document}
You are able to nest subfigures within the figure-environment.
Use Subfigures, see related question.
documentclass{article}
usepackage[utf8]{inputenc}
usepackage{graphicx}
usepackage{caption}
usepackage{subcaption}
begin{document}
begin{figure}[t]
centering
begin{subfigure}[t]{0.32textwidth}
includegraphics{a}
includegraphics{a}
includegraphics{a}
subcaption{caption of Column A}
end{subfigure}
begin{subfigure}[t]{0.32textwidth}
includegraphics{b}
includegraphics{b}
includegraphics{b}
subcaption{caption of Column B}
end{subfigure}
begin{subfigure}[t]{0.32textwidth}
includegraphics{c}
includegraphics{c}
includegraphics{c}
subcaption{caption of Column C}
end{subfigure}
caption{Caption of all the figures }
end{figure}
end{document}
You are able to nest subfigures within the figure-environment.
edited 12 hours ago
answered 13 hours ago
Hiwi Makro
355
355
aww :( I was too slow.
– Hiwi Makro
12 hours ago
add a comment |
aww :( I was too slow.
– Hiwi Makro
12 hours ago
aww :( I was too slow.
– Hiwi Makro
12 hours ago
aww :( I was too slow.
– Hiwi Makro
12 hours ago
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f461812%2fhow-to-add-a-description-after-each-column-at-the-bottom%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown