# -*- mode: Perl -*- # /=====================================================================\ # # | multirow | # # | Implementation for LaTeXML | # # |=====================================================================| # # | Part of LaTeXML: | # # | Public domain software, produced as part of work done by the | # # | United States Government & not subject to copyright in the US. | # # |---------------------------------------------------------------------| # # | Bruce Miller #_# | # # | http://dlmf.nist.gov/LaTeXML/ (o o) | # # \=========================================================ooo==U==ooo=/ # package LaTeXML::Package::Pool; use strict; use warnings; use LaTeXML::Package; DefPrimitive('\multirowsetup', undef); DefPrimitive('\multirow{Number}[Number]{}[Dimension]{}', sub { my ($stomach, $nrows, $bigstruts, $width, $fixup, $content) = @_; if (my $alignment = LookupValue('Alignment')) { my $colspec = $alignment->currentColumn; $$colspec{rowspan} = $nrows->valueOf; } Digest(Tokens(T_CS('\hbox'), T_BEGIN, T_CS('\multirowsetup'), $content->unlist, T_END)); }); #********************************************************************** 1;