Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2015
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. documentclass{article}
  2. usepackage[utf8]{inputenc}
  3. setlengthparindent{0pt}
  4. %=========================================================================================================================================
  5. % PACKAGES REQUIRED FOR GLOSSARIES
  6. %=========================================================================================================================================
  7.  
  8. % Glossaries must be loaded before amsmath as per details in the following forum answer
  9. % http://tex.stackexchange.com/questions/85696/what-causes-this-strange-interaction-between--and-amsmath
  10. usepackage[nogroupskip,toc,acronym]{glossaries} % must come after href
  11. usepackage{scrwfile}%http://www.dickimaw-books.com/cgi-bin/faq.cgi?action=view&categorylabel=glossaries#glsnewwriteexceeded
  12. usepackage{siunitx,microtype,textcomp,textgreek}
  13. makeglossaries
  14.  
  15. newglossaryentry{TNF}{
  16. type={acronym},
  17. sort={tumor necrosis factor},
  18. name={TNF},
  19. short={TNF},
  20. long={tumor necrosis factor},
  21. first={tumor necrosis factor (TNF)},
  22. description={tumor necrosis factor}
  23. }
  24.  
  25. begin{document}
  26. begin{itemize}
  27. item gls{TNF}
  28. end{itemize}
  29. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement