From 2cbcd10fe7b590c98a50a7367c3e58e3def04669 Mon Sep 17 00:00:00 2001 From: Sébastien Dailly Date: Fri, 3 Apr 2020 18:57:29 +0200 Subject: Added column class --- .../tex/latex/docUtils/DUcolumns/DUcolumn.sty | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100755 latex_docutils/texmf/tex/latex/docUtils/DUcolumns/DUcolumn.sty (limited to 'latex_docutils/texmf/tex/latex/docUtils/DUcolumns/DUcolumn.sty') diff --git a/latex_docutils/texmf/tex/latex/docUtils/DUcolumns/DUcolumn.sty b/latex_docutils/texmf/tex/latex/docUtils/DUcolumns/DUcolumn.sty new file mode 100755 index 0000000..42200c8 --- /dev/null +++ b/latex_docutils/texmf/tex/latex/docUtils/DUcolumns/DUcolumn.sty @@ -0,0 +1,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}} + -- cgit v1.2.3