From ab6c943662ba3c06472f298fd1cfe5a0015b547b Mon Sep 17 00:00:00 2001 From: olivierwilkinson Date: Mon, 25 Oct 2021 18:31:20 +0100 Subject: [PATCH] fix(style): reduce the number of word breaks Increasing the hyphen penalty value to 1000 means that generally words are not hyphenated between lines. This makes justified text easier to read in my opinion. --- cv.tex | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cv.tex b/cv.tex index fcc1b8d..c15deff 100644 --- a/cv.tex +++ b/cv.tex @@ -11,6 +11,9 @@ \author{olivier.wilkinson@gmail.com\\+447931405305} \date{} % Don't show a date +% Define general styles +\hyphenpenalty=1000 % Don't break words unless necessary + % Define table style \newcolumntype{L}{>{\raggedleft}p{0.15\textwidth}} \newcolumntype{R}{p{0.8\textwidth}}