Guest User

Untitled

a guest
Oct 23rd, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. documentclass[a4paper,11pt,fleqn,twoside,openright]{memoir}
  2. usepackage[danish]{babel}
  3. usepackage{appendices}
  4.  
  5. begin{appendices}
  6.  
  7. chapter{this needs to be called "Appendix A"}
  8. label{appA}
  9.  
  10. [content of appendix A]
  11.  
  12. chapter{this needs to be called "Appendix B"}
  13. label{appB}
  14.  
  15. [content of appendix B]
  16.  
  17. end{appendices}
  18.  
  19. begin{appendices}
  20.  
  21. chapter{this needs to be called "Bilag 1"}
  22. label{bil1}
  23.  
  24. [content of bilag 1]
  25.  
  26. chapter{this needs to be called "Bilag 2"}
  27. label{bil2}
  28.  
  29. [content of bilag 2]
  30.  
  31. end{appendices}
  32.  
  33. documentclass[a4paper,11pt,fleqn,twoside
  34. %,openright
  35. ,openany% <- only for the example
  36. ]{memoir}
  37. usepackage[danish]{babel}
  38. renewcommand{restoreapp}{}% <- added
  39.  
  40. begin{document}
  41.  
  42. begin{appendices}
  43. renewcommandappendixname{Appendix}% <- added
  44.  
  45. chapter{this needs to be called Appendix A}
  46. label{appA}
  47.  
  48. [content of appendix A]
  49.  
  50. chapter{this needs to be called Appendix B}
  51. label{appB}
  52.  
  53. [content of appendix B]
  54.  
  55. end{appendices}
  56.  
  57. begin{appendices}
  58.  
  59. chapter{this needs to be called Bilag 1}
  60. label{bil1}
  61.  
  62. [content of bilag 1]
  63.  
  64. chapter{this needs to be called Bilag 2}
  65. label{bil2}
  66.  
  67. [content of bilag 2]
  68.  
  69. end{appendices}
  70. end{document}
Add Comment
Please, Sign In to add comment