You are not logged in.
Hi,
i am writing my bachelorthesis in latex. At home i compile it with latex running archlinux and at work i compile my thesis with latex running windows (using MikTex and TeXnicCenter).
I compile my thesis with pdflatex and the pdf compiled on windows has much nicer fonts then the linux one.
I have tried different settings but the windows version looks nicer no matter what is do. Has anyone made similar experiences?
Or am I just using the wrong setting to get nice fonts in linux?
Here are the packages I use:
\documentclass[12pt,a4paper]{scrreprt}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{graphicx}
Offline
Check the logfile, at the end there should be a list of included fonts. See whether they are included as bitmap fonts (<fontname>.pk) or as postscript fonts (<fontname>.pfb). Bitmaps tend to look uglier than postscript when previewed.
If the bitmap fonts are the problem, then run 'updmap --enable Map=lm.map' and try compiling again.
Offline
You can set the font manually, also. Usually, I use \usepackage{times} .
(lambda ())
Offline
@andre.ramaciotti
Actually that's what he does with \usepackage{lmodern}
Could you be more specific with "look ugly". Because I think it is a problem of your pdf-viewer and not latex.
If it's the same viewer (acrobat for example) it could be that in linux antialiasing/subpixel hinting is not configured.
Offline
Oh, thanks. I didn't know lmodern was a font.
(lambda ())
Offline
It is generally a good idea to use it instead of the standard font since it is an improved computer modern.
Offline
thanks for all the hints. I checked the log file and latex uses the <fontname>.pfb fonts.
I view the pdf with Okular (Kde 4.2.2) and the fonts look different depending on how much I zoom in. In normal view (without zoom) the fonts look really thin (looks like certain characters like "o" have holes in them), but when I zoom in the fonts start looking better. I switched on subpixel hinting in the KDE systemsettings so I think that should work.
I will check the pdf generated by linux with the acrobat reader on windows and see if it looks better.
Offline