Graphics, Figures & Tables ⇒ figure cannot be found even with graphicspath
figure cannot be found even with graphicspath
ps.
do i have to write the whole path even if its in the same folder?
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
figure cannot be found even with graphicspath
Code: Select all
\includegraphics{subdir/filename}
Best regards
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
figure cannot be found even with graphicspath
this is how my document starts
Code: Select all
\documentclass[a4paper,10pt]{article}
\usepackage{graphicx}
\usepackage{amssymb,amsmath}
\numberwithin{equation}{section}
\graphicspath{{C:/Users/Pazmush/Desktop/Latex files/Lab Report/pics}}
Code: Select all
\begin{figure}[tbp]
\centering
\includegraphics[width=1.00\textwidth]{transient}
\end{figure}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Re: Figures
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Figures
ummmmmmm, how do i get that to you?
sorry, i got it
- Attachments
-
- LabReport.log
- (8.35 KiB) Downloaded 273 times
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
figure cannot be found even with graphicspath
You can upload files to the server as attachment to your post in the section "Upload attachment" right below the input window. To make sure the server accepts the file, simply put it into a ZIP archive.pazmush wrote:[...] how do i get that to you?
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Figures
does my package no longer support .eps files?
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
figure cannot be found even with graphicspath
I edited your last post and put the log file as attachment to prevent mouse wheels from early death. The log file says that you are compiling with pdflatex. You now say that you try to insert EPS files. That doesn't work because pdflatex only accepts the formats JPG, PDF and PNG for external graphics files. I suggest to convert your EPS files to PDF with the command line tool epstopdf or "on the fly" with the epstopdf package. You will need Ghostscript installed.pazmush wrote:decided to use the old copy and paste technique
does my package no longer support .eps files?
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Figures
\usepackage{epstopdf}
and everything will be cool?
or do i have to define thos other things eg.
\DeclareGraphicsExtensions?????
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
figure cannot be found even with graphicspath
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10