MiKTeX and proTeXtpalatino pdf

Information and discussion about MikTeX distribution for Windows and the related proTeXt: Installing, updating, configuring
Post Reply
Romae
Posts: 2
Joined: Wed Jun 23, 2010 7:55 pm

palatino pdf

Post by Romae »

I have written a book and the printer demands a pdf/X-3 which should be possible with the Acrobate distiller. But it doesn't work, the distiller gives the message:
%%[ Error: Palatino-Roman not found. Font cannot be embedded. ]%%
%%[ Error: invalidfont; OffendingCommand: findfont ]%%.
Im using paltino:
Example:

Code: Select all

\documentclass[11pt,a4paper]{article}
\usepackage{t1enc}
\usepackage[latin1]{inputenc}
\usepackage[german]{babel}
\usepackage{graphicx}
\pagestyle{plain}
\usepackage{amsmath}
\usepackage{a4wide}
%\usepackage{pst-all}
%\usepackage{multido}
\renewcommand{\rmdefault}{pplx}
\usepackage[euler-digits]{eulervm}
\linespread{1.08}           
\begin{document}
\section*{Example}
This is just an example 
$$\int^{b}_{a}\frac{x^2-2x}{b^x}dx$$
\end{document}
If I omit the line \renewcommand{\rmdefault}{pplx} and use the standard cm, then it works, but I prefere Palatino. What can I do? I'm using MikTex2.7 and TexnicCenter.
Romae

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

palatino pdf

Post by frabjous »

I don't have access to Acrobat Distiller right now, but have you tried creating the PDF/X-3 with Ghostscript? Instructions here. It is possible you only have the URW Palladio Palatino clone installed, but I think Ghostscript would be smart enough to see past this, even if Acrobat doesn't, since it is one of the required fonts that comes with Ghostscript.

It also strikes me as a little odd that you load the Euler fonts with a package, but manually load Palatino for the Roman family, rather than using one of the packages that provides Palatino, like mathpazo or pxfonts. You could also try the tgpagella package, which provides TeX Gyre Pagella fonts. (These are almost indistinguishable from Palatino, but slightly extended.)

You should also try changing \usepackage{t1enc} to \usepackage[T1]{fontenc}, since the former is obsolete.
Romae
Posts: 2
Joined: Wed Jun 23, 2010 7:55 pm

palatino pdf

Post by Romae »

With the package tgpagello everything works perfect, adobe distiller embeds all fonts!
I like the combination of palatino together with Euler for the formulas, for me, from an aesthetical point of view, it's the best choice, but "degustibus non est disputandum".
frabjous wrote:I don't have access to Acrobat Distiller right now, but have you tried creating the PDF/X-3 with Ghostscript? Instructions here. It is possible you only have the URW Palladio Palatino clone installed, but I think Ghostscript would be smart enough to see past this, even if Acrobat doesn't, since it is one of the required fonts that comes with Ghostscript.

It also strikes me as a little odd that you load the Euler fonts with a package, but manually load Palatino for the Roman family, rather than using one of the packages that provides Palatino, like mathpazo or pxfonts. You could also try the tgpagella package, which provides TeX Gyre Pagella fonts. (These are almost indistinguishable from Palatino, but slightly extended.)

You should also try changing \usepackage{t1enc} to \usepackage[T1]{fontenc}, since the former is obsolete.
Post Reply