Learn How to Easily Insert Images on LaTeX | Helpful Tips and Tricks

  • Context: LaTeX 
  • Thread starter Thread starter Juggler123
  • Start date Start date
  • Tags Tags
    Images Latex
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
12 replies · 6K views
Juggler123
Messages
80
Reaction score
0
Hi,
I know this isn't a general math problem but I didn't really know where else to post.
I'm trying to insert an image into a text I'm wrtting on LaTeX, the file is saved in .gif format in My Documents. I've read a little on the web about how I should insert the image into my text but I can't really make sense of it! Any help would be really great.
Thanks.
 
Physics news on Phys.org
First off, you are going to need to convert that .gif file into a form that your LaTeX engine understands: .pdf, .png, or .jpg (assuming you are using pdflatex as your engine). Copy the converted file to your document directory, aka folder. (You can also place it in subdirectory of your document directory.) I'm going to assume you named it imagefile.png. Substitute accordingly for your file name. Add a \usepackage{graphicx} directive to the header of your .tex file and a \includegraphics{imagefile} in the appropriate place of the body of your .tex file, and voila! there is your image in your pdf file.

It is almost certainly better to make your graphics figures (floats). Read up on how to place figures in your LaTeX file.
 
Got another problem now,
I'm trying to type a double integral into my work but it keeps coming up with an error message.

\begin{equation}
M(x)=\iint y\cdot\sigma(x,y) dy dz
\end{equation}

To me this looks right!? I don't understand what is going wrong.
Any help would be great!
 
Tried that but I keep getting the same error message...
 
cdot is a legit command and perhaps what the OP wants. It works on this board:

[tex]\begin{equation}<br /> M(x)=\iint y\cdot\sigma(x,y) dy dz<br /> \end{equation}[/tex]

On this board maybe he forgot the tex tags.
 
Thank you for this thread, I have been wanting do just this for some while.

:cool:
 
LCKurtz; that's exactly what I want but even when I copy and paste the formula into my work it still comes up with this error meassge;

[2]
! Undefined control sequence.
l.80 M(x)=\iint
y\cdot\sigma(x,y) dy dz
?

This is starting to get annoying now! I just can't figure it out...
 
Juggler123 said:
Got another problem now,
I'm trying to type a double integral into my work but it keeps coming up with an error message.

\begin{equation}
M(x)=\iint y\cdot\sigma(x,y) dy dz
\end{equation}

To me this looks right!? I don't understand what is going wrong.
Any help would be great!
After surrounding the corrected equation with tex tags, here's how it looks:
[tex]\begin{equation}<br /> M(x)=\iint y \cdot \sigma(x,y) dy dz<br /> \end{equation}[/tex]

Edit: Didn't realize that I was restating what LCKurtz already said.
 
Last edited: