Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(multicols): add MultiCols class #359

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ This version might not be stable, but to install it use::

pip install git+https://github.com/JelteF/PyLaTeX.git

- Add ``MultiCols`` class based on the LaTeX ``multicol`` package.

1.4.1_ - `docs <../v1.4.1/>`__ - 2020-10-18
-------------------------------------------

Expand Down
23 changes: 23 additions & 0 deletions examples/multicols.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/usr/bin/env python3
"""This example shows the multicols functionality."""

from pylatex import Document, Section, Itemize, MultiCols

if __name__ == '__main__':
doc = Document()

# create a bulleted "itemize" list inside a 2 column mutlicols like the below:
# \begin{itemize}
# \item The first item
# \item The second item
# \item The third etc \ldots
# \end{itemize}

with doc.create(Section('2 column list')):
with doc.create(MultiCols(2)):
with doc.create(Itemize()) as itemize:
itemize.add_item("the first item")
itemize.add_item("the second item")
itemize.add_item("the third etc")

doc.generate_pdf('multicols', clean_tex=False)
1 change: 1 addition & 0 deletions pylatex/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
from .position import Center, FlushLeft, FlushRight, MiniPage, TextBlock, \
HorizontalSpace, VerticalSpace
from .labelref import Marker, Label, Ref, Pageref, Eqref, Autoref, Hyperref
from .multicols import MultiCols

from ._version import get_versions
__version__ = get_versions()['version']
Expand Down
24 changes: 24 additions & 0 deletions pylatex/multicols.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#! /usr/bin/env python3
"""This module implements LaTeX multicol package."""

from pylatex.utils import NoEscape
from .base_classes import Environment
from .package import Package


class MultiCols(Environment):
"""The class that represents multicols."""

packages = [Package('multicol')]

def __init__(self, number):
"""
Initialize class instance.

Args
----
number: int
The number of columns in multicols.
"""
self.number = number
super().__init__(arguments=NoEscape(number))
8 changes: 7 additions & 1 deletion tests/test_args.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
SmallText, FootnoteText, TextColor, FBox, MdFramed, Tabu, \
HorizontalSpace, VerticalSpace, TikZCoordinate, TikZNode, \
TikZNodeAnchor, TikZUserPath, TikZPathList, TikZPath, TikZDraw, \
TikZScope, TikZOptions, Hyperref, Marker
TikZScope, TikZOptions, Hyperref, Marker, MultiCols
from pylatex.utils import escape_latex, fix_filename, dumps_list, bold, \
italic, verbatim, NoEscape

Expand Down Expand Up @@ -305,6 +305,12 @@ def test_tikz():
repr(dr)


def test_multicols():

multicols = MultiCols(2)
repr(multicols)


def test_lists():
# Lists
itemize = Itemize()
Expand Down