From: Michael Orlitzky Date: Wed, 10 Aug 2016 03:14:03 +0000 (-0400) Subject: Add \par after the \hfill in each proof-by-cases case. X-Git-Tag: posZ-submitted-laa~25 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mjotex.git;a=commitdiff_plain;h=3c2517bef26d15843949fa23055eafe09f1619ac Add \par after the \hfill in each proof-by-cases case. This is another attempt to fix the last two commits; the \hfill\par seems to work better than \break or simply \hfill in that it always puts the paragraph break there and gets the spacing right no matter how you format the following text. --- diff --git a/mjo-proof_by_cases.tex b/mjo-proof_by_cases.tex index 89a813b..f86c9d0 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\par }