]> gitweb.michael.orlitzky.com - mjotex.git/commitdiff
Add a \break after \hfill in the proof-by-cases.
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 10 Aug 2016 02:39:19 +0000 (22:39 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Wed, 10 Aug 2016 02:39:19 +0000 (22:39 -0400)
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.

mjo-proof_by_cases.tex

index 89a813b6d72c7d875a3f180a31ede6d419f6df78..8da409c243eba0b06e5108b35ef69ce43517ab5f 100644 (file)
@@ -32,5 +32,5 @@
 % so we consume the rest of the line instead.
 \newcommand{\case}[1][]{
   \def\thiscase{#1}%
-  \item \hfill
+  \item \hfill\break
 }