Initial import
This commit is contained in:
commit
b3d198578e
|
@ -0,0 +1,4 @@
|
|||
*
|
||||
!/.gitignore
|
||||
!/.latexmkrc
|
||||
!*.tex
|
|
@ -0,0 +1 @@
|
|||
$pdflatex=q/xelatex -synctex=1 %O %S/
|
|
@ -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}
|
Loading…
Reference in New Issue