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
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
coachbennett1981
Posts: 269
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