摘要中的 Lettrine - 奇怪的行为

摘要中的 Lettrine - 奇怪的行为

奇怪的行为 有人知道为什么在 stock-standard 文章类别的抽象环境中使用 lettrine 时会发生这种奇怪的行为吗?

好像parshape在重复……???

这是我要重现的代码:

\documentclass{article}


\usepackage{lipsum,lettrine,helvet}
\renewcommand{\familydefault}{\sfdefault}

\setcounter{DefaultLines}{3}

\def\t{The Cat Sat on the Mat}
\def\tt{\t\t}
\def\ttt{\tt\tt}

\usepackage[parfill]{parskip}

\begin{document}
\abstract
    \lettrine{T}{his is a test}\ttt\ttt\ttt

    \ttt\ttt\ttt

    \ttt\ttt\ttt
\endabstract

\end{document}

答案1

嗯,lettrine 也许应该更加小心分组。

在此处输入图片描述

\documentclass{article}


\usepackage{lipsum,lettrine,helvet}
\renewcommand{\familydefault}{\sfdefault}

\setcounter{DefaultLines}{3}

\def\t{The Cat Sat on the Mat}
\def\tt{\t\t}
\def\ttt{\tt\tt}

\usepackage[parfill]{parskip}

\begin{document}
\begin{abstract}
    {\lettrine{T}{his is a test}\csname@restorepar\endcsname\everypar{}\ttt\ttt\ttt\par}

    \ttt\ttt\ttt

    \ttt\ttt\ttt
\end{abstract}

\end{document}

(使用它并不是很安全\abstract \endabstract所以我将它改回环境,它碰巧在这里工作但如果titlepage使用例如选项就会失败)

相关内容