-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.tex
69 lines (55 loc) · 1.38 KB
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
\documentclass[a4paper,10pt]{article}
\usepackage[a4paper,twoside,top=0.7in, bottom=1in, left=0.7in, right=0.7in]{geometry}
\usepackage[utf8]{inputenc}
\usepackage[italian]{babel}
\usepackage{graphicx}
\usepackage{subfiles}
\usepackage{amsmath}
\usepackage{mathtools}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{color}
\usepackage{array}
\usepackage{hhline}
\usepackage{hyperref}
\hypersetup{
colorlinks = true,
linkcolor = {blue}
}
\usepackage[nameinlink]{cleveref}
\newcommand{\crefpairconjunction}{ e }
\newcommand{\crefrangepreconjunction}{da }
\newcommand{\crefrangeconjunction}{ a }
\crefname{section}{Sezione}{Sezioni}
\setcounter{tocdepth}{3}
\newcommand\exercise[2][]
{
\clearpage
\setcounter{equation}{0}
\renewcommand{\theequation}{\thesection.\arabic{equation}}
\section[#2]{#2 \hfill \normalsize{\textmd{#1}}}
}
\newcommand\textex
{
% \setcounter{equation}{0}
\renewcommand{\theequation}{\thesubsection.\arabic{equation}}
\subsection{Testo}
}
\newcommand\solution[1][]
{
% \setcounter{equation}{0}
\renewcommand{\theequation}{\thesubsection.\arabic{equation}}
\subsection{Soluzione #1}
}
% \newcommand\exComment
\newcommand\de{\ensuremath{\,\mathrm{d}}}
\title{Appunti di fisica}
\author{Classe di scienze della SNS}
\begin{document}
\maketitle
\clearpage
\tableofcontents
\clearpage
\subfile{tex/Formulario.tex}
\input{elencoesercizi.tex}
\end{document}