columns
ElementElement functions can be customized with set
and show
rules.
Element functions can be customized with
set
and show
rules.Separate a region into multiple equally sized columns.
The column
function allows to separate the interior of any container into
multiple columns. It will not equalize the height of the columns, instead,
the columns will take up the height of their container or the remaining
height on the page. The columns function can break across pages if
necessary.
Example
= Towards Advanced Deep Learning
#box(height: 68pt,
columns(2, gutter: 11pt)[
#set par(justify: true)
This research was funded by the
National Academy of Sciences.
NAoS provided support for field
tests and interviews with a
grant of up to USD 40.000 for a
period of 6 months.
]
)
In recent years, deep learning has
increasingly been used to solve a
variety of problems.

ParametersParameters are the inputs to a function. They are specified in parentheses after the function name.
Parameters are the inputs to a function. They are specified in parentheses after the function name.
count
PositionalPositional parameters are specified in order, without names.SettableSettable parameters can be customized for all following uses of the function with a set
rule.
Positional parameters are specified in order, without names.
Settable parameters can be customized for all following uses of the function with a
set
rule.The number of columns.
Default: 2
gutter
SettableSettable parameters can be customized for all following uses of the function with a set
rule.
Settable parameters can be customized for all following uses of the function with a
set
rule.The size of the gutter space between each column.
Default: 4%
body
The content that should be layouted into the columns.