blob: 42200c87a43a3af64f5fc3e2646a9f9d6e26094d (
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
|
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{DUcolumn}[2017/04/16 Docutils sidebar]
\RequirePackage{multicol}
%
% .. container:: paracol2
%
% Create a section of two column using paracol
%
%
% .. container:: multicols2
%
% Create a section of two column using multicols
\newenvironment{DUCLASSparacol2}%
{\begin{paracol}{2}}
{\end{paracol}}
\newenvironment{DUclasstparacol3}%
{\begin{paracol}{2}}
{\end{paracol}}
\newenvironment{DUCLASSmulticols2}%
{\begin{multicols}{2}}
{\end{multicols}}
\newenvironment{DUCLASSmulticols3}%
{\begin{multicols}{3}}
{\end{multicols}}
|