Fonts & Character SetsInstalling a font

Information and discussion about fonts and character sets (e.g. how to use language specific characters)
bertibott
Posts: 14
Joined: Wed Dec 12, 2018 3:32 pm

Installing a font

Post by bertibott »

Hi, so I have been trying to create a new environment.
For said environemnt I would like to use a special font. (This one: http://www.tug.dk/FontCatalogue/janaskrivana/)

Evn though the descirption said it was part of TexLive when I try to use it I get an error message.

Code: Select all

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

\newtcolorbox{mybox}{enhanced, interior style tile={width=15cm}{parchment.png}, 
font = \Fontskrivan}
Errormessage:

Code: Select all

File 'aurical.sty' not found.
So..... I figured that the package is just not installed... And so far I have not been able to find out how to install a package...
What do I need to do?

Recommended reading 2024:

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

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

User avatar
Stefan Kottwitz
Site Admin
Posts: 10319
Joined: Mon Mar 10, 2008 9:44 pm

Installing a font

Post by Stefan Kottwitz »

Hi!

Which TeX installation do you use? TeX Live, MiKTeX, MacTeX, or a Linux version?

Stefan
LaTeX.org admin
bertibott
Posts: 14
Joined: Wed Dec 12, 2018 3:32 pm

Installing a font

Post by bertibott »

I am using TexLive 2018 on a Linux machine.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10319
Joined: Mon Mar 10, 2008 9:44 pm

Installing a font

Post by Stefan Kottwitz »

So you can use the TeX Live manager (tlmgr) and install the package with the name aurical.

Stefan
LaTeX.org admin
bertibott
Posts: 14
Joined: Wed Dec 12, 2018 3:32 pm

Installing a font

Post by bertibott »

mhmh... I tried that but it comes back with an error...

Code: Select all

sudo tlmgr install aurical
[sudo] password for bertibott: 
(running on Debian, switching to user mode!)
Cannot determine type of tlpdb from /home/bertibott/texmf!
cannot setup TLPDB in /home/bertibott/texmf at /usr/bin/tlmgr line 6424.
I don't really know what that means... but I am very sure that the path /home/bertibott/texmf doas not exist.
What is a TLPDB?
User avatar
Stefan Kottwitz
Site Admin
Posts: 10319
Joined: Mon Mar 10, 2008 9:44 pm

Installing a font

Post by Stefan Kottwitz »

TLPDB sounds like TeX Live Package Database.

Did you install vanilla TeX Live, so from a DVD or over the Internet, or did you use Debian or Ubuntu repositories for installing TeX Live?

Stefan
LaTeX.org admin
bertibott
Posts: 14
Joined: Wed Dec 12, 2018 3:32 pm

Installing a font

Post by bertibott »

I installed "manually" using this guide: https://www.tug.org/texlive/quickinstall.html

Basically I ran the installer:

Code: Select all

sudo ./install-tl
And then set the PATH-thingy:

Code: Select all

PATH=/usr/local/texlive/2018/bin/x86_64-linux:$PATH

The OS I am using Kubuntu 18.04
User avatar
Stefan Kottwitz
Site Admin
Posts: 10319
Joined: Mon Mar 10, 2008 9:44 pm

Installing a font

Post by Stefan Kottwitz »

Initialize the TeX Live user tree, at the command line by:

tlmgr init-usertree

Stefan
LaTeX.org admin
bertibott
Posts: 14
Joined: Wed Dec 12, 2018 3:32 pm

Installing a font

Post by bertibott »

that gives me this:

Code: Select all

sudo tlmgr init-usertree
[sudo] password for bertibott: 
(running on Debian, switching to user mode!)
/usr/bin/tlmgr: Initialization failed (in setup_unix_one):
/usr/bin/tlmgr: could not find a usable xzdec.
/usr/bin/tlmgr: Please install xzdec and try again.
tlmgr: Couldn't set up the necessary programs.
Installation of packages is not supported.
Please report to texlive@tug.org.
tlmgr: user mode database already set up in
tlmgr:   /home/bertibott/texmf/tlpkg/texlive.tlpdb
tlmgr: not overwriting it.
do I need to run this in a specific directory?
how do I install xzdec? And what is that?
User avatar
Stefan Kottwitz
Site Admin
Posts: 10319
Joined: Mon Mar 10, 2008 9:44 pm

Installing a font

Post by Stefan Kottwitz »

xz is a compression format, and xzdec is a tool for decoding it. You need to install it on your Kubuntu system:

sudo apt-get install xzdec

Stefan
LaTeX.org admin
Post Reply