Miktex: Wrong DVI mode driver option `dvips'

15,481

Solution 1

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 for hyperref. 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 with pdftex.

If none of these options are set, try setting the pdftex option on your \usepackage{hyperref}.

Solution 2

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.

Share:
15,481

Related videos on Youtube

Sebastian Paaske Tørholm
Author by

Sebastian Paaske Tørholm

Updated on September 17, 2022

Comments

  • Sebastian Paaske Tørholm
    Sebastian Paaske Tørholm almost 2 years

    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?

  • Herman Jaramillo
    Herman Jaramillo almost 3 years
    I tried all you said and nothing worked. Keep getting the same error message. However my problem is a bit different: Here is the error message (am using texilve 2021) !Package hyperref Error: Wrong DVI driver option 'ps2pdf' because pdfTeX or LuaTeX is running in PDF mode. Any ideas? Thanks.