Initial import

This commit is contained in:
Matteo Settenvini 2020-10-21 19:56:43 +02:00
commit b3d198578e
3 changed files with 57 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*
!/.gitignore
!/.latexmkrc
!*.tex

1
.latexmkrc Normal file
View File

@ -0,0 +1 @@
$pdflatex=q/xelatex -synctex=1 %O %S/

52
main.tex Normal file
View File

@ -0,0 +1,52 @@
\documentclass[a4paper,10pt]{book}
\usepackage{fontspec}
\setmainfont[
SmallCapsFont={Latin Modern Roman Caps},
SmallCapsFeatures={Letters=SmallCaps},
]{Latin Modern Roman}
\usepackage{pdflscape}
\usepackage{float}
\usepackage{caption}
% Activate last
\usepackage{polyglossia}
\setmainlanguage{italian}
\setotherlanguage{german}
\title{AAAAA}
\author{Matteo Settenvini}
\date{\today}
% -----------------------------------
\begin{document}
\maketitle
\chapter{Guida Fonetica}
\chapter{Coniugazioni Verbali}
\begin{landscape}
\section{Indicativo Presente}
\centering
\begin{table}[H]
\newcommand*{\thead}[1]{\multicolumn{1}{c}{\bfseries #1}}
\begin{tabular}{r||r|c|c||c|c|c||c|c|c|}
\multicolumn{1}{c}{} & \multicolumn{1}{c}{Pronomi} & \multicolumn{2}{c}{Verbi ausiliari} & \multicolumn{3}{c}{Verbi modali} & \multicolumn{3}{c}{Coniugazioni regolari}\\
\thead{} & \thead{} & \thead{\textsc{Essere}} & \thead{\textsc{Avere}} & \thead{\textsc{Dovere}} & \thead{\textsc{Potere}} & \thead{\textsc{Volere}} & \thead{\textsc{Amare}} & \thead{\textsc{Vendere}} & \thead{\textsc{Vestire}}\\
\cline{2-10}
\textgerman{ich} & \textsc{io} & sono & ho & devo\footnote{debbo} & posso & voglio & am-\textbf{o} & vend-\textbf{o} & vest-\textbf{o} \\
\textgerman{du} & \textsc{tu} & sei & hai & devi & puoi & vuoi & am-\textbf{i} & vend-\textbf{i} & vest-\textbf{i} \\
\textgerman{er, sie, es} & \textsc{lui\footnote{egli, esso, ello}, lei\footnote{essa, ella}, --} & è & ha & deve & può & vuole & am-\textbf{a} & vend-\textbf{e} & vest-\textbf{e} \\
\textgerman{wir} & \textsc{noi} & siamo & hanno & dobbiamo & possiamo & vogliamo & am-\textbf{iamo} & vend-\textbf{iamo} & vest-\textbf{iamo} \\
\textgerman{ihr} & \textsc{voi} & siete & avete & dovete & potete & volete & am-\textbf{ate} & vend-\textbf{ete} & vest-\textbf{ite} \\
\textgerman{sie} & \textsc{loro\footnote{essi}} & sono & hanno & devono\footnote{debbono} & possono & vogliono & am-\textbf{ano} & vend-\textbf{ono} & vest-\textbf{ono} \\
\cline{2-10}
\end{tabular}
\end{table}
\end{landscape}
\end{document}