答案1
我不确定为什么有人会追求糟糕的排版,比如当你禁用连字符时从文字处理器中得到的结果。
反正…
\documentclass{article}
\usepackage{fontspec}
\usepackage{lipsum}
\setmainfont{Calibri}
% how to obtain bad typesetting
\hyphenpenalty=10000
\exhyphenpenalty=10000
\emergencystretch=\maxdimen
%%%
\frenchspacing % no extended end-of-sentence space
\begin{document}
%%%
% just to reproduce your column width, not something
% to be used in real documents
\settowidth{\hsize}{Contrary to popular belief, Lorem ipsum}
%%%
\noindent\lipsum[1]
\end{document}