LyX ⇒ Q2: PDF generation: bitmapped fonts???
Q2: PDF generation: bitmapped fonts???
But what is appalling is that the text in pdf documents seems to be bitmapped! Zooming in, you can see the squares! The characters are decomposed into black and white squares!!
How can I fix this?
Thanks!
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
Re: Q2: PDF generation: bitmapped fonts???

- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Q2: PDF generation: bitmapped fonts???
because you didn't mention certain fonts I assume you are using the standard fonts, Computer Modern. Those fonts have OT1 font encoding. If T1 font encoding is used by your document the CM fonts would be replaced. In that case I recommend to install the cm-super package, it contains T1 encoded Computer Modern fonts and should be used automatically by LyX.
Stefan
Re: Q2: PDF generation: bitmapped fonts???
http://www.mail-archive.com/lyx-users@l ... 08273.html
There are some methods there that involve hacking the source code of some installed programs and one that didnt: putting "\usepackage{ae,aecompl}" in the preamble fixed the bitmapping problem. Don't know what this did exactly but I'll looking into choosing the right font later.
It's pretty appaling for any program to use bitmapped fonts, let a lone a typesetting program.
Anyway, problem has mostly gone away for the moment.
Thanks for the advice.
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Q2: PDF generation: bitmapped fonts???
\usepackage{ae,aecompl} is a solution, it's fine if it's enough for you. I would not use those packages, because they're just emulating T1 encoding. If I used characters like ä, ü, ö in the text, they can't be copied by copy&paste, further the pdf search feature would not find words containing those and some other letters.
My preferred solution is to use T1 encoded fonts. For instance Latin Modern has been derived from Computer Modern fonts, looks very similar and has a high quality. To use them just add
Code: Select all
\usepackage{lmodern}
If one really wants to use the Standard Computer Modern fonts, one could install cm-super, no need for further packages like ae and acompl then, and no need to change the LyX preamble.
The solution found by you is dated 2000. cm-super and lmodern were'nt even mentioned there. Of course you can also use ae and aecompl if it already suits your needs.
Stefan
Re: Q2: PDF generation: bitmapped fonts???
Q2: PDF generation: bitmapped fonts???
In LyX changing the font is a lot easier. Go to LyX -> Document -> Settings -> Fonts and have funStefan_K wrote:My preferred solution is to use T1 encoded fonts. For instance Latin Modern has been derived from Computer Modern fonts, looks very similar and has a high quality. To use them just addin the preamble, instead of \usepackage{ae,aecompl}.Code: Select all
\usepackage{lmodern}

