允许文本(或图像)稍微超出底部边距

允许文本(或图像)稍微超出底部边距

我希望某些文本、图像或其他内容可以延伸到底部边距,但仅限于一页(或环境)。我希望保持简单,并保持一致的段落间距和缩进(如果是文本)。

我正在使用 KOMA-Script 和几何包。我尝试过\newgeometry,但这需要对现有几何图形有必要的了解。(请注意,我为同事维护了一个格式文件,因此应避免预先了解几何参数)。我\samepage过去尝试过,但收效甚微。

当然,我只会在没有脚注的页面上谨慎地使用它。只是为了挤进一两行文本,也许还有 0.5 厘米的图像。但是,似乎使用我目前的解决方案,我只能挤进一行,直到它断开。我可以设置阈值的解决方案会很酷。

我有以下解决方案,看起来不错,但非常不方便。我用它\medskip来实现段落间距(parskip=half*在 KOMA 中),但我不相信它们是相同的。我还需要手动输入缩进距离,我想避免这种情况。

如果您有任何建议可以帮助我们走上正确的道路,我们将不胜感激。

\documentclass[14pt,
twoside=false,
letterpaper,
parskip=half*,
]{scrartcl}

\usepackage[showframe]{geometry}

\usepackage{blindtext}

\setlength{\parindent}{2ex}  % paragraph indent

\begin{document}

%%% WHAT HAPPENS
\vspace*{17ex}

\blindtext[2]

New paragraph here. You'll see that with this long sentence, this line wants to go on a new page.

\newpage


%%% WHAT I WANT (but consistent spacing with rest of document)
\vspace*{17ex}

\blindtext[2]

%\vspace{\parskip}  % does not work
\medskip  % I want to use the paragraph skip length, i believe this is inconsistent
\noindent
\begin{minipage}{\textwidth}
    {\hspace*{2ex} % \parindent wouldn't work?
New paragraph here. You'll see that with this long sentence, this line wants to go on a new page, but stays! It will break if any longer
}
\end{minipage}
\end{document}

相关内容