> For the complete documentation index, see [llms.txt](https://overleaf-pro.ayaka.space/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://overleaf-pro.ayaka.space/latex/da/dokumentstruktur/02-table-of-contents.md).

# Indholdsfortegnelse

I et LaTeX-dokument kan indholdsfortegnelsen automatisk genereres og tilpasses til en bestemt stil; denne artikel forklarer hvordan

## Introduktion

Det er ligetil at oprette indholdsfortegnelsen; kommandoen `\tableofcontents` klarer opgaven. Afsnit, underafsnit og kapitler er inkluderet i indholdsfortegnelsen. For manuelt at tilføje poster, for eksempel når du ønsker et unummereret afsnit, brug kommandoen `\addcontentsline` som vist i det følgende eksempel:

```latex
\documentclass{article}
\usepackage{blindtext}
\usepackage{titlesec}
\title{Sektioner og kapitler}
\author{Gubert Farnsworth}
\\date{ }
\begin{document}

\maketitle

\tableofcontents

\section{Introduktion}

Dette er den første sektion.

\blindtext

\addcontentsline{toc}{section}{Unummereret sektion}
\section*{Unummereret sektion}

\blindtext

\section{Anden sektion}

\blindtext
\end{document}
```

[Åbn dette eksempel i Overleaf](https://www.overleaf.com/docs?engine=pdflatex\&snip_name=Table+of+contents+example\&snip=%5Cdocumentclass%7Barticle%7D%0A%5Cusepackage%7Bblindtext%7D%0A%5Cusepackage%7Btitlesec%7D%0A%5Ctitle%7BSections+and+Chapters%7D%0A%5Cauthor%7BGubert+Farnsworth%7D%0A%5Cdate%7B+%7D%0A%5Cbegin%7Bdocument%7D%0A%0A%5Cmaketitle%0A%0A%5Ctableofcontents%0A%0A%5Csection%7BIntroduction%7D%0A%0AThis+is+the+first+section.%0A%0A%5Cblindtext%0A%0A%5Caddcontentsline%7Btoc%7D%7Bsection%7D%7BUnnumbered+Section%7D%0A%5Csection%2A%7BUnnumbered+Section%7D%0A%0A%5Cblindtext%0A%0A%5Csection%7BSecond+Section%7D%0A%0A%5Cblindtext%0A%5Cend%7Bdocument%7D)

Dette eksempel giver følgende output:

![Eksempel på indholdsfortegnelse genereret i LaTeX](/files/a8f24c2e24dfc13717df5ce8ac1dc1cbf4c54f8b)

## Skift titlen på indholdsfortegnelsen

Standardtitlen for indholdsfortegnelsen er **Indhold**; den kan ændres til det, du har brug for, som det følgende eksempel viser:

```latex
\documentclass{article}
\title{Sektioner og kapitler}
\author{Gubert Farnsworth}
\\date{ }
\renewcommand*\contentsname{Sammenfatning}
\begin{document}
\maketitle
\tableofcontents
\section{Introduktion}

Dette er den første sektion.

Lorem  ipsum  dolor  sit  amet,  consectetuer  adipiscing
elit.   Etiam  lobortisfacilisis sem.  Nullam nec mi et
neque pharetra sollicitudin.  Praesent imperdietmi nec ante.
Donec ullamcorper, felis non sodales...

\addcontentsline{toc}{section}{Unummereret sektion}
\section*{Unummereret sektion}

Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
Etiam lobortis facilisissem.  Nullam nec mi et neque pharetra
sollicitudin.  Praesent imperdiet mi necante...

\section{Anden sektion}

Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
Etiam lobortis facilisissem.  Nullam nec mi et neque pharetra
sollicitudin.  Praesent imperdiet mi necante...
\end{document}
```

[Åbn dette eksempel i Overleaf](https://www.overleaf.com/docs?engine=pdflatex\&snip_name=How+to+change+title+of+table+of+contents\&snip=%5Cdocumentclass%7Barticle%7D%0A%5Ctitle%7BSections+and+Chapters%7D%0A%5Cauthor%7BGubert+Farnsworth%7D%0A%5Cdate%7B+%7D%0A%5Crenewcommand%2A%5Ccontentsname%7BSummary%7D%0A%5Cbegin%7Bdocument%7D%0A%5Cmaketitle%0A%5Ctableofcontents%0A%5Csection%7BIntroduction%7D%0A+++%0AThis+is+the+first+section.%0A++++++%0ALorem++ipsum++dolor++sit++amet%2C++consectetuer++adipiscing++%0Aelit.+++Etiam++lobortisfacilisis+sem.++Nullam+nec+mi+et+%0Aneque+pharetra+sollicitudin.++Praesent+imperdietmi+nec+ante.+%0ADonec+ullamcorper%2C+felis+non+sodales...%0A+++++++%0A%5Caddcontentsline%7Btoc%7D%7Bsection%7D%7BUnnumbered+Section%7D%0A%5Csection%2A%7BUnnumbered+Section%7D%0A%0ALorem+ipsum+dolor+sit+amet%2C+consectetuer+adipiscing+elit.++%0AEtiam+lobortis+facilisissem.++Nullam+nec+mi+et+neque+pharetra+%0Asollicitudin.++Praesent+imperdiet+mi+necante...%0A%0A%5Csection%7BSecond+Section%7D%0A+++++++%0ALorem+ipsum+dolor+sit+amet%2C+consectetuer+adipiscing+elit.++%0AEtiam+lobortis+facilisissem.++Nullam+nec+mi+et+neque+pharetra+%0Asollicitudin.++Praesent+imperdiet+mi+necante...%0A%5Cend%7Bdocument%7D)

Dette eksempel giver følgende output:

![Ændring af navnet på indholdsfortegnelsen i LaTeX](/files/aa57bb4feffccc583f27576086961175b531b508)

Linjen `\renewcommand*\contentsname{Sammenfatning}` vil skrive "Sammenfatning" i stedet for standardværdien. Hvis du bruger pakken *babel* for [international sprogunderstøttelse](/latex/da/sprog/03-international-language-support.md), skal den førnævnte kommando placeres inden i klammerne til

```latex
\addto\captionsenglish{ }
```

I stedet for English i `\captionenglish` skal du skrive navnet på det sprog, du har angivet i babel.

## Yderligere læsning

For mere information se:

* [Oprettelse af et dokument i LaTeX](/latex/da/latex-grundlaeggende/01-learn-latex-in-30-minutes.md)
* [Fed skrift, kursiv og understregning](/latex/da/latex-grundlaeggende/03-bold-italics-and-underlining.md)
* [Understøttelse af internationale sprog](/latex/da/sprog/03-international-language-support.md)
* [Krydshenvisninger til afsnit og ligninger](/latex/da/dokumentstruktur/03-cross-referencing-sections-equations-and-floats.md)
* [Indeks](/latex/da/dokumentstruktur/04-indices.md)
* [Ordlister](/latex/da/dokumentstruktur/05-glossaries.md)
* [Håndtering i et stort projekt](/latex/da/dokumentstruktur/07-management-in-a-large-project.md)
* [LaTeX-projekter med flere filer](/latex/da/dokumentstruktur/08-multi-file-latex-projects.md)
* [Hyperlinks](/latex/da/dokumentstruktur/09-hyperlinks.md)
* [Sidenummerering](/latex/da/formatering/03-page-numbering.md)
* [Ensidede og dobbeltsidede dokumenter](/latex/da/formatering/08-single-sided-and-double-sided-documents.md)
* [Flere kolonner](/latex/da/formatering/09-multiple-columns.md)
* [Tællere](/latex/da/formatering/10-counters.md)
* [Skriftstørrelser, skrifttypefamilier og stilarter](/latex/da/skrifttyper/01-font-sizes-families-and-styles.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://overleaf-pro.ayaka.space/latex/da/dokumentstruktur/02-table-of-contents.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
