Skip to content
This repository was archived by the owner on Jul 1, 2020. It is now read-only.

Stesura verbale 20 #351

Merged
merged 4 commits into from
Apr 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/filesToCompile
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ esterni/verbali/VE_2020-01-30_11
esterni/verbali/VE_2020-02-11_13
esterni/verbali/VE_2020-03-05_16
esterni/verbali/VE_2020-03-25_19
esterni/verbali/VE_2020-03-31_20
86 changes: 86 additions & 0 deletions esterni/verbali/VE_2020-03-31_20/main.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
%!TEX output_directory = .cache
% ---------------------------
% [ Verbale ]
% ----------------------
% Red Round Robin
% Progetto di SWE (2019-20)
% Template by Maxelweb
% ---------------------------

% Configurazione primaria del documento

% --------------

\newcommand{\docNome}{ VERBALE RIUNIONE \#20 }
\newcommand{\docBaseline}{+b0.13}
\newcommand{\docVersione}{0.0.1\docBaseline}
\newcommand{\docNomeProgetto}{ 31 marzo 2020 }
\newcommand{\docStatus}{Da approvare}
\newcommand{\docUso}{Esterno}

% --------------

\newcommand{\docRedattori}{
Mariano Sciacco
}
\newcommand{\docVerificatori}{
NA
}
\newcommand{\docApprovazione}{
NA
}

% ----- NON MODIFICARE SOTTO QUESTA RIGA -----

% ---------------------------
% Configurazioni
% ---------------------------

\documentclass[11pt,a4paper,table]{article}

\input{res/configurazione}

% ---------------------------
% Dati frontespizio
% ---------------------------

\title{\hr \huge \textsc{\docNome} \\
\vspace{11pt} \large \textsc{\docNomeProgetto} \hr}

\author{} % Non toccare
\date{} % Non toccare

% ---------------------------
% Composizione del documento
% ---------------------------

\begin{document}

% Frontespizio

\pagenumbering{gobble}
\DeactivateBG
\input{res/frontespizio}

% Registro delle modifiche

\newpage
\ActivateBG
\pagenumbering{Roman}
\input{res/registro}


% Contenuto

\newpage
\input{res/contenuto}


% Registro Decisioni

\newpage
\input{res/tracciamenti}

\end{document}

% EOF
169 changes: 169 additions & 0 deletions esterni/verbali/VE_2020-03-31_20/res/configurazione.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,169 @@
% Ultimo aggiornamento: 14 dicembre 2019
% Configurazione delle dipendenze e dei package


\usepackage{geometry}
\usepackage{graphicx}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{charter}
\usepackage{eurosym}
\usepackage[italian]{babel}
\usepackage{float}
\usepackage{subcaption}
\usepackage{wrapfig}
\usepackage{fancyhdr}
\usepackage{lastpage}
\usepackage{amsfonts}
\usepackage{fancyvrb}
\usepackage{background}
\usepackage{xcolor}
\usepackage{hyperref}
\usepackage{listings}
\usepackage{longtable}
\usepackage{colortbl}
\usepackage{tikz}
\usepackage{titlesec}


% Impostazione sottotitolo di quarto livello e quinto livello

\setcounter{secnumdepth}{4}
\setcounter{tocdepth}{4}

\titleformat{\paragraph}
{\normalfont\normalsize\bfseries}{\theparagraph}{1em}{}
\titlespacing*{\paragraph}{0pt}{2.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}

\titleformat{\subparagraph}
{\normalfont\normalsize\bfseries}{\thesubparagraph}{1em}{}
\titlespacing*{\subparagraph}{0pt}{1.75ex plus 1ex minus .2ex}{.75ex plus .1ex}


% Impostazioni pagina e margini

\geometry{
margin=1.0in,
top=19.2mm, % NON TOCCARE
bottom=30mm,
left=20mm,
right=20mm
}

% Definizione colori

\definecolor{footer-gray}{HTML}{808080}
\definecolor{light-gray}{gray}{0.6}
\definecolor{light-grayer}{gray}{0.75}
\definecolor{lighter-grayer}{gray}{0.85}
\definecolor{lightest-grayest}{gray}{0.94}
\definecolor{codegreen}{rgb}{0,0.4,0.2}
\definecolor{codegray}{rgb}{0.5,0.5,0.5}
\definecolor{codepurple}{rgb}{0.58,0,0.82}
\definecolor{backcolour}{rgb}{0.95,0.95,0.96}


% Impostazione header e footer

\pagestyle{fancy}
\setlength\headheight{33pt}
\renewcommand{\headrulewidth}{0pt}
\fancyhead{}
\lhead{\includegraphics[height=10mm]{res/images/logo.png}}
\rhead{\raisebox{1.4\height}{\leftmark}}


\renewcommand{\footrulewidth}{0.1pt}
\fancyfoot{}
\lfoot{ \textcolor{footer-gray}{\docNome - v\docVersione} }

\renewcommand{\footrule}{\hbox to\headwidth{\color{light-grayer}\leaders\hrule height \footrulewidth\hfill}}
\rfoot{ \textcolor{footer-gray}{Pagina \thepage \hspace{1pt} di \pageref*{LastPage}} }

% Grandezza paragrafi e spaziatura frasi

\setlength{\parindent}{1.7em}
\setlength{\parskip}{1.1em}
\renewcommand{\baselinestretch}{1.05}

% Colori link

\hypersetup{
colorlinks,
linkcolor=[HTML]{404040},
citecolor={blue!50!black},
urlcolor={red!50!black}
}
\PassOptionsToPackage{hyphens}{url}\usepackage{hyperref}

% Equivalente a <hr>

\newcommand{\hr}{\par\vspace{-.1\ht\strutbox}\noindent\hrulefill\par}

% Tabelle e tabulazione

\setlength{\tabcolsep}{10pt}
\renewcommand{\arraystretch}{1.4}

% Unicode per simbolo euro

\DeclareUnicodeCharacter{20AC}{\euro}

% Configurazione sfondo

\newcommand\DeactivateBG{\backgroundsetup{contents={}}}
\newcommand\ActivateBG{ \backgroundsetup{
scale=1.0,
color=black,
opacity=1.0,
angle=0,
contents={%
\includegraphics[height=297mm]{res/images/background.png}
}%
}}

% Codice e snippet

\renewcommand{\lstlistingname}{Snippet}
\renewcommand{\lstlistlistingname}{Lista di \lstlistingname s}


\lstdefinestyle{chungusHighlight}{
frame=tb,
backgroundcolor=\color{backcolour},
commentstyle=\color{codegreen},
keywordstyle=\color{magenta}\textbf,
numberstyle=\color{codegray},
stringstyle=\color{codepurple},
basicstyle={\ttfamily},
breakatwhitespace=false,
breaklines=true,
captionpos=b,
keepspaces=true,
numbers=left,
numbersep=5pt,
showspaces=false,
showstringspaces=false,
showtabs=false,
numbers=none,
tabsize=2
}

\lstset{style=chungusHighlight}


% Comando per aggiungere le pagine di ogni sezione

\newcommand{\yetAnotherSectionNamed}[1]{%
\newpage
\input{res/sections/#1}
}%


% Comando per i documenti esterni e il glossario

\newcommand{\dext}[1]{\textsc{#1\textsubscript{\textit{D}}}}

\newcommand{\glock}[1]{\textsc{#1\textsubscript{\textit{G}}}}


48 changes: 48 additions & 0 deletions esterni/verbali/VE_2020-03-31_20/res/contenuto.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
\section*{Introduzione}

\subsection*{Luogo e data dell'incontro}
\begin{itemize}
\item \textbf{luogo:} videoconferenza su \glock{Hangouts};
\item \textbf{data:} 2020-03-31;
\item \textbf{ora di inizio:} 13:40;
\item \textbf{ora di fine:} 14:15.
\end{itemize}

\subsection*{Ordine del giorno}
\begin{enumerate}
\item discussione dei dubbi riguardanti la \glock{Product Baseline};
\item varie ed eventuali.
\end{enumerate}

\subsection*{Presenze}
\begin{itemize}
\item \textbf{totale presenti:} 7 su 7
\item \textbf{presenti: }
\begin{itemize}
\item Lorenzo Dei Negri;
\item Fouad Mouad;
\item Mariano Sciacco (segretario);
\item Alessandro Tommasin;
\item Giuseppe Vito Bitetti;
\item Giovanni Vidotto;
\item Nicolò Frison;
\end{itemize}
\item \textbf{assenti: }
\begin{itemize}
\item nessuno;
\end{itemize}
\item \textbf{partecipanti esterni:}
\begin{itemize}
\item Professor Riccardo Cardin.
\end{itemize}
\end{itemize}


\newpage
\section*{Svolgimento}

\subsection*{Discussione dei dubbi riguardanti la Product Baseline}
Il gruppo ha richiesto un feedback, da parte del Professor Cardin, sulla qualità e sulla bontà dei diagrammi prodotti per la presentazione dell'\glock{allegato tecnico}. Sono stati fatti notare alcuni errori di progettazione delle classi e sono state proposte delle possibili correzioni da apportare.

\subsection*{Varie ed eventuali}
Nulla da riportare.
47 changes: 47 additions & 0 deletions esterni/verbali/VE_2020-03-31_20/res/frontespizio.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@

% FRONTESPIZIO

% Logo aziendale

\begin{figure}[t!]
\centering
\includegraphics[height=10em]{res/images/logo.png}
\end{figure}


% Titolo principale

\maketitle
\thispagestyle{empty}


% Riferimenti email e sito web

\vspace{-6em}

\begin{center}
\href{https://www.redroundrobin.site}{www.redroundrobin.site} --- \href{mailto:redroundrobin.site@gmail.com}{redroundrobin.site@gmail.com}
\end{center}

\vspace{3em}

% Informazioni documento

\begin{table}[ht]
\begin{center}
\label{tab:Informazioni_Documento}
\begin{tabular}{r|l}
\multicolumn{2}{c}{ \textsc{Informazioni sul documento} } \\
\hline
\textbf{Versione} & \docVersione \\
\textbf{Uso} & \docUso \\
\textbf{Stato} & \docStatus \\
\textbf{Redattori} & \docRedattori \\
\textbf{Verificatori} & \docVerificatori \\
\textbf{Approvazione} & \docApprovazione \\
\end{tabular}
\end{center}
\end{table}



Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions esterni/verbali/VE_2020-03-31_20/res/registro.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
\section*{Registro delle modifiche}

\begin{center}
\rowcolors{2}{lightest-grayest}{white}
\begin{longtable}{|c|p{3.5cm}|c|p{3cm}|p{3cm}|}
\hline
\rowcolor{lighter-grayer}
\textbf{Versione} & \textbf{Descrizione} & \textbf{Data} & \textbf{Autore} & \textbf{Ruolo} \\
\hline
\endfirsthead

% ----- Modificare da qui -----

0.0.1+b0.13 & Creazione iniziale del documento & 2020-03-31 & Mariano Sciacco & Redattore \\
\hline

\end{longtable}
\end{center}
17 changes: 17 additions & 0 deletions esterni/verbali/VE_2020-03-31_20/res/tracciamenti.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
\section*{Tracciamento delle decisioni}

\begin{center}
\rowcolors{2}{lightest-grayest}{white}
\begin{longtable}{|c|p{12.25cm}|}
\hline
\rowcolor{lighter-grayer}
\textbf{Codice} & \textbf{Descrizione} \\
\hline
\endfirsthead

\hline
VE\_2020-03-31\_20.1 & Decisione sulle modifiche da effettuare alle classi, ai diagrammi UML delle classi e a quelli dei package. \\
\hline

\end{longtable}
\end{center}