from github to this gitea

This commit is contained in:
oscar.plaisant@icloud.com
2023-10-23 23:09:51 +02:00
commit a2ee0fa5ca
2898 changed files with 307871 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
up:: [[LaTeX]]
title:: "`\renewcommand{\contentsname}{New toc title}` (dans le front)"
link:: https://tex.stackexchange.com/questions/28516/how-to-change-the-title-of-toc
#informatique
---
# préciser pour différent langages
```latex
\documentclass{article}
\usepackage[english]{babel}
\addto\captionsenglish{% Replace "english" with the language you use
\renewcommand{\contentsname}%
{Whatever}%
}
\begin{document}
\tableofcontents
\section{Section}
\subsection{Subsection}
\end{document}
```