mirror of
https://github.com/NotXia/unibo-ai-notes.git
synced 2025-12-15 02:52:22 +01:00
64 lines
1.6 KiB
TeX
64 lines
1.6 KiB
TeX
\documentclass[11pt]{article}
|
|
\usepackage[margin=3cm, lmargin=2cm, rmargin=4cm]{geometry}
|
|
\usepackage{graphicx, xcolor}
|
|
\usepackage{amsmath, amsfonts, amssymb, amsthm, mathtools}
|
|
\usepackage{hyperref}
|
|
\usepackage[nameinlink]{cleveref}
|
|
\usepackage[all]{hypcap} % Links hyperref to object top and not caption
|
|
\usepackage[inline]{enumitem}
|
|
\usepackage{marginnote}
|
|
|
|
\title{Statistical and Mathematical Methods for Artificial Intelligence}
|
|
\date{2023 -- 2024}
|
|
|
|
\hypersetup{
|
|
colorlinks,
|
|
citecolor=black,
|
|
filecolor=black,
|
|
linkcolor=black,
|
|
urlcolor=black,
|
|
linktoc=all
|
|
}
|
|
|
|
\setlist[description]{labelindent=\parindent} % Indents `description`
|
|
\renewcommand*{\marginfont}{\color{gray}\footnotesize}
|
|
|
|
\newtheorem{example}{Example}[section]
|
|
\newtheoremstyle{definition}{}{}{}{}{\bfseries}{.}{ }{\thmname{#1}\thmnumber{ #2}\thmnote{ (#3)}}
|
|
\theoremstyle{definition}
|
|
\newtheorem*{definition}{Def}
|
|
|
|
\newcommand{\ubar}[1]{\text{\b{$#1$}}}
|
|
\renewcommand{\vec}[1]{\text{\textbf{#1}}}
|
|
\newcommand{\nullvec}[0]{\bar{\vec{0}}}
|
|
|
|
|
|
\begin{document}
|
|
|
|
\makeatletter
|
|
\begin{titlepage}
|
|
\centering
|
|
\vspace*{\fill}
|
|
\huge
|
|
\textbf{\@title}
|
|
\vspace*{\fill}
|
|
|
|
\Large
|
|
Academic Year \@date\\
|
|
Alma Mater Studiorum $\cdot$ University of Bologna
|
|
\vspace*{1cm}
|
|
\end{titlepage}
|
|
\makeatother
|
|
\pagenumbering{roman}
|
|
\tableofcontents
|
|
\newpage
|
|
\pagenumbering{arabic}
|
|
|
|
\input{sections/_finite_numbers.tex}
|
|
\newpage
|
|
\input{sections/_linear_algebra.tex}
|
|
\newpage
|
|
\input{sections/_linear_systems.tex}
|
|
|
|
|
|
\end{document} |