commit b3d198578ee850ecabd100d75566fe8e05ea9a94 Author: Matteo Settenvini Date: Wed Oct 21 19:56:43 2020 +0200 Initial import diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f378c38 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +* +!/.gitignore +!/.latexmkrc +!*.tex \ No newline at end of file diff --git a/.latexmkrc b/.latexmkrc new file mode 100644 index 0000000..d78de37 --- /dev/null +++ b/.latexmkrc @@ -0,0 +1 @@ +$pdflatex=q/xelatex -synctex=1 %O %S/ \ No newline at end of file diff --git a/main.tex b/main.tex new file mode 100644 index 0000000..6a4e2c2 --- /dev/null +++ b/main.tex @@ -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} \ No newline at end of file