[Tex/LaTex] LaTeX Error: Unknown graphics extension: .ps

graphicspdftexps

When I try to compile this file http://danjer.doudouke.org/_media/tech/dokutexit/playground.zip this error occurs:

! LaTeX Error: Unknown graphics extension: .ps.

I'm using TeXworks Version 0.4.3 (MiKTeX 2.9) and pdfLaTeX.

Best Answer

  1. You could compile with pdfLaTeX, if you add the line

    \usepackage{auto-pst-pdf}
    

    for automatic conversion of the PS images to PDF. It requires the option --enable-write18 set. Check the TeXworks preferences, Typesetting, Processing tools, pdfLaTeX:

    pdfLaTeX arguments

  2. You can compile it with XeLaTeX, which is directly supported by TeXworks. You can choose XeLaTeX in the drop-down menu.

    For compiling with XeLaTeX, remove these two lines from the preamble, as XeLaTeX natively supports UTF-8:

    \usepackage{ucs}
    \usepackage[utf8x]{inputenc}
    
  3. Use LaTeX in DVI-mode, and convert as needed, using dvips and ps2pdf, or dvipdfm(x). You can call latex at the command prompt, or define a new tool for TeXworks in the preferences:

    TeXworks tools

Related Question