Miktex: Wrong DVI mode driver option `dvips'
I'm using MikTeX 2.9 on Windows 7, and when I want to create my pdf file I get:
! Package hyperref Error: Wrong DVI mode driver option `dvips',
(hyperref) because pdfTeX or LuaTeX is running in PDF mode.
How can I fix this?
It sounds like you've asked the hyperref
package to work in dvips
-mode, but are trying to compile it through pdfTeX
.
My guess would be you either:
-
Have set the option
dvips
in your\documentclass
. An example of this would be:\documentclass[dvips]{article}
-
Have set the option
dvips
in your\usepackage
forhyperref
. An example of this would be:\usepackage[dvips]{hyperref}
If you're doing either of those two things, you're actively telling the package that you're using dvips
, which you're not, so it's failing.
You should be able to resolve the problem by either:
- Removing
dvips
from the options list. - Replacing
dvips
withpdftex
.
If none of these options are set, try setting the pdftex
option on your \usepackage{hyperref}
.
In my case, I just had to use a decent TeX Editor, as WinEdit.
I run texify
to create a .dvi
file and then dvi2pdf
.