Documentation.tex 2.8 KB

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