Guest User

Untitled

a guest
Apr 22nd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. documentclass[12pt,letterpaper]{report}
  2.  
  3. usepackage{sectsty}
  4. usepackage[utf8x]{inputenc}
  5. usepackage{ucs}
  6. usepackage[spanish]{babel}
  7. usepackage{amsmath}
  8. usepackage{amsfonts}
  9. usepackage{amssymb}
  10. usepackage{graphicx}
  11. usepackage[left=3cm,right=2cm, top=3cm, bottom=3cm]{geometry}
  12. usepackage[autostyle, spanish=mexican]{csquotes}
  13.  
  14. usepackage[authoryear]{natbib} %Bibliografía
  15. bibliographystyle{humannat} %
  16. usepackage{hyperref}
  17.  
  18. hypersetup{colorlinks, citecolor=blue}
  19. makeatletter
  20. AtBeginDocument{
  21. renewcommandNAT@open{color{blue}(}}
  22. makeatother
  23.  
  24. begin{document}
  25. This is the text of the document which includes cite{examples} and citep{examples} from a
  26. .bib document saved in the same folder of the .tex document.
  27. bibliography{Bibliografia}
  28. end{document}
  29.  
  30. documentclass[12pt,letterpaper]{report}
  31.  
  32. usepackage{sectsty}
  33. usepackage[utf8]{inputenc}
  34. usepackage[spanish]{babel}
  35. usepackage{amsmath}
  36. usepackage{amsfonts}
  37. usepackage{amssymb}
  38. usepackage{graphicx}
  39. usepackage[left=3cm,right=2cm, top=3cm, bottom=3cm]{geometry}
  40. usepackage[autostyle, spanish=mexican]{csquotes}
  41.  
  42. usepackage[style=authoryear, backend=biber]{biblatex}
  43. usepackage{hyperref}
  44.  
  45. hypersetup{colorlinks, citecolor=blue}
  46.  
  47. addbibliograhphy{Bibliografia.bib}
  48.  
  49. begin{document}
  50. This is the text of the document which includes cite{examples} and parencite{examples} from a
  51. .bib document saved in the same folder of the .tex document.
  52. printbibliography
  53. end{document}
  54.  
  55. pdflatex paper
  56. biber paper
  57. pdflatex paper
  58. pdflatex paper
Add Comment
Please, Sign In to add comment