自定义目录、点和大小

自定义目录、点和大小

我想在目录中添加点,并修改其大小。我知道样式方面有很多问题,但我真是笨得要命。我甚至不知道 \begin 命令是干什么的。我还想更改语言。我不想让它写“contents”,而是写法语的“table des matieres”。

这是我的两行

\newpage
  \tableofcontents
  \addtocontents{toc}{~\hfill\textbf{Page}\par} 

请告诉我应该添加什么以及在哪里添加。我尝试了很多东西,但我没有时间学习乳胶。

非常感谢

答案1

受到@Bernard 评论的启发并借鉴背页和@cmhughes'回答类似的问题:

\documentclass[french]{article}

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{babel}

\usepackage{titletoc}

% \dottedcontents{<section>}[<left>]{<above-code>}{<label width>}{<leader width>}
\dottedcontents{section}[0em]{\bfseries}{2.9em}{1pc}
%\dottedcontents{subsection}[5em]{}{3.3em}{1pc}

\begin{document}

\tableofcontents

\vspace{2cm} % Add a 2cm space

\begin{abstract}
Ceci est un bref résumé du contenu du document écrit en français.
\end{abstract}

\section{Section d'introduction}
Il s'agit de la première section, nous ajoutons des éléments supplémentaires et tout sera correctement orthographiés. En outre, si un mot est trop long et doit être tronqué, babel va essayer de tronquer correctement en fonction de la langue.

\subsection{Subsection}

\section{Section théorèmes}
Cette section est de voir ce qui se passe avec les commandes de texte qui définissent.

\end{document}

输出:

在此处输入图片描述

答案2

我真的不知道你在追求什么:“改变大小”指的是什么;你想在哪里添加点?

然而,tocloft包就是答案。下面是一个 MWE,展示了如何使用它。

% tocprob4.tex SE 533373 Customize ToC, dots and size
\documentclass{report}
\usepackage{lipsum}
\usepackage{tocloft}
\renewcommand{\contentsname}{table des matieres} % change the title
\renewcommand{\cftchapdotsep}{\cftdotsep} % add dots for chapters
\renewcommand{\cftsecdotsep}{10} % increase space between dots for sections
\renewcommand{\cftdot}{\ensuremath{\ast}} % replace dots by asterisks
%\renewcommand{\cftdot}{\Large .} % make dots Large

\begin{document}
\addtocontents{toc}{\hfill \textbf{Page}\par} % put Page above page numbers
\tableofcontents

\chapter{A chapter}
\lipsum[1]
\section{A section}
Some text in a section.
\subsection{A subsection}
Some text in a subsection.
\end{document}

阅读文档(texdoc tocloft)以了解更多信息。

相关内容