Document Classes ⇒ Option clash for package graphicx
Option clash for package graphicx
\usepackage{graphicx}
But it appears a error message as the attached picture:
LaTex Error: option clash for package graphicx.
My report project is a new project that just add the line of " \usepackage{graphicx} " and " \includegraphics[width=\textwidth , bb= 20 20 575 575]{test.jpg}".
I compress my report project to test1.zip include all files.
Please somebody could download it and help me to solve this problem.
- Attachments
-
- Test1.rar
- Test1 is my new report project and add two line commands
- (53.49 KiB) Downloaded 737 times
-
- \usepackage{graphicx}
- latex usepage graphicx.JPG (8.51 KiB) Viewed 64136 times
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
Option clash for package graphicx
B.A.
Option clash for package graphicx
Code: Select all
\ifpdf %%Einbindung von Grafiken mittels \includegraphics{datei}
\usepackage[pdftex]{graphicx} %%Grafiken in pdfLaTeX
\else
\usepackage[dvips]{graphicx} %%Grafiken und normales LaTeX
\fi
Code: Select all
\newif\ifpdf
\ifx\pdfoutput\undefined
\pdffalse %%normales LaTeX wird ausgef¸hrt
\else
\pdfoutput=1
\pdftrue %%pdfLaTeX wird ausgef¸hrt
\fi
Code: Select all
\usepackage{ifpdf}
Option clash for package graphicx
I remove the line of " \usepackage{graphicx} ", then no error appears.