blob: 91511f9c57571351f0725a08c9ba7d1eae518936 (
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{boites,boites_exemples}
\usepackage{graphicx,pstricks}
\usepackage{multicol}
\usepackage{lipsum}
\begin{document}
\title{Demonstration of the \texttt{boites} Package}
\date{}
\maketitle
\subsubsection*{Using the \texttt{breakbox} environment and line counting}
\bkcounttrue
\begin{breakbox}
\begin{itemize}
\item \lipsum[1]
\item \lipsum[2]
\end{itemize}
\end{breakbox}
\subsubsection*{Using the \texttt{boiteepaisseavecuntitre} environment}
\begin{boiteepaisseavecuntitre}{ Coucou ! }
\lipsum[1-3]
\end{boiteepaisseavecuntitre}
\subsubsection*{Using the \texttt{boitenumeroteeavecunedoublebarre} environment}
\begin{boitenumeroteeavecunedoublebarre}{3.5}
\lipsum[1-3]
\end{boitenumeroteeavecunedoublebarre}
\subsubsection*{Using the \texttt{boitenumeroteeavecunedoublebarre} environment}
\begin{boitenumeroteeavecunedoublebarre}{3.5}
\begin{itemize}
\item \lipsum[1]
\item \lipsum[2]
\end{itemize}
\end{boitenumeroteeavecunedoublebarre}
\subsubsection*{Using the \texttt{boiteavecunelignequiondulesurlecote} environment}
\begin{boiteavecunelignequiondulesurlecote}
\lipsum[1-3]
\end{boiteavecunelignequiondulesurlecote}
\subsubsection*{Using the \texttt{boitecoloriee} environment}
\bkcounttrue
\begin{boitecoloriee}
\lipsum[1-2]
\end{boitecoloriee}
\subsubsection*{Using small fonts in the \texttt{boitecoloriee} environment}
\bkcounttrue
\begin{boitecoloriee}
\small
\lipsum[1-2]
\end{boitecoloriee}
\subsubsection*{Using nested \texttt{boiteavecunelignequiondulesurlecote} environments}
\bkcountfalse
\begin{boiteavecunelignequiondulesurlecote}
\lipsum[1]\bigskip
\begin{boiteavecunelignequiondulesurlecote}
\lipsum[2]\bigskip
\begin{boiteavecunelignequiondulesurlecote}
\lipsum[3]\bigskip
\end{boiteavecunelignequiondulesurlecote}
\lipsum[4]
\end{boiteavecunelignequiondulesurlecote}
\lipsum[5]
\end{boiteavecunelignequiondulesurlecote}
\subsubsection*{Using the \texttt{boiteavecunelignequiondulesurlecote} environment in multiple columns}
\bkcountfalse
\begin{multicols}{3}
\lipsum[1]
\begin{boiteavecunelignequiondulesurlecote}
\lipsum[2-4]
\end{boiteavecunelignequiondulesurlecote}
\lipsum[5]
\begin{boiteavecunelignequiondulesurlecote}
\lipsum[6-8]
\end{boiteavecunelignequiondulesurlecote}
\lipsum[9-14]
\end{multicols}
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End:
|