Difference between revisions of "LaTeX:Pictures"

 
(How to Incorporate Pictures)
Line 4: Line 4:
  
 
==How to Incorporate Pictures==
 
==How to Incorporate Pictures==
Consult the [[Asymptote:About|Asymptote]] article for producing geometric diagrams within LaTeX. Otherwise, if you are using LaTeX to produce PDF documents, you can images such as geometric diagrams in your documents. The machine that we'll use to include images is the graphicx package.
+
Consult the [[Asymptote: About|Asymptote]] article for producing geometric diagrams within LaTeX. Otherwise, if you are using LaTeX to produce PDF documents, you can images such as geometric diagrams in your documents. The machine that we'll use to include images is the graphicx package.
  
 
To walk through this example, first download a sample image by [http://www.artofproblemsolving.com/LaTeX/Samples/image1.png clicking here] to open the image, then saving it to your own computer. (Alternatively, depending on your browser, you may be able to right-click on the link to the image and choose "Save link as...") Save the image with the name 'myimage.png'. Make sure you pay attention to what folder you are saving the image to.
 
To walk through this example, first download a sample image by [http://www.artofproblemsolving.com/LaTeX/Samples/image1.png clicking here] to open the image, then saving it to your own computer. (Alternatively, depending on your browser, you may be able to right-click on the link to the image and choose "Save link as...") Save the image with the name 'myimage.png'. Make sure you pay attention to what folder you are saving the image to.
Line 34: Line 34:
 
\includegraphics{myimage.png}
 
\includegraphics{myimage.png}
 
</pre>
 
</pre>
 
 
 
  
 
==See Also==
 
==See Also==
 
*[[LaTeX:Layouts | Next: Layouts]]
 
*[[LaTeX:Layouts | Next: Layouts]]
 
*[[LaTeX:Exampless | Previous: Examples]]
 
*[[LaTeX:Exampless | Previous: Examples]]

Revision as of 20:13, 10 July 2007

LaTeX
About - Getting Started - Diagrams - Symbols - Downloads - Basics - Math - Examples - Pictures - Layout - Commands - Packages - Help

This article will cover incorporating pictures and diagrams into LaTeX documents. If you're dealing strictly with geometric diagrams, consider reading about Asymptote, a graphics language that works extremely well with LaTeX.

How to Incorporate Pictures

Consult the Asymptote article for producing geometric diagrams within LaTeX. Otherwise, if you are using LaTeX to produce PDF documents, you can images such as geometric diagrams in your documents. The machine that we'll use to include images is the graphicx package.

To walk through this example, first download a sample image by clicking here to open the image, then saving it to your own computer. (Alternatively, depending on your browser, you may be able to right-click on the link to the image and choose "Save link as...") Save the image with the name 'myimage.png'. Make sure you pay attention to what folder you are saving the image to.

Next, open a new LaTeX source file in TeXnicCenter and input the following:

\documentclass{article}
\usepackage[pdftex]{graphicx}
\begin{document}

This is my first image.

\includegraphics{myimage.png}

That's a cool picture up above.
\end{document}

Save your source file in the same folder as you saved myimage.png. (Very important - if you save it in a different folder, you will get an error!)

Compile your source code and view the result. Make sure you have TeXnicCenter set up to produce PDF documents (LaTeX => PDF in the appropriate drop-menu). If you don't, you'll get a bunch of errors. If you followed all the steps correctly, you should get a file that looks a lot like what you'll see when you click here.

Let's take a closer look at how this code works. First, notice the new line

\usepackage[pdftex]{graphicx}

This line includes the package graphicx, which contains all the image-handling routines you need to include images. To include a specific image, we use the statement:

\includegraphics{myimage.png}

See Also