blob: 1dc3fb981760c9311f2dce819478b01347ec0995 (
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
|
%%
%% A DANTE-Edition example
%%
%% Example 06-00-1 on page 178.
%%
%% Copyright (C) 2010 Herbert Voss
%%
%% It may be distributed and/or modified under the conditions
%% of the LaTeX Project Public License, either version 1.3
%% of this license or (at your option) any later version.
%%
%% See http://www.latex-project.org/lppl.txt for details.
%%
%%
%% ====
% Show page(s) 1
%%
\documentclass[]{article}
\pagestyle{empty}
\setlength\textwidth{375.57637pt}
\setlength\parindent{0pt}
\usepackage[utf8]{inputenc}
\usepackage[frenchb]{babel}
\usepackage{array,ragged2e,booktabs,capt-of}
\newcolumntype{C}[1]{>{\Centering}b{#1}}
\begin{document}
\begin{tabular}{@{}l C{2cm} C{2.7cm} C{1.8cm}@{}}\toprule
\bfseries Pratiques & \bfseries Nombre de dossiers
& \bfseries Cas où le gouvernement a eu gain de cause
& \bfseries Cessions ordonnées \\\midrule
& \itshape\bfseries 1890-1939 \\\midrule
\bfseries Concentrations & 57 & 46 & 20 \\
\quad Marché national & 33 & 25 & 12 \\
\quad Marché régional ou local & 24 & 21 & 9 \\
\bfseries Pratiques antitrust & \bfseries97 & \bfseries79 & \bfseries8 \\
\quad Marché national & 54 & 43 & 5 \\
\quad Marché régional ou local & 43 & 36 & 3 \\
\emph{Total} &154 &125 &\textbf{28} \\\midrule
& \itshape\bfseries 1940-1999 \\\midrule
\bfseries Concentrations & 28 & 25 & 9 \\
\quad Marché national & 14 & 12 & 4 \\
\quad Marché régional ou local & 14 & 13 & 5 \\
\bfseries Pratiques antitrust & \bfseries91 & \bfseries75 & \bfseries7 \\
\quad Marché national & 52 & 42 & 2 \\
\quad Marché régional ou local & 39 & 33 & 5 \\
\emph{Total} &119 &100 &\textbf{16} \\\bottomrule
\multicolumn{4}{@{}l}{\scriptsize\emph{Source}: adapté de Posner (2001,p. 106).}
\end{tabular}
\end{document}
|