\documentclass[a4paper,11pt]{scrartcl}
%\documentclass[a4paper,11pt]{article}   % Article
\usepackage[utf8]{inputenc}             % Encodage utf8 à conserver !
\usepackage[T1]{fontenc}                % Pour les accents

\usepackage{graphicx}                   % Pour les images
\usepackage[francais]{babel}            % Document en français
\usepackage{color}                      % mettre du texte en couleur

\usepackage{color}                      % mettre du texte en couleur

\usepackage[unicode]{hyperref}          % liens hypertexte (pour pdflatex)
\hypersetup{
    unicode=true,            % non-Latin characters in Acrobat’s bookmarks
    pdftoolbar=true,         % show Acrobat’s toolbar?
    pdfmenubar=true,         % show Acrobat’s menu?
    pdffitwindow=false,      % page fit to window when opened
    pdftitle={Article},      % title
    pdfauthor={Toto},        % author
    pdfsubject={Example},    % subject of the document
    pdfnewwindow=true,       % links in new window
    pdfkeywords={Sciences fondamentales, science appliquées}, % list of keywords
    colorlinks=true ,        % false: boxed links; true: colored links
    linkcolor=black,         % color of internal links
    citecolor=black,         % color of links to bibliography
    filecolor=black,         % color of file links
    urlcolor=black           % color of external links
}

\title{Template \LaTeX}
\author{Toto
%\author{Toto}
\date{\today}



%======================================================================%
%                          Début du document                           %
%======================================================================%


\begin{document}

\maketitle

\secion{Introduction}
%\section{Introduction}


bla bla

\section{Figures}

some text

\subsection{premiere figure}

encore du texte

\begin{figure}[hbp]
  \begin{center}
    \includegraphics[width=4cm]{logo_ADSFA.pdf}
  \end{center}
  \caption{Logo de l'ADSFA}
  \label{logo} %référence
%\end{figure} % oublie' de fermer l'environnement

et apres aussi 
\subsection{encore une figure ?}

Comme on a vu dans la figure \ref{logo}, bla bla encore

\section{Tableaux}

\begin{tabular}{ l c r }
  1 & 2 & 3 \\
  4 & 5 & 6 \\
  7 & 8 & 9 \\
\end{tabular}

\begin{tabular}{ l | c || r | }
  1 & 2 & 3 \\
  4 & 5 & 6 %\\ 
  7 & 8 & 9 \\
\end{tabular}



\begin{tabular}{ l | c || r | }
  \hline                       
  1 & 2 & 3 \\
  4 & 5 & 6 \\
  7 & 8 & 9 \\
  \hline  
\end{tabular}

\begin{center}
  \begin{tabular}{ l | c || r | }
    \hline
    1 & 2 & 3 \\ \hline
    4 & 5 & 6 \\ \hline
    7 & 8 & 9 \\
    \hline
  \end{tabular}
\end{center}

\begin{tabular}{|r|l|}
  \hline
  7C0 & hexadecimal \\
  3700 & octal \\ \cline{2-2}
  11111000000 & binary \\
  \hline \hline
  1984 & decimal \\
  \hline
\end{tabular}

\subsection{Tableaux dans un environnement flottant}

\begin{table}[htp]
 \centering
\begin{tabular}{|r|l|}
  \hline
  7C0 & hexadecimal \\
  3700 & octal \\ \cline{2-2}
  11111000000 & binary \\
  \hline \hline
  1984 & decimal \\
  \hline
\end{tabular}
\caption{Quelques dates importantes}
\label{tab:dates}
\end{table}

Regardez Tab. \ref{tab:dates} pour voir que....
Il y a aussi Chlipala \cite{cpdt} qui dit que...

\bibliographystyle{plain}
%\bibliographystyle{havard}
\bibliography{literature}

\end{document}
