::
Salve ragazzi, ho finito di sistemare gli appunti che dovevo fare ed ora in pratica li devo studiare… 🙁 Il problema qual è?Nessuno in particolare, volevo solo proporvi il mio header e chiedervi se ci sono sostanziali errori/orrori nella sintassi così da poterli correggere ed utilizzare questa intestazione per i prossimi appunti. Vi ringrazio in anticipo per la pazienza. Di seguito il codice:
`
\documentclass[a4paper,openany,titlepage]{book}
\usepackage[a4paper,top=3cm,bottom=3cm,left=3.5cm,right=3.5cm,bindingoffset=5mm]{geometry}
\usepackage[latin1]{inputenc}
\usepackage[italian]{babel}
\usepackage{amsmath, amsthm, amssymb}
\usepackage{fancyhdr}
\fancypagestyle{plain}{
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\fancyfoot[RO]{\thepage}
\fancyfoot[LE]{\thepage}}
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{\markright{\ #1}}
\fancyhf{}
\fancyhead[LE,RO]{\thepage}
\fancyhead[RE]{\nouppercase{\leftmark}}
\fancyhead[LO]{\nouppercase{\rightmark}}
\newtheorem{teorema}{Teorema}[chapter]
\renewcommand{\vec}{\boldsymbol}
\newcommand{\Div}{\mbox{\rm div\,}}
\newcommand{\Rot}{\mbox{\rm rot\,}}
\newcommand{\numberset}{\mathbb}
\newcommand{\R}{\numberset{R}}
\begin{document}
\title{\Huge{Titolo}}
\author{Autore}
\date{Data}
\maketitle
\tableofcontents
`
E’ così pessima?