3

I have format Finnish.fmt it works on TeX like:

tex --fmt=Finnish letter.tex

On pdftex i get:

pdftex --fmt=Finnish letter.tex

error:
---! Finnish.fmt was written by tex
(Fatal format file error; I'm stymied)

what can be the challenge? can this be remedied.

I am running linux on 64 bit debian

2 Answers2

2

Format files are binary memory dumps that are closely tied to the engine they have been created with, so you would need a format file created by pdftex. But I strongly suggest that you don't import some binary blob from somewhere on the internet but instead create it yourself.

2

pdftex format needs to be done with pdftex, like David Carlisle suggested in his comment:

you need to make a pdffinish.fmt with something like pdftex --ini --jobname=pdffinish Finish then specify pdffinish as your format

This resolved my problem.

Jan
  • 5,293