Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

install language in texlive - hyphenation

Tags:

latex

I am a latex beginner so forgive this basic question: How do I activate danish hyphenation in latex?

Output from the latest file below:

thanks in advance

This is pdfTeXk, Version 3.141592-1.40.3 (Web2C 7.5.6) %&-line parsing enabled. entering extended mode (./rks_prognose_metode.tex LaTeX2e <2005/12/01> Babel and hyphenation patterns for english, usenglishmax, dumylang, noh yphenation, loaded. (/usr/share/texmf-texlive/tex/latex/base/article.cls Document Class: article 2005/09/16 v1.4f Standard LaTeX document class (/usr/share/texmf-texlive/tex/latex/base/size10.clo)) (/usr/share/texmf-texlive/tex/generic/babel/babel.sty (/usr/share/texmf-texlive/tex/generic/babel/danish.ldf (/usr/share/texmf-texlive/tex/generic/babel/babel.def)

Package babel Warning: No hyphenation patterns were loaded for (babel)
the language `Danish' (babel)
I will use the patterns loaded for \language=0 instead.

like image 562
Andreas Avatar asked Oct 12 '09 07:10

Andreas


2 Answers

You could try the following (tested on Ubuntu 9.04)

sudo apt-get install texlive-lang-european
sudo texhash
sudo fmtutil --all 
like image 188
rcs Avatar answered Sep 20 '22 15:09

rcs


Could you post the relevant code?

This piece of latex should work:

\usepackage[danish]{babel}

If not, there is a problem with you installation.

like image 22
Sebastian Avatar answered Sep 18 '22 15:09

Sebastian