关闭连字,文本不会超出页边距

关闭连字,文本不会超出页边距

我正在用 LaTeX 重写(并更新)我的简历。我感到很沮丧,因为当一行太长时,LaTeX 会自动将需要换行的单词连字符。我找到了一种关闭连字符的方法(见下面的代码),但这会使行变得参差不齐,并且会超出页边距,看起来很糟糕。有没有办法关闭连字符,这样如果一个单词太长,整个单词就会移动到下一行,这样一行就不会超出文档的页边距?

\usepackage[none]{hyphenat}
Education \\
U. Chicago \hfill 2008-2012 \\
\begin{itemize}
\item Long bullet point describing all of my technical skills that goes for several lines
\end{itemize}

答案1

\documentclass{article}
\usepackage[none]{hyphenat}

\begin{document}

Education \\
U. Chicago \hfill 2008-2012 

\begin{sloppypar}
\begin{itemize}
\item Loong bullet point describing all of my technical skills that goes overseverallines
\end{itemize}
\end{sloppypar}

\end{document}

相关内容