Text Formatting ⇒ Linux Libertine
Linux Libertine
\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.
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
Re: Linux Libertine
Linux Libertine
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}