Help in LaTeX- Continuing text after embedding a picture

  • Context: LaTeX 
  • Thread starter Thread starter opus
  • Start date Start date
  • Tags Tags
    Latex Picture Text
Click For Summary

Discussion Overview

The discussion revolves around issues related to embedding images in LaTeX documents, specifically the placement of text following an embedded image. Participants explore various commands and techniques to control image positioning within the document.

Discussion Character

  • Technical explanation
  • Debate/contested
  • Exploratory

Main Points Raised

  • One participant notes that text continues to appear before the image despite placing it after the \end{figure} command.
  • Another suggests that the image size may be too large, potentially causing it to be placed on a new page, and recommends scaling it down.
  • A participant mentions trying various commands from an online resource to control image placement, but still encounters issues.
  • Concerns are raised about the use of the [t!] command not positioning the image as expected.
  • One participant attempts to remove the center command, speculating it may affect image placement, but finds it only shifts the image to the left.
  • A later reply indicates that using the \newpage command before the image resolved their issue, but another participant criticizes this approach as it could disrupt overall document typesetting.
  • Discussion includes clarification on the intended use of the figure environment, emphasizing that it is meant for figures that are referred to in the text and can float, rather than being placed directly in the text.
  • One participant expresses gratitude for the clarification, noting concerns about potential complications in document formatting.

Areas of Agreement / Disagreement

Participants express differing views on the appropriate methods for embedding images and managing text flow around them. There is no consensus on the best approach, as some advocate for the figure environment while others suggest alternative methods.

Contextual Notes

Limitations include the lack of visibility into the entire document structure, which may affect image placement and text flow. The discussion also highlights the complexity of LaTeX typesetting and the potential for unexpected behavior based on document layout.

opus
Gold Member
Messages
717
Reaction score
131
TL;DR
LaTeX embedded pictures
As you can see in my attached picture, I am trying to continue on with my text after my embedded image, but it is putting the text still before the image. I'm not sure why it's doing this because I am writing the text after the \end{figure} command.
Any ideas?
 

Attachments

  • Screen Shot 2019-06-13 at 4.52.28 PM.png
    Screen Shot 2019-06-13 at 4.52.28 PM.png
    41.1 KB · Views: 691
Physics news on Phys.org
This is usually because the picture is too large and it requires space which is only available on the new page. Your picture isn't very detailed so you could probably scale it down to, say half the size. Maybe you also have a big white border which you first can cut.
 
  • Like
Likes   Reactions: opus
Thanks fresh. I changed the image to even a very small size and it's still doing it for some reason.
I found this resource
https://www.overleaf.com/learn/latex/Positioning_of_Figuresand have tried the commands that it has given, such as setting the image at the top of the following page etc, but it's not really doing anything. Odd...

Edit: Also trimmed the image to get rid of all excessive border whitespace.
 
For example, using the [t!] command isn't even putting the image at the top of the page as it should. And when the image size is changed, it just changes the image and has no effect on the placement.
 

Attachments

  • Screen Shot 2019-06-13 at 6.15.51 PM.png
    Screen Shot 2019-06-13 at 6.15.51 PM.png
    32.6 KB · Views: 566
Also tried to get rid of the center command as maybe it put the image directly in the center of the page, not just between left and right, but this didnt help either. Just shifted it to the left.
 
Got it. Had to use the \newpage command before embedding the image.
Thanks!
 
  • Like
Likes   Reactions: fresh_42
opus said:
Got it. Had to use the \newpage command before embedding the image.
Thanks!
This is a really bad solution as it will mess up your typesetting completely if you decide to write more text in front. The \newpage command should never be used unless you really mean to start a new page. It should certainly not be used for image placement.

You also should not be using the figure environment if you want to put a figure in the actual text for some reason. The figure environment should be used when you want a figure in your document that has a caption and is referred to in the main text through a \ref command. In other words you would write something like
Code:
bla bla bla, see Figure~\ref{fig:1}.
\begin{figure}
...
\caption{}\label{fig:1}
\end{figure}
bleh bleh bleh.
This will produce something like "bla bla bla, see Figure 1. bleh bleh bleh." with the figure being placed conveniently close by default (not on an earlier page than where you put the figure in the code, but on the same page or as soon as possible). This is the reason for writing the figure commands close to the reference.

In your case, you are not showing your entire document so we can only guess at what is going on. However, it is clear that you are making the figure on page 1, which likely has some sort of title. LaTeX is not going to put the figure on the same page as that title because where it would be put is occupied by the title. Placing the figure there would also mean moving the place where it occurs in the source to the next page, which is also not going to happen. Hence, LaTeX places your figure on the next page, regardless of whether it has text or not. When the figure is alone on a page, it is typically centered on that page, which seems to be what is going on in your case.

Note again that the figure environment produces a float (as does the table environment). These are objects that LaTeX is allowed to move around when typesetting and should be referred to in the text (they are not part of the main text!). If you want to place some image in the main text, you can just include it there, preferably in a centered environment or similar.

TLDR; You are not using the figure environment in the way it is intended. It produces a float that is allowed to move around when typesetting your document, not an object that should be placed in the main text.
 
  • Like
Likes   Reactions: opus
Oh awesome that is extremely helpful thank you @Orodruin. I was actually a little bit hesitant in adding the picture as I was thinking it was going to turn into a Microsoft Word nightmare where one small change turns the entire document into a mess. You've saved me a great head ache, thank you.
 

Similar threads

  • · Replies 3 ·
Replies
3
Views
4K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 12 ·
Replies
12
Views
3K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 12 ·
Replies
12
Views
4K
  • · Replies 3 ·
Replies
3
Views
4K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 5 ·
Replies
5
Views
5K
  • · Replies 4 ·
Replies
4
Views
3K