blob: f1f654317acd80bde3d3b9543c27add6065598e9 (
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
|
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{DUsidebar}[2017/04/16 Docutils sidebar]
\RequirePackage{kvoptions}
\RequirePackage{mdframed}
\RequirePackage{ifthen}
% Option for the color line (
\DeclareStringOption {linecolor}[blue]
\ProcessKeyvalOptions*
% Défini une note de marge entourée d'un petit cadre
%
\ifthenelse{\equal{\DUsidebar@linecolor}{}}{%
% Node bar colored defined, juste put the note in the margin
\newcommand{\DUsidebar}[1]{\marginpar{\small#1}}%
}{%
\newcommand{\DUsidebar}[1]{%
\marginpar[{\begin{mdframed}[topline=false,%
bottomline=false,%
leftline=false,%
linecolor=\DUsidebar@linecolor,%
innerrightmargin=2pt,%
linewidth=.4pt]%
{\small#1}%
\end{mdframed}%
}]{\begin{mdframed}[topline=false,%
bottomline=false,%
rightline=false,%
linecolor=\DUsidebar@linecolor,%
innerleftmargin=2pt,%
linewidth=.4pt]%
{\small#1}%
\end{mdframed}%
}%
}%
}%
%
% Permet de créer une note en utilisant le rôle « note »
%
% .. role:: note
%
% :note:`Ceci est un test`
\newcommand{\DUrolenote}[1]{\marginpar{#1}}
%
% Permet de référencer un élément dans la marge en utilisant le rôle « index »
%
% .. role:: index
%
% :index:`Terme`
\newcommand{\DUroleindex}[1]{\marginpar{\texttt{#1}}}
|