1# -*- mode: Perl -*-
2# /=====================================================================\ #
3# |  balance.sty.ltxml                                                  | #
4# |=====================================================================| #
5# | Part of LaTeXML:                                                    | #
6# |  Public domain software, produced as part of work done by the       | #
7# |  United States Government & not subject to copyright in the US.     | #
8# |---------------------------------------------------------------------| #
9# | Bruce Miller <bruce.miller@nist.gov>                        #_#     | #
10# | http://dlmf.nist.gov/LaTeXML/                              (o o)    | #
11# \=========================================================ooo==U==ooo=/ #
12package LaTeXML::Package::Pool;
13use strict;
14use warnings;
15use LaTeXML::Package;
16
17#======================================================================
18# This package is used to control balancing between columns when in 2 column mode.
19# Since we're leaving any column handling to the eventual agent,
20# there's nothing to do here.
21
22DefMacroI('\balance',   undef, undef);
23DefMacroI('\nobalance', undef, undef);
24#======================================================================
251;
26