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
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Mostly backmatter in ClasicThesis
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- 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: 10335
- 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: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Mostly backmatter in ClasicThesis
Stefan