Graphics, Figures & TablesHow do I include graphics on DVI LaTeX?

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
Gussied
Posts: 1
Joined: Mon May 20, 2024 7:17 am

How do I include graphics on DVI LaTeX?

Post by Gussied »

I've got \usepackage[dvipdfmX]{graphicx} \usepackage{bmpsize} \graphicspath{{./Images/}} in my preamble and \includegraphics{picture.jpg} where I want my image but it's not working. Does anyone know why? Thanks!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

coachbennett1981
Posts: 274
Joined: Fri Feb 05, 2010 10:15 pm

How do I include graphics on DVI LaTeX?

Post by coachbennett1981 »

Thank you for the post. Without a minimal working example, this can be hard to diagnose. My guess is that you have the wrong path name for where your figure is. Make sure the figure is in the same location as your tex file.

For example, if I have a tex file under my documents folder and so is my image, the code would look similar to this:

Code: Select all

\includegraphics{/Users/NBennett/Documents/image.png}

On a third party site, Overleaf there is some helpful information.

https://www.overleaf.com/learn/latex/Inserting_Images

Hopefully this helps.
Post Reply