Started the edition

This commit is contained in:
2026-01-17 13:14:39 +01:00
parent 16d46ce76b
commit 46cdd4bf86
8 changed files with 304 additions and 5 deletions

49
src/sections/items.tex Normal file
View File

@@ -0,0 +1,49 @@
\section{Exemples}
\begin{frame}[fragile]{Exemple de code Python}
\lstset{style=corporate, language=Python}
\begin{lstlisting}
def hello(name):
print(f"Bonjour {name}")
hello("Entreprise")
\end{lstlisting}
\end{frame}
\begin{frame}{Architecture Overview}
\begin{columns}[T] % T = alignement en haut
\column{0.45\textwidth}
\includegraphics[width=\linewidth]{logo.png}
\column{0.55\textwidth}
\begin{itemize}
\item Modular architecture
\item Clean separation of concerns
\item Easy maintenance
\item Scalable design
\end{itemize}
\end{columns}
\end{frame}
\begin{frame}{Performance Metrics}
\begin{columns}[T]
\column{0.45\textwidth}
\includegraphics[width=\linewidth]{images/logo.png}
\column{0.55\textwidth}
\centering
\begin{tabular}{lcc}
\textbf{Metric} & \textbf{v1} & \textbf{v2} \\
\hline
Latency (ms) & 120 & 85 \\
Throughput & 200 & 310 \\
Errors (\%) & 2.1 & 0.7 \\
\end{tabular}
\end{columns}
\end{frame}