Text FormattingLinux Libertine

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
mrdwustl
Posts: 7
Joined: Wed Mar 31, 2010 2:56 am

Linux Libertine

Post by mrdwustl »

I am having trouble getting Linux Libertine font installed. When I run the following code

\usepackage[T1]{fontenc}
\usepackage{libertine}

the run stalls and the script displays this: "C:\Program Files (x86)\MiKTeX 2.7\tex\latex\base\fontenc.sty"

Do you know what code I could run to properly install this font? Thanks in advance.

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

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

Re: Linux Libertine

Post by frabjous »

Your method should have worked, as far as I know. The description of the error is not very informative. Can you attach the resulting log file here?
mrdwustl
Posts: 7
Joined: Wed Mar 31, 2010 2:56 am

Linux Libertine

Post by mrdwustl »

Hi -

Thanks for the quick reply. I restarted my computer and that seems to have taken care of the error in building the file. But when I try to build with Linux Libertine, I get the following error in the output script

"PK font fxlr-84 could not be created"

and this prevents the file from being built.

Here is my code:

Code: Select all

\documentclass[11pt]{article}

\usepackage[top=0.5in, bottom=1in, right=0.75in, left=0.75in]{geometry}
\usepackage{hyperref}
\usepackage{geometry}
\usepackage[T1]{fontenc}
\usepackage{libertine}
\usepackage{multicol}
\usepackage{tabulary}
\usepackage{multirow}
\usepackage{longtable}
\usepackage{hyperref}

\usepackage{hanging} 
\usepackage{datetime}
\renewcommand{\dateseparator}{-}
\newdateformat{isodate}{%
\THEDAY ~\monthname{\month}~ \THEYEAR}

%\usepackage[sc]{mathpazo}
\geometry{
  body={7in, 9.5in},
  left=.75in,
  top=.75in,
  right=2.15in
}
\usepackage{sectsty}



\begin{document}

\begin{center}
Last updated: \isodate\today
\end{center}

\end{document}
thanks.
Post Reply