Amélioration du rendu général (liens en noir dans les tables au début, pas de pages de titre intercalées)

This commit is contained in:
Bastien Dumont 2021-02-10 01:12:38 +01:00
parent a9a5c670fd
commit 0a0d8f4f3a

View File

@ -1,4 +1,4 @@
\documentclass{scrreprt} \documentclass[listof=leveldown]{scrartcl}
\usepackage{microtype} \usepackage{microtype}
\usepackage{graphicx} \usepackage{graphicx}
@ -16,8 +16,8 @@
\makeatother \makeatother
% Don't number figures by chapter % Don't number figures by chapter
\usepackage{chngcntr} \usepackage{chngcntr}
\counterwithout{figure}{chapter} \counterwithout{figure}{section}
\counterwithout{table}{chapter} \counterwithout{table}{section}
\usepackage{longtable,booktabs,array} \usepackage{longtable,booktabs,array}
@ -90,9 +90,6 @@ pdfcreator={LaTeX via pandoc}}
\date{$date$} \date{$date$}
\begin{document} \begin{document}
$if(has-frontmatter)$
\frontmatter
$endif$
$if(title)$ $if(title)$
\maketitle \maketitle
$if(abstract)$ $if(abstract)$
@ -102,35 +99,18 @@ $abstract$
$endif$ $endif$
$endif$ $endif$
$if(toc)$
$if(toc-title)$
\renewcommand*\contentsname{$toc-title$}
$endif$
{ {
$if(colorlinks)$
\hypersetup{linkcolor=black} \hypersetup{linkcolor=black}
$endif$
\setcounter{tocdepth}{$toc-depth$} \setcounter{tocdepth}{$toc-depth$}
\tableofcontents \tableofcontents
}
$endif$
$if(lot)$
\listoftables \listoftables
$endif$
$if(lof)$
\listoffigures \listoffigures
$endif$ }
$if(linestretch)$ $if(linestretch)$
\setstretch{$linestretch$} \setstretch{$linestretch$}
$endif$ $endif$
$if(has-frontmatter)$
\mainmatter
$endif$
$body$ $body$
$if(has-frontmatter)$
\backmatter
$endif$
$for(include-after)$ $for(include-after)$
$include-after$ $include-after$