title page ok

part1
Alexandre AGOSTINHO 2 years ago
parent 5608d90971
commit dfa09e7503

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

@ -18,13 +18,16 @@
% Titling % Titling
\usepackage{titling} \usepackage{titling}
\renewcommand\maketitlehooka{\null\mbox{}\vfill} % \renewcommand\maketitlehooka{\null\vfill}
\renewcommand\maketitlehookb{\vfill\null} \renewcommand\maketitlehookb{\vfill\null}
% Enable links % Enable links
\usepackage[colorlinks=true,allcolors=black]{hyperref} \usepackage[colorlinks=true,allcolors=black]{hyperref}
\hypersetup{urlcolor=red} \hypersetup{urlcolor=red}
% Code style
% \usepackage{minted}
% Multifiles % Multifiles
\usepackage[subpreambles=true]{standalone} \usepackage[subpreambles=true]{standalone}
\usepackage{import} \usepackage{import}
@ -41,35 +44,15 @@
\renewcommand{\headrulewidth}{0.4pt} \renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt} \renewcommand{\footrulewidth}{0.4pt}
% Code style
\usepackage{listings}
\usepackage{color}
\definecolor{dkgreen}{rgb}{0,0.6,0}
\definecolor{gray}{rgb}{0.5,0.5,0.5}
\definecolor{mauve}{rgb}{0.58,0,0.82}
\lstset{frame=tb,
language=C,
aboveskip=3mm,
belowskip=3mm,
showstringspaces=false,
columns=flexible,
basicstyle={\small\ttfamily},
numbers=none,
numberstyle=\tiny\color{gray},
keywordstyle=\color{blue},
commentstyle=\color{dkgreen},
stringstyle=\color{mauve},
breaklines=true,
breakatwhitespace=true,
tabsize=3
}
% Title % Title
\title{% \title{%
\begin{minipage} \begin{minipage}
\linewidth% \linewidth%
\centering\bfseries \centering
\includegraphics[width=0.8\textwidth]{images/iut-logo.png}
\newline
\vskip100pt
\bfseries
SAE 2.02 SAE 2.02
\vskip3pt \vskip3pt
\large Exploration algorithmique dun problème \large Exploration algorithmique dun problème

@ -2,7 +2,7 @@
\documentclass[class=article, crop=false]{standalone} \documentclass[class=article, crop=false]{standalone}
%\usepackage[subpreambles=true]{standalone} \usepackage[subpreambles=true]{standalone}
%\usepackage{listings} %\usepackage{listings}
\begin{document} \begin{document}
@ -11,12 +11,12 @@
\subsection{Question 1} \subsection{Question 1}
% insert struct code here % insert struct code here
\begin{lstlisting}[language=C] % \begin{minted}[linenos]{c}
typedef struct pointCaracteristique { % typedef struct pointCaracteristique {
char nom[NAME_MAX_LEN]; % char nom[NAME_MAX_LEN];
struct pointCaracteristique *tPtsCaract; % struct pointCaracteristique *tPtsCaract;
} PointCaracteristique; % } PointCaracteristique;
\end{lstlisting} % \end{lstlisting}
\subsection{Question 2} \subsection{Question 2}
\quad Un point caractéristique n'a besoin de connaître que les points qu'il peut atteindre. \quad Un point caractéristique n'a besoin de connaître que les points qu'il peut atteindre.

Loading…
Cancel
Save