PierreSenellart / apxproof

LaTeX package for automatically putting proof environments in appendix
LaTeX Project Public License v1.3c
23 stars 8 forks source link

Disable the page break before appendix #6

Closed a3nm closed 7 years ago

a3nm commented 7 years ago

It could be useful also if the \clearpage added before the appendix could be disabled. (I don't know whether having an option for this is reasonable, or whether there should be a more generic mechanism to configure what gets issued before the appendix starts.)

PierreSenellart commented 7 years ago

I have replaced the tentative appendixcol option introduced to fix #4 for a more flexible approach using an \appendixprelim command that can be redefined. By default this command is defined as: \newcommand{\appendixprelim}{\clearpage\onecolumn}. Disabling pagebreak, single-column mode, etc., or styling the appendix differently can be done by simply redefining this command with \renewcommand.

Please test, commit cc4f0cb of branch develop.

a3nm commented 7 years ago

Works for me, and I think this is a reasonable approach; thanks!