From: Michael Orlitzky Date: Wed, 10 Aug 2016 02:39:19 +0000 (-0400) Subject: Add a \break after \hfill in the proof-by-cases. X-Git-Tag: posZ-submitted-laa~27 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mjotex.git;a=commitdiff_plain;h=58bb9b9e4a1ee3ae509b7bd7c5aabf5c8986446e Add a \break after \hfill in the proof-by-cases. If a case label was short and the text that followed was short, it was possible that the text in "Case 1 (label): text" would wind up right-aligned rather than on a new line. Adding a \break directly after the \hfill seems to correct this. --- diff --git a/mjo-proof_by_cases.tex b/mjo-proof_by_cases.tex index 89a813b..8da409c 100644 --- a/mjo-proof_by_cases.tex +++ b/mjo-proof_by_cases.tex @@ -32,5 +32,5 @@ % so we consume the rest of the line instead. \newcommand{\case}[1][]{ \def\thiscase{#1}% - \item \hfill + \item \hfill\break }