Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. documentclass{article}
  2. usepackage[utf8]{inputenc}
  3.  
  4. begin{document}
  5.  
  6. maketitle
  7. thispagestyle{empty}
  8. newpage
  9.  
  10. section*{Abstract}
  11. addtocontents{toc}{~hfilltextbf{Side}par}
  12. addcontentsline{toc}{section}{protectnumberline{}Forord}
  13.  
  14. section*{Introduction}
  15. addcontentsline{toc}{section}{protectnumberline{}Sammendrag}
  16.  
  17. newpage
  18. tableofcontents
  19.  
  20. listoffigures
  21. addcontentsline{toc}{section}{protectnumberline{}Figures}
  22.  
  23. listoftables
  24. addcontentsline{toc}{section}{protectnumberline{}Tables}
  25. newpage
  26.  
  27. pagenumbering{arabic} ´
  28.  
  29. %Several sections here
  30.  
  31. newpage
  32. appendix
  33. section{Appendix A}
  34. subsection{Appendix name}
  35.  
  36. end{document}
  37.  
  38. documentclass{article}
  39.  
  40. usepackage{xparse}
  41. newcommand{setsectiontocentry}[1]{defsectiontocentry{#1}}
  42. letoldsectionsection
  43. makeatletter
  44. RenewDocumentCommand{section}{ s o m }{%
  45. IfBooleanTF{#1}
  46. {% section*
  47. oldsection*{#3}%
  48. IfValueTF{#2}
  49. {addcontentsline{toc}{section}{protectnumberline{}#2}}% section*[.]{..}
  50. {@ifundefined{sectiontocentry}
  51. {addcontentsline{toc}{section}{protectnumberline{} #3}}%
  52. {addcontentsline{toc}{section}{protectnumberline{} sectiontocentry}}%
  53. letsectiontocentryrelax
  54. }
  55. %{addcontentslineaddcontentsline{toc}{section}{protectnumberline{}%
  56. %ifcsname sectiontocentryendcsname
  57. %sectiontocentry
  58. %else
  59. %#3%
  60. %fi
  61. %}%
  62. %letsectiontocentryrelax
  63. %}% section*{..}
  64. }
  65. {% section
  66. IfValueTF{#2}
  67. {oldsection[#2]{#3}}% section[.]{..}
  68. {oldsection{#3}}% section{..}
  69. }%
  70. }
  71. makeatother
  72.  
  73. begin{document}
  74.  
  75. addtocontents{toc}{~hfilltextbf{Side}par}
  76. section*{Abstract}
  77.  
  78. section*{Introduction}
  79.  
  80. clearpage
  81.  
  82. setsectiontocentry{ToC}
  83. tableofcontents
  84.  
  85. setsectiontocentry{Figures}
  86. listoffigures
  87.  
  88. listoftables
  89.  
  90. clearpage
  91. pagenumbering{arabic}
  92.  
  93. section{First section}
  94. section{Second section}
  95. section*[THIRD SECTION]{Third section}
  96. section{Last section}
  97.  
  98. clearpage
  99. appendix
  100. section{First appendix}
  101. section{Second appendix}
  102.  
  103. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement