install language in texlive - hyphenation
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/art开发者_如何学JAVAicle.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.
You could try the following (tested on Ubuntu 9.04)
sudo apt-get install texlive-lang-european
sudo texhash
sudo fmtutil --all
Could you post the relevant code?
This piece of latex should work:
\usepackage[danish]{babel}
If not, there is a problem with you installation.
精彩评论