Skip to content

Commit

Permalink
Merge pull request #854 from Alex-Jordan/one-column
Browse files Browse the repository at this point in the history
remove BEGIN_ONE_COLUMN and END_ONE_COLUMN
  • Loading branch information
pstaabp authored Jun 28, 2023
2 parents 4029b96 + 1c72eef commit 87258d3
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions macros/core/PGbasicmacros.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1492,20 +1492,12 @@ sub GTE {
MODES(TeX => '\\ge ', Latex2HTML => '\\ge ', HTML => '<U>&gt;</U>', HTML_tth => '\\ge ', PTX => '\geq');
}; #only for use in math mode

sub BEGIN_ONE_COLUMN {
MODES(
TeX => "\\ifdefined\\nocolumns\\else\\twocolumn[\\begin{\@twocolumnfalse}\\fi\n",
Latex2HTML => " ",
HTML => " "
);
sub BEGIN_ONE_COLUMN { # deprecated
return '';
}

sub END_ONE_COLUMN {
MODES(
TeX => "\\ifdefined\\nocolumns\\else\\end{\@twocolumnfalse}]\\fi\n",
Latex2HTML => ' ',
HTML => ' '
);
sub END_ONE_COLUMN { # deprecated
return '';
}

sub SOLUTION_HEADING {
Expand Down

0 comments on commit 87258d3

Please sign in to comment.