The following mystery/error baffles me.
OS: Windows 7
SW: MikTeX 2.9.3888, WinEdt 7.0
Problem: While running divps, the following messages appear in the console
Trying to make PK font ecbx1200 at 600 DPI...
The PK font file `C:\Users\Jyrki\AppData\Local\MiKTeX\2.9\fonts/pk/ljfour/jknappen/ec/dpi600\ecbx1200.pk` already exists.
... and a couple of lines further down:
`dvips.exe`: Font ecbx1200 not found; characters will be left blank.
This is all Greek to me, but may be somebody can suggest a fix? I don't know where this font is used, but I would guess that it is the bold text in Theorem, Lemma and such. The symptoms of this are even more baffling, because a document with the following header source
\documentclass[a4paper,12pt,leqno]{article}
\usepackage{latexsym,epsf,amsthm}
\usepackage[finnish]{babel}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage[dvips]{graphicx}
\usepackage{float}
\usepackage{psfrag}
\usepackage{hyperref}
\setlength{\oddsidemargin}{0.0in} %for thesis
\setlength{\textwidth}{6.5in} %for thesis
\setlength{\baselineskip}{18pt}
\setlength{\topmargin}{-0.25in}
\setlength{\textheight}{8.9in}
\global\baselineskip=18pt
\newtheorem{lause}{Lause}
\newtheorem{lemma}[lause]{Lemma}
\newtheorem{seuraus}[lause]{Seuraus}
\theoremstyle{definition}
\newtheorem{huomautus}[lause]{Huomautus}
\newtheorem{esimerkki}[lause]{Esimerkki}
\newtheorem{maaritelma}[lause]{Määritelmä}
\newtheorem{exer}{Harjoitustehtävä}
\newenvironment{todistus}{{\noindent \bf Todistus.}\rm}{\qed\medskip}
\newenvironment{ratkaisu}{{\noindent \bf Ratkaisu.}\rm}{\medskip}
results in a document that
divpdfrefuses to proceed with (citing missing fontecbx1200)- processing via
divpsandps2pdfgives a document, where the theorem headers (and numbers) are missing - was processed correctly on my previous laptop (older versions of both MikTeX and WinEdt running on WinXP)
BUT another document with IMHO essential identical header source
\documentclass{report}[12pt]
\usepackage{latexsym,epsf,amsthm}
\usepackage[finnish]{babel}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage[dvips]{graphicx}
\usepackage{float}
\usepackage{psfrag}
\usepackage{hyperref}
\setlength{\oddsidemargin}{0.0in} %for thesis
\setlength{\textwidth}{6.5in} %for thesis
\setlength{\baselineskip}{18pt}
\setlength{\topmargin}{-0.25in}
\setlength{\textheight}{8.9in}
\global\baselineskip=18pt
\newtheorem{lause}{Lause}[chapter]
\newtheorem{lemma}[lause]{Lemma}
\newtheorem{seuraus}[lause]{Seuraus}
\theoremstyle{definition}
\newtheorem{huomautus}[lause]{Huomautus}
\newtheorem{esimerkki}[lause]{Esimerkki}
\newtheorem{maaritelma}[lause]{Määritelmä}
\newenvironment{todistus}{{\noindent \bf Todistus.}\rm}{\qed\medskip}
\newenvironment{ratkaisu}{{\noindent \bf Ratkaisu.}\rm}{\medskip}
gives
- the same error messages
- but no characters are missing from the output after the
dvips+ps2pdfroute.
Conceivably, amsmath could use a different font here for articles and reports. That might explain the difference in behavior, but I'm more interested in getting a fix.
\usepackage{lmodern}– egreg Mar 31 '13 at 10:41äin your file without usinginputenc.sty. This is a recipe for (mild) disaster when using "vanilla" latex or pdflatex. – kahen Mar 31 '13 at 10:44