1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
\documentclass[a4paper,10pt,onecolumn,french]{book}
\usepackage{helvet}
\renewcommand{\familydefault}{\sfdefault}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{geometry}
\geometry{verbose,a4paper,tmargin=3cm,bmargin=3cm,lmargin=1.5cm,rmargin=1.5cm}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\usepackage{color}
\usepackage{array}
\usepackage{longtable}
\usepackage{graphicx}
\usepackage{bbding}
\usepackage{makeidx}
%\usepackage{hyperref}
\usepackage[unicode=true, pdfusetitle,
bookmarks=true,bookmarksnumbered=false,bookmarksopen=false,
breaklinks=false,backref=false,colorlinks=true,linkcolor=blue]
{hyperref}
\makeatletter
\providecommand{\tabularnewline}{\\}
\@ifundefined{definecolor}
{\usepackage{color}}{}
\makeatother
\usepackage{babel}
\addto\extrasfrench{\providecommand{\og}{\leavevmode\flqq~}\providecommand{\fg}{\ifdim\lastskip>\z@\unskip\fi~\frqq}}
% RAJOUT PAR DGM LE 12/01/09
\graphicspath{{./}{images/}}
\usepackage{fancyhdr}
\newcommand{\chapternonum}[1]{\chapter*{#1\markboth{#1}{#1}}}
\pagestyle{fancy}
\fancyhf{}
%---- le numro de la page ----
%---- gauche sur les pages de gauche ----
%---- droite sur les pages de droite ----
\fancyhead[LE,RO]{\thepage}
%---- \leftmark, cad le chapitre, droite des pages de gauche
\fancyhead[RE]{\textsc{\leftmark}}
%---- \rightmark, cad la section, gauche des pages de droite
\fancyhead[LO]{\textsc{\rightmark}}
%---- les barres ----%
\renewcommand{\headrulewidth}{1pt}
\renewcommand{\footrulewidth}{1pt}
\addtolength{\headheight}{1pt}
%---- on redefinit le style plain (\chapter le force pour la
%---- premire page de tout chapitre
\fancypagestyle{plain}{
\fancyhead[RE]{}
\fancyhead[LO]{}
}
% POUR LES FRACTIONS JOLIES
% http://www.ctan.org/tex-archive/macros/eplain/
\def\fract#1/#2{\leavevmode
\kern.1em \raise .5ex \hbox{\the\scriptfont0 #1}%
\kern-.1em $/$%
\kern-.15em \lower .25ex \hbox{\the\scriptfont0 #2}%
}%
% FIN RAJOUT DGM LE 12/01/09
\title{CloudCompare - Guide de l'utilisateur}
\author{Daniel Girardeau-Montaut, Aurlien Bey et Raphal Marc}
\date{}
%---- pour traiter les entrees d'index ----
\makeindex
\begin{document}
%---- Page de titre en franais ----
\input{titre}
\frontmatter
%\maketitle
%---- Table des matires ----
\tableofcontents \markboth{Table des matires}{Table des matires}
\mainmatter
%---- TOC ----
\markright{Table des matires}
\addcontentsline{toc}{chapter}{Introduction}
%---- Introduction ----
\input{Partie1_Introduction}
%---- Interface ----
\input{Partie2_Interface}
%---- Fonctions ----
\input{Partie3_Fonctions}
%---- Plugins ----
\input{Partie4_Plugins}
%---- Appendix ----
\begin{appendix}
\input{Annexes}
\end{appendix}
%---- Index ----
%\addcontentsline{toc}{chapter}{Index}
%\printindex{}
\backmatter
\end{document}
|