Fit (vertically portrayed) image with the caption displayed belowHow would one place a big float (figure and caption) in the whole page occupying the entire text areaCutting the size between caption and imageTikZ scaling graphic and adjust node position and keep font sizeCentering an image verticallyAdd image to fit the whole pageScaling (and annotating) images in a rotated matrix of tikz nodes, scaled to page size?Image and table side by sideInsert Trello.com Print as PDF in projectProblem with the caption of an inserted imageDocument with page dimensions (esp. height) determined by size of image to be included (how to create)?How can i add a caption below an image?
Is the 5 MB static resource size limit 5,242,880 bytes or 5,000,000 bytes?
What was the first Intel x86 processor with "Base + Index * Scale + Displacement" addressing mode?
How to stop co-workers from teasing me because I know Russian?
Do I have an "anti-research" personality?
Examples of subgroups where it's nontrivial to show closure under multiplication?
Realistic Necromancy?
Pass By Reference VS Pass by Value
Why does nature favour the Laplacian?
Phrase for the opposite of "foolproof"
Meaning of Bloch representation
How to make a pipeline wait for end-of-file or stop after an error?
Why was Germany not as successful as other Europeans in establishing overseas colonies?
What makes accurate emulation of old systems a difficult task?
Why other Westeros houses don't use wildfire?
How to have a sharp product image?
Stop and Take a Breath!
Was there a Viking Exchange as well as a Columbian one?
How can Republicans who favour free markets, consistently express anger when they don't like the outcome of that choice?
Who is the Umpire in this picture?
Why does processed meat contain preservatives, while canned fish needs not?
What does the "ep" capability mean?
Pulling the rope with one hand is as heavy as with two hands?
What is the strongest case that can be made in favour of the UK regaining some control over fishing policy after Brexit?
What language was spoken in East Asia before Proto-Turkic?
Fit (vertically portrayed) image with the caption displayed below
How would one place a big float (figure and caption) in the whole page occupying the entire text areaCutting the size between caption and imageTikZ scaling graphic and adjust node position and keep font sizeCentering an image verticallyAdd image to fit the whole pageScaling (and annotating) images in a rotated matrix of tikz nodes, scaled to page size?Image and table side by sideInsert Trello.com Print as PDF in projectProblem with the caption of an inserted imageDocument with page dimensions (esp. height) determined by size of image to be included (how to create)?How can i add a caption below an image?
So I have this code:
beginfigure[H]
centering
includegraphics[height=textheight, width=textwidth]similar_waveforms_filtered_and_cut_new
captionSeiemic traces for events studied in this project with picks made at station DE02 - the closest station to the locations determined.
labelsimilar_waveforms
endfigure
and I am trying to 'best fit' an image that I have rotated so that it is portrayed vertically.
when I am using height=textheight, width=textwidth my caption appears below the footnote - is there a way to correct this?
I have attached an image for reference.
Many Thanks
graphics formatting
add a comment |
So I have this code:
beginfigure[H]
centering
includegraphics[height=textheight, width=textwidth]similar_waveforms_filtered_and_cut_new
captionSeiemic traces for events studied in this project with picks made at station DE02 - the closest station to the locations determined.
labelsimilar_waveforms
endfigure
and I am trying to 'best fit' an image that I have rotated so that it is portrayed vertically.
when I am using height=textheight, width=textwidth my caption appears below the footnote - is there a way to correct this?
I have attached an image for reference.
Many Thanks
graphics formatting
welcome to tex.se! you need to reduce image height for amount of caption (~ 3`baselineskip`).
– Zarko
Apr 20 at 11:44
See also tex.stackexchange.com/questions/449301/…
– John Kormylo
Apr 20 at 15:08
add a comment |
So I have this code:
beginfigure[H]
centering
includegraphics[height=textheight, width=textwidth]similar_waveforms_filtered_and_cut_new
captionSeiemic traces for events studied in this project with picks made at station DE02 - the closest station to the locations determined.
labelsimilar_waveforms
endfigure
and I am trying to 'best fit' an image that I have rotated so that it is portrayed vertically.
when I am using height=textheight, width=textwidth my caption appears below the footnote - is there a way to correct this?
I have attached an image for reference.
Many Thanks
graphics formatting
So I have this code:
beginfigure[H]
centering
includegraphics[height=textheight, width=textwidth]similar_waveforms_filtered_and_cut_new
captionSeiemic traces for events studied in this project with picks made at station DE02 - the closest station to the locations determined.
labelsimilar_waveforms
endfigure
and I am trying to 'best fit' an image that I have rotated so that it is portrayed vertically.
when I am using height=textheight, width=textwidth my caption appears below the footnote - is there a way to correct this?
I have attached an image for reference.
Many Thanks
graphics formatting
graphics formatting
asked Apr 20 at 11:38
H BH B
261
261
welcome to tex.se! you need to reduce image height for amount of caption (~ 3`baselineskip`).
– Zarko
Apr 20 at 11:44
See also tex.stackexchange.com/questions/449301/…
– John Kormylo
Apr 20 at 15:08
add a comment |
welcome to tex.se! you need to reduce image height for amount of caption (~ 3`baselineskip`).
– Zarko
Apr 20 at 11:44
See also tex.stackexchange.com/questions/449301/…
– John Kormylo
Apr 20 at 15:08
welcome to tex.se! you need to reduce image height for amount of caption (~ 3`baselineskip`).
– Zarko
Apr 20 at 11:44
welcome to tex.se! you need to reduce image height for amount of caption (~ 3`baselineskip`).
– Zarko
Apr 20 at 11:44
See also tex.stackexchange.com/questions/449301/…
– John Kormylo
Apr 20 at 15:08
See also tex.stackexchange.com/questions/449301/…
– John Kormylo
Apr 20 at 15:08
add a comment |
1 Answer
1
active
oldest
votes
as mentioned in my comments:
documentclassarticle
usepackage[demo]graphicx
%---------------- show page layout. don't use in a real document!
usepackageshowframe
renewcommandShowFrameLinethickness0.15pt
renewcommand*ShowFrameColorcolorred
%---------------------------------------------------------------%
begindocument
beginfigure[htbp]
centering
includegraphics[height=dimexprtextheight-3baselineskip, % <---
width=textwidth,
keepaspectio]%
similar_waveforms_filtered_and_cut_new
captionSeiemic traces for events studied in this project with picks made at station DE02 - the closest station to the locations determined.
labelsimilar_waveforms
endfigure
enddocument
Thank you so much! have a great day!
– H B
Apr 20 at 11:49
Dear @HB, if answer solve your problem, you can accept it (by clicking on check mark at top left side of the answer ;-)
– Zarko
Apr 20 at 11:52
I think it would be a good idea to add akeepaspectio
option toincludegraphics
. While it doesn't make a difference for the black rectangle that's used in your answer, it's probably a good thing to have in general.
– Mico
Apr 20 at 12:20
@Mico, you are right. corrected.
– Zarko
Apr 20 at 12:56
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "85"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
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%2f485730%2ffit-vertically-portrayed-image-with-the-caption-displayed-below%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
as mentioned in my comments:
documentclassarticle
usepackage[demo]graphicx
%---------------- show page layout. don't use in a real document!
usepackageshowframe
renewcommandShowFrameLinethickness0.15pt
renewcommand*ShowFrameColorcolorred
%---------------------------------------------------------------%
begindocument
beginfigure[htbp]
centering
includegraphics[height=dimexprtextheight-3baselineskip, % <---
width=textwidth,
keepaspectio]%
similar_waveforms_filtered_and_cut_new
captionSeiemic traces for events studied in this project with picks made at station DE02 - the closest station to the locations determined.
labelsimilar_waveforms
endfigure
enddocument
Thank you so much! have a great day!
– H B
Apr 20 at 11:49
Dear @HB, if answer solve your problem, you can accept it (by clicking on check mark at top left side of the answer ;-)
– Zarko
Apr 20 at 11:52
I think it would be a good idea to add akeepaspectio
option toincludegraphics
. While it doesn't make a difference for the black rectangle that's used in your answer, it's probably a good thing to have in general.
– Mico
Apr 20 at 12:20
@Mico, you are right. corrected.
– Zarko
Apr 20 at 12:56
add a comment |
as mentioned in my comments:
documentclassarticle
usepackage[demo]graphicx
%---------------- show page layout. don't use in a real document!
usepackageshowframe
renewcommandShowFrameLinethickness0.15pt
renewcommand*ShowFrameColorcolorred
%---------------------------------------------------------------%
begindocument
beginfigure[htbp]
centering
includegraphics[height=dimexprtextheight-3baselineskip, % <---
width=textwidth,
keepaspectio]%
similar_waveforms_filtered_and_cut_new
captionSeiemic traces for events studied in this project with picks made at station DE02 - the closest station to the locations determined.
labelsimilar_waveforms
endfigure
enddocument
Thank you so much! have a great day!
– H B
Apr 20 at 11:49
Dear @HB, if answer solve your problem, you can accept it (by clicking on check mark at top left side of the answer ;-)
– Zarko
Apr 20 at 11:52
I think it would be a good idea to add akeepaspectio
option toincludegraphics
. While it doesn't make a difference for the black rectangle that's used in your answer, it's probably a good thing to have in general.
– Mico
Apr 20 at 12:20
@Mico, you are right. corrected.
– Zarko
Apr 20 at 12:56
add a comment |
as mentioned in my comments:
documentclassarticle
usepackage[demo]graphicx
%---------------- show page layout. don't use in a real document!
usepackageshowframe
renewcommandShowFrameLinethickness0.15pt
renewcommand*ShowFrameColorcolorred
%---------------------------------------------------------------%
begindocument
beginfigure[htbp]
centering
includegraphics[height=dimexprtextheight-3baselineskip, % <---
width=textwidth,
keepaspectio]%
similar_waveforms_filtered_and_cut_new
captionSeiemic traces for events studied in this project with picks made at station DE02 - the closest station to the locations determined.
labelsimilar_waveforms
endfigure
enddocument
as mentioned in my comments:
documentclassarticle
usepackage[demo]graphicx
%---------------- show page layout. don't use in a real document!
usepackageshowframe
renewcommandShowFrameLinethickness0.15pt
renewcommand*ShowFrameColorcolorred
%---------------------------------------------------------------%
begindocument
beginfigure[htbp]
centering
includegraphics[height=dimexprtextheight-3baselineskip, % <---
width=textwidth,
keepaspectio]%
similar_waveforms_filtered_and_cut_new
captionSeiemic traces for events studied in this project with picks made at station DE02 - the closest station to the locations determined.
labelsimilar_waveforms
endfigure
enddocument
edited Apr 20 at 12:58
answered Apr 20 at 11:46
ZarkoZarko
131k870170
131k870170
Thank you so much! have a great day!
– H B
Apr 20 at 11:49
Dear @HB, if answer solve your problem, you can accept it (by clicking on check mark at top left side of the answer ;-)
– Zarko
Apr 20 at 11:52
I think it would be a good idea to add akeepaspectio
option toincludegraphics
. While it doesn't make a difference for the black rectangle that's used in your answer, it's probably a good thing to have in general.
– Mico
Apr 20 at 12:20
@Mico, you are right. corrected.
– Zarko
Apr 20 at 12:56
add a comment |
Thank you so much! have a great day!
– H B
Apr 20 at 11:49
Dear @HB, if answer solve your problem, you can accept it (by clicking on check mark at top left side of the answer ;-)
– Zarko
Apr 20 at 11:52
I think it would be a good idea to add akeepaspectio
option toincludegraphics
. While it doesn't make a difference for the black rectangle that's used in your answer, it's probably a good thing to have in general.
– Mico
Apr 20 at 12:20
@Mico, you are right. corrected.
– Zarko
Apr 20 at 12:56
Thank you so much! have a great day!
– H B
Apr 20 at 11:49
Thank you so much! have a great day!
– H B
Apr 20 at 11:49
Dear @HB, if answer solve your problem, you can accept it (by clicking on check mark at top left side of the answer ;-)
– Zarko
Apr 20 at 11:52
Dear @HB, if answer solve your problem, you can accept it (by clicking on check mark at top left side of the answer ;-)
– Zarko
Apr 20 at 11:52
I think it would be a good idea to add a
keepaspectio
option to includegraphics
. While it doesn't make a difference for the black rectangle that's used in your answer, it's probably a good thing to have in general.– Mico
Apr 20 at 12:20
I think it would be a good idea to add a
keepaspectio
option to includegraphics
. While it doesn't make a difference for the black rectangle that's used in your answer, it's probably a good thing to have in general.– Mico
Apr 20 at 12:20
@Mico, you are right. corrected.
– Zarko
Apr 20 at 12:56
@Mico, you are right. corrected.
– Zarko
Apr 20 at 12:56
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.
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%2f485730%2ffit-vertically-portrayed-image-with-the-caption-displayed-below%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
welcome to tex.se! you need to reduce image height for amount of caption (~ 3`baselineskip`).
– Zarko
Apr 20 at 11:44
See also tex.stackexchange.com/questions/449301/…
– John Kormylo
Apr 20 at 15:08