Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 KB | None | 0 0
  1. \documentclass[12pt,a4paper,openright,twoside]{report}
  2. %
  3. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%libreria per scrivere in italiano
  4. \usepackage[italian]{babel}
  5. %% hyperlinks
  6. \usepackage{hyperref}
  7. \usepackage{url}
  8.  
  9. %% gives me text
  10. \usepackage{lipsum}
  11.  
  12. %% puts the bib in the toc
  13. \usepackage[nottoc]{tocbibind}
  14.  
  15. \usepackage[style=trad-alpha,backend=bibtex,sorting=nyt]{biblatex}
  16. \addbibresource{bibfile}
  17.  
  18. %
  19. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%libreria per accettare i caratteri
  20. % digitati da tastiera come è Ã
  21. % si può usare anche
  22. % \usepackage[T1]{fontenc}
  23. % però con questa libreria
  24. % il tempo di compilazione
  25. % aumenta
  26. \usepackage[latin1]{inputenc}
  27.  
  28. %
  29. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%libreria per impostare il documento
  30. \usepackage{fancyhdr}
  31. %
  32. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%libreria per avere l'indentazione
  33. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% all'inizio dei capitoli, ...
  34. \usepackage{indentfirst}
  35. %
  36. %%%%%%%%%libreria per mostrare le etichette
  37. %\usepackage{showkeys}
  38. %
  39. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%libreria per inserire grafici
  40. \usepackage{graphicx}
  41. %
  42. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%libreria per utilizzare font
  43. % particolari ad esempio
  44. % \textsc{}
  45. \usepackage{newlfont}
  46. \usepackage{tikz-cd}
  47. \usetikzlibrary{decorations.markings,intersections}
  48. %
  49. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%librerie matematiche
  50. \usepackage{amssymb}
  51. \usepackage{braket}
  52. \usepackage{amsmath}
  53. \usepackage{latexsym}
  54. \usepackage{amsthm}
  55.  
  56.  
  57.  
  58. %
  59. \oddsidemargin=30pt \evensidemargin=20pt%impostano i margini
  60. \hyphenation{sil-la-ba-zio-ne pa-ren-te-si}%serve per la sillabazione: tra parentesi
  61. %vanno inserite come nell'esempio le parole
  62. % %che latex non riesce a tagliare nel modo giusto andando a capo.
  63.  
  64. %
  65. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%comandi per l'impostazione
  66. % della pagina, vedi il manuale
  67. % della libreria fancyhdr
  68. % per ulteriori delucidazioni
  69. \pagestyle{fancy}\addtolength{\headwidth}{20pt}
  70. \renewcommand{\chaptermark}[1]{\markboth{\thechapter.\ #1}{}}
  71. \renewcommand{\sectionmark}[1]{\markright{\thesection \ #1}{}}
  72. \rhead[\fancyplain{}{\bfseries\leftmark}]{\fancyplain{}{\bfseries\thepage}}
  73. \cfoot{}
  74. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  75. \linespread{1.3} %comando per impostare l'interlinea
  76. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%definisce nuovi comandi
  77. %
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement