From 58bb9b9e4a1ee3ae509b7bd7c5aabf5c8986446e Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Tue, 9 Aug 2016 22:39:19 -0400 Subject: [PATCH] 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. --- mjo-proof_by_cases.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- 2.43.2