blob: 489f73c708b4f74004e1983a9f431570bba5dbab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
%
% <%= @username %> <<%= @email %>>
% <%= @filename %>
% <%= @now %>
%
\documentclass[a4paper,twoside,12pt]{article}
%
\usepackage[french]{babel} % prise en charge du francais
\usepackage[latin1]{inputenc} % codage des caracteres
\usepackage[T1]{fontenc} % manipulation des polices
\usepackage{moreverb} % listinginput[incr]{first}{file}
\usepackage{fancybox} % VerbatimInput{file}
\usepackage{fancyhdr} % en-tete pied de page
\usepackage{hyperref} % lien hypertext pdf / html doit etre place en dernier
\usepackage{layout} % afficher le layout
% layout vertical
\setlength{\topmargin}{0cm}
\setlength{\headheight}{2cm}
\setlength{\headsep}{0.5cm}
\setlength{\topskip}{1.5cm}
\setlength{\textheight}{21cm}
\setlength{\footskip}{2cm}
%layout horizontal
\setlength{\evensidemargin}{49pt}
\setlength{\oddsidemargin}{6pt}
\setlength{\marginparwidth}{3cm}
\setlength{\textwidth}{14cm}
%
\pagestyle{fancy}
%
%
\begin{document}
%\layout
\tableofcontents
\newpage
%
%
\section{Section}
%
Text ...
%
\paragraph{Paragraph} P
%
\paragraph{} LABEL\label{L}
%
\subsection{Subsection}
%
%
\subsubsection{SubSubSection}
%
%
%
%
%
\newpage
\section{Section 2}
%
Label : \ref{L} page : \pageref{L}.\\
\url{http://cr.yp.to}\\
biblio : \cite{keyword}\\
\footnote{une note de bas de page}
%
\appendix
\section{Code Source}
\subsection{Code\_A}
%
%\insertFile{../Code_A}{scriptsize}
%
%\includegraphics*[height=8cm]{filename}
%\section{Bibliographie}
%
\bibliographystyle{plain}
\bibliography{biblio}
\end{document}
|