Tell me more ×
TeX - LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.

I'm trying to follow the guide found here:

http://maketecheasier.com/make-a-pretty-resume-with-latex-the-easy-way/2013/01/15

and just having terrible luck. I'm sure this is an easy problem to solve, but I can't find anything that seems to help. I've been getting this error message :

kpathsea: Invalid fontname `Linux Libertine', contains ' '

For a long time, and I cannot figure out how to resolve it. I've downloaded Linux Libertine both using aptitude and using the tarball found on their site and moving the files into the ~/.texmf-var directory.

Any ideas on how to fix this?

share|improve this question
1  
Welcome to TeX.sx! Please provide a Minimal Working Example (MWE) that clearly shows your problem. This should start with \documentclass and end with \end{document}. – Peter Jansson Feb 6 at 6:49

closed as too localized by egreg, Thorsten, Kurt, barbara beeton, zeroth Apr 7 at 12:51

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

It's difficult to know without seeing your MWE, but this is a possible using LaTeX which already has the ability to use Linux Libertine. Many other fonts to be used with straight LaTeX (or pdfLaTeX) can be found at The LaTeX Font Catalogue. Often it's easier to use LaTeX if possible, and then go to XeLaTeX when you need it.

\documentclass{article}
\usepackage{blindtext}

%% Use these instead of fontspec commands
\usepackage{libertine}
\usepackage[T1]{fontenc}

\begin{document}
\blinddocument
\end{document}

linux libertine with a sample document

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.