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 Nov 26 at 12:34
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
Nov 26 at 14:13
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 Nov 26 at 13:49
koleygr
10.9k1938
10.9k1938
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 Nov 26 at 14:38
answered Nov 26 at 13:56
CarLaTeX
27.8k445121
27.8k445121
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
Nov 26 at 14:13
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
Nov 26 at 14:13
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 Nov 26 at 14:12
answered Nov 26 at 13:48
Hiwi Makro
605
605
aww :( I was too slow.
– Hiwi Makro
Nov 26 at 14:13
add a comment |
aww :( I was too slow.
– Hiwi Makro
Nov 26 at 14:13
aww :( I was too slow.
– Hiwi Makro
Nov 26 at 14:13
aww :( I was too slow.
– Hiwi Makro
Nov 26 at 14:13
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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