diff options
author | Sébastien Dailly <sebastien@chimrod.com> | 2020-04-03 19:02:24 +0200 |
---|---|---|
committer | Sébastien Dailly <sebastien@chimrod.com> | 2020-04-03 19:02:24 +0200 |
commit | 8ef9678d0a0f7b30a3c6afca6af70aa505f1a51f (patch) | |
tree | 6b00e49aefe306786a0dbf289ea164b2ddc50583 /latex_docutils | |
parent | b313e4533c51728e4f8385ade30d41f772a5124e (diff) | |
parent | 2cbcd10fe7b590c98a50a7367c3e58e3def04669 (diff) |
Merge branch 'master' of git.chimrod.com:configuration
Diffstat (limited to 'latex_docutils')
-rwxr-xr-x | latex_docutils/texmf/tex/latex/docUtils/DUcolumns/DUcolumn.sty | 31 |
1 files changed, 31 insertions, 0 deletions
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}} + |