« March 2010 »
M T W T F S S
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31        

This is hot

Upgrade VIA Epia-Board to current 2.6.28.7
100 times viewed
23.02.2009 18:41
t3blog Update to version 0.8.1 (Security, Bugfixes)
54 times viewed
03.02.2010 14:33
LaTeX Font Selection
24 times viewed
29.01.2010 17:17
linux.bigga.de now with RSS Feed
21 times viewed
25.11.2009 09:36

[blog...]

Currently the posts are filtered by: latex
Reset this filter to see all posts.

29.01.2010
17:17

LaTeX Font Selection

Recently I redesigned my default letter template in latex. I use the scrlttr2 package from the koma-script suite. In some .lco-file you may adjust a lot of settings.

But how to change the default font? And which fonts exist by the way?

First of all, I installed the texlive extra fonts:

 

apt-get install texlive-fonts-extra

 

In your document you select now the fontpackage if there is one. E.g.

 

\usepackage{charter}

 

And/Or you change the default font family:

\renewcommand{\familydefault}{bch}

 

Sometimes you have to do both. But who wants to read the manual for every font. Only to see, that this font is absolut awful...

 

The FontCatalogue on www.tug.dk helps you very much with the selection. You see for every font the syntax to include it and some text written with it. Perfect! Have a look at:

 

http://www.tug.dk/FontCatalogue/

 

 

 

back

11.05.2009
10:18

LaTeX hyphenation with babel package

I recently wrote a German paper with kile and LaTeX.

 

In the header, I included the folowing line:

 

\usepackage[ngerman] {babel} 

 

But the hyphenation didn't work (or at least: it worked but made the hyphen elsewhere) and there came always one warning:


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

 

Problem solved: The tetex-extra package was missing or maybe texlive-lang-german would have been sufficiant.

 

apt-get install tetex-extra

back

[ 09.03.2010 ]