Guest User

Untitled

a guest
Jul 16th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. documentclass{yathesis}
  2.  
  3. usepackage[T1]{fontenc}
  4. usepackage[utf8]{inputenc}
  5. usepackage{hyperref}
  6. usepackage{lipsum}
  7.  
  8. begin{document}
  9.  
  10. tableofcontents
  11. mainmatter
  12.  
  13. chapter*{Introduction}
  14. lipsum[1-15]
  15.  
  16. part{Titre partie 1}
  17. lipsum[1-15]
  18. chapter{Titre chapitre 1}
  19. section{Titre section 1.1}
  20. lipsum[1-15]
  21.  
  22. end{document}
  23.  
  24. documentclass{yathesis}
  25. usepackage[T1]{fontenc}
  26. usepackage[utf8]{inputenc}
  27. usepackage{hyperref}
  28. usepackage{lipsum}
  29.  
  30. makeatletter
  31. newenvironment{partintroduction}
  32. {renewcommand*YAD@section@header{}renewcommand*YAD@chapter@header{}}
  33. {cleardoublepage}
  34. makeatother
  35.  
  36. begin{document}
  37. tableofcontents
  38.  
  39. mainmatter
  40. chapter*{Introduction}
  41. lipsum[1-15]
  42.  
  43. part{Titre partie 1}
  44. begin{partintroduction}
  45. lipsum[1-15]
  46. end{partintroduction}
  47. chapter{Titre chapitre 1}
  48. section{Titre section 1.1}
  49. lipsum[1-15]
  50.  
  51. part{Titre partie 2}
  52. begin{partintroduction}
  53. lipsum[1-15]
  54. end{partintroduction}
  55. chapter{Titre chapitre 2}
  56. section{Titre section 2.1}
  57. lipsum[1-15]
  58. end{document}
  59.  
  60. documentclass{yathesis}
  61. usepackage[T1]{fontenc}
  62. usepackage[utf8]{inputenc}
  63. usepackage{hyperref}
  64. usepackage{lipsum}% only for dummy text
  65.  
  66. newenvironment{partintroduction}
  67. {thispagestyle{empty}pagestyle{empty}}
  68. {cleardoublepage}
  69.  
  70. begin{document}
  71. tableofcontents
  72.  
  73. mainmatter
  74. chapter*{Introduction}
  75. lipsum[1-15]
  76.  
  77. part{Titre partie 1}
  78. begin{partintroduction}
  79. lipsum[1-15]
  80. end{partintroduction}
  81. chapter{Titre chapitre 1}
  82. section{Titre section 1.1}
  83. lipsum[1-15]
  84.  
  85. part{Titre partie 2}
  86. begin{partintroduction}
  87. lipsum[1-15]
  88. end{partintroduction}
  89. chapter{Titre chapitre 2}
  90. section{Titre section 2.1}
  91. lipsum[1-15]
  92. end{document}
Add Comment
Please, Sign In to add comment