Guest User

Untitled

a guest
Jun 11th, 2015
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 1.10 KB | None | 0 0
  1. \documentclass[
  2. fontsize=11pt,
  3. a4paper,
  4. pdflatex
  5. ]{article}
  6.  
  7. \usepackage[utf8]{inputenc}
  8. \usepackage[german]{babel}
  9. \usepackage[T1]{fontenc}
  10. \usepackage{amsmath, amsfonts, amssymb}
  11. \usepackage{graphicx}
  12. \usepackage{wrapfig}
  13. \usepackage[perpage]{footmisc}
  14. \usepackage[hidelinks]{hyperref}
  15. \usepackage{lmodern}
  16. \usepackage{fancyhdr}
  17. \usepackage{microtype}
  18.  
  19.  
  20.  
  21. \usepackage[xindy,
  22.             toc,
  23.             section,
  24.             acronym]{glossaries}
  25.            
  26. \newglossary[slg]{symbolslist}{syi}{syg}{Symbolverzeichnis}
  27. \newacronym{cd}{CD}{compact disk}
  28.  
  29. \newglossaryentry{computer}
  30. {
  31.  name=computer,
  32.  description={is a programmable machine that receives input,
  33.               stores and manipulates data, and provides
  34.               output in a useful format}
  35. }
  36.  
  37.  
  38. \makeglossaries
  39.  
  40. %Damit ich 1.5 Zeilenabstรคnde habe
  41. \usepackage[onehalfspacing]{setspace}
  42.  
  43. %Der Seitenrand
  44. \usepackage[left=2.5cm,
  45.             right=5.5cm,
  46.             top=2.5cm,
  47.             bottom=2.5cm]
  48.             {geometry}
  49.                    
  50. \begin{document}
  51.  
  52. \section{Some Chapter}
  53.  
  54. You can install \gls{computer}-software using a \gls{cd}
  55.  
  56.    
  57. \printglossaries
  58.  
  59. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment