Files
latex-templates/Poster/main.tex
2026-02-10 16:46:14 +01:00

184 lines
4.6 KiB
TeX

\documentclass[25pt, a0paper, portrait]{tikzposter}
\tikzposterlatexaffectionproofoff
% locale
\usepackage{csquotes}
\usepackage[english]{babel}
% fonts
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{emoji}
% bibliography
\usepackage{biblatex}
\addbibresource{main.bib}
% tikztable environment
\makeatletter
\newcounter{tablecounter}
\newenvironment{tikztable}[1][]{
\def \rememberparameter{#1}
\vspace{10pt}
\refstepcounter{tablecounter}
\begin{center}
}{
\ifx\rememberparameter\@empty
\else
\\[10pt]
{\small Tab.~\thetablecounter: \rememberparameter}
\fi
\end{center}
}
\makeatother
% equations
\usepackage{amsmath}
% tables and figures
\usepackage{array}
\usepackage{makecell}
\renewcommand\theadalign{bc}
\renewcommand\theadfont{\bfseries}
\renewcommand\theadgape{\Gape[4pt]}
\renewcommand\cellgape{\Gape[4pt]}
\usepackage{tabularx}
\renewcommand{\tabularxcolumn}[1]{m{#1}} % for vertical centering text in X column
\usepackage{booktabs}
\usepackage{caption}
% circles
\usepackage{circledsteps}
\pgfkeys{/csteps/inner color=white}
\pgfkeys{/csteps/fill color=black}
% lists
\usepackage{enumerate}
% comments
\usepackage{comment}
% theme and layout
\usetheme{Simple}
% insert phantom characters in every block title to force align borders
\newenvironment{fixedblock}[2][]{%
\block[#1]{#2\vphantom{P}\vphantom{g}}%
}{%
\endblock%
}
% custom colors
% colorlet commands reference: https://texdoc.org/serve/tikzposter/0
% color names reference: https://sharelatex-wiki-cdn-671420.c.cdn77.org/learn-scripts/images/e/ef/OLxcolorList2.png
\usepackage[dvipsnames]{xcolor}
\definecolor{accent}{HTML}{4D7EA8}
\definecolor{foreground}{HTML}{272932}
\definecolor{background}{HTML}{FFFFFF}
\colorlet{notebgcolor}{accent}
\colorlet{notefgcolor}{background}
\colorlet{notefrcolor}{accent}
\colorlet{titlebgcolor}{accent}
\colorlet{blocktitlefgcolor}{foreground}
\title{\parbox{\linewidth}{\centering A Retrospective on DISPEED -- Leveraging Heterogeneity in a Drone Swarm for IDS Execution}}
\author{\LARGE
Vincent Lannurien,$^{*}$
Camélia Slimani,$^{*}$
Louis Morge-Rollet,$^{*}$ \\
Laurent Lemarchand,$^{\dag}$
David Espes,$^{\dag}$
Frédéric Le Roy,$^{*}$
Jalil Boukhobza~$^{*}$
}
\institute{\Large
Lab-STICC, CNRS, UMR 6285, $\{$
$^{*}$~ENSTA, Institut Polytechnique de Paris,
$^{\dag}$~Université de Bretagne Occidentale
$\}$, Brest, France
}
\begin{document}
\maketitle[width=0.95\textwidth]
\begin{columns}
\column{0.40}
\fixedblock{1 -- DISPEED}
{
\begin{itemize}
\item Drones are increasingly used in swarms of communicating drones to conduct large-scale missions;
\item These missions employ heterogeneous drones with different compute, storage and energy capacities;
\item Intrusion Detection Systems (IDS) are deployed across the swarms to monitor communications and detect potentially malicious network trafic;
\item Modern IDS rely on resource-hungry Machine Learning (ML) techniques that can prove difficult to run on certain devices.
\end{itemize}
\vspace{5cm}
}
\note[
targetoffsetx=-8cm,
targetoffsety=-7cm,
width=0.35\linewidth
]{
\emoji{bulb} \textbf{\textit{Problem Statement}} -- \textbf{Could we leverage this heterogeneity to efficiently deploy IDS in the swarms?}
}
\column{0.6}
\fixedblock{2 -- System Overview}
{
\begin{tikzfigure}[]
\includegraphics[width=0.4\textwidth]{images/logos-ensta-ubo.png}
\end{tikzfigure}
}
\end{columns}
\begin{columns}
\column{0.35}
\fixedblock{3 -- TODO}
{
TODO
}
\column{0.65}
\begin{subcolumns}
\subcolumn{1}
\fixedblock{4 -- TODO}
{
TODO
}
\end{subcolumns}
\end{columns}
\begin{columns}
\column{0.35}
\fixedblock{5 -- TODO}
{
TODO
}
\column{0.65}
\begin{subcolumns}
\subcolumn{0.5}
\fixedblock{6 -- TODO}
{
}
\subcolumn{0.5}
\fixedblock{7 -- TODO}
{
TODO
}
\end{subcolumns}
\end{columns}
\begin{columns}
\column{0.75}
\colorlet{blockbodyfgcolor}{gray}
\block{}{
\vspace{-40pt}
\nocite{*}
\printbibliography[heading=none]
}
\colorlet{blockbodyfgcolor}{black}
\column{0.25}
\block{}
{
\vspace{-100pt}
\begin{tikzfigure}[]
\includegraphics[width=0.2\textwidth]{images/logos-ensta-ubo.png}
\label{logos}
\end{tikzfigure}
}
\end{columns}
\end{document}