Text Formatting ⇒ Mostly backmatter in ClasicThesis
Mostly backmatter in ClasicThesis
1
In the backmatter regarding Contents I am having trouble with making:
‘Contents’ - into ‘Indhold’ (Danish)
‘List of figures’ - into ‘Liste over figurer’ as well as the underlying - into Figur 1, Figur 2 …
‘List of tables - into ‘Liste iver tabeller’ as well as the underlying - into Tabel 1, Tabel 2 …
‘Acronyms’ in the page heading - into ‘Forkortelser’
2
Is it possible to change the naming of ‘Part 1’, ‘Part 2’ etc. - into ‘Del 1’, ‘Del 2’ …
3
In the backmatter regarding Bibliography is it possible to change (cit. on p. …) - into (cit. på s. …)
Best
Jan
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Mostly backmatter in ClasicThesis
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Mostly backmatter in ClasicThesis
\usepackage[danish]{babel}
or
\PassOptionsToPackage{danish}{babel}
Stefan
Mostly backmatter in ClasicThesis
Jan
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Mostly backmatter in ClasicThesis
ClassicThesis.tex
and check the document class options:\documentclass[twoside,openright,titlepage,...%
ngerman,american%
]{scrreprt}
Remove
ngerman
, american
, or english
, and place danish here.Look if you find
\selectlanguage{..}
in the same file. Remove it, or change it to \selectlanguage{danish}
.In
ClassicThesis-config.tex
do the same where you find\PassOptionsToPackage{francais,american}{babel}
Change that to
\PassOptionsToPackage{danish}{babel}
Stefan
Mostly backmatter in ClasicThesis
Is was what was needed, now it looks awesome in Danish.
Jan
Mostly backmatter in ClasicThesis
In the thesis I find the old namings of figure and table, how come. Jan
Mostly backmatter in ClasicThesis
I saw the mistake.
I should add \addto\extrasdanish{% and then it works.
Jan
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Mostly backmatter in ClasicThesis
Stefan