이 레트린이 여백에 부딪히는 이유는 무엇입니까?

이 레트린이 여백에 부딪히는 이유는 무엇입니까?

MWE를 고려하십시오.이전 질문:

\documentclass{article}
\usepackage{lettrine}
%\usepackage{fontspec}
%\defaultfontfeatures{Ligatures={Historical}}
%\setmainfont[Ligatures={Common,Rare}]{Hoefler Text}
%% unfortunately, I do not own these fonts

\newcommand\prelude[2][8em]{\makebox[#1][c]{\itshape\scriptsize#2.}}

\newenvironment{prayer}[4][]{%
  \lettrine[ante=\prelude{#2},#1]{#3}{#4}
}{%
  \unskip
  \qquad
  \textit{Amen.}%
}

% optional smart handling of words; works either way
\iftrue
\makeatletter
\def\prayer{\@ifnextchar[{\@prayer}{\@prayer[]}}
\def\@prayer[#1]#2#3#4 {\lettrine[ante=\prelude{#2},#1]{#3}{#4} }
\def\endprayer{\unskip\qquad\textit{Amen.}}
\makeatother
\fi

\def\mytext{O Lord, we join our unfeigned thanks for all thy
  mercies; for our being, our reason, and all other endowments and
  faculties of soul and body; for our health, friends, food, and
  raiment, and all the other comforts and conveniences of life.  Above
  all we adore thy mercy in sending thy only Son into the world to
  redeem us from sin and eternal death, and in giving us the knowledge
  and sense of our duty towards thee.  We bless thee for thy patience
  with us, notwithstanding our many and great provocations; for all
  the directions, assistances, and comforts of thy Holy Spirit; for
  thy continual care and watchful providence over us through the whole
  course of our lives; and particularly for the mercies and benefits
  of the past day: Besecching thee to continue these thy blessings to
  us; and to give is grace to show our thankfulness in a sincere
  obedience to his laws through whose merits and intercession we
  received them all, thy Son our Saviour Jesus Christ.}

\begin{document}
\begin{prayer}[loversize=0.1]{The Thanksgiving}
  TO our prayers, \mytext
\end{prayer}

\lettrine[ante={\prelude{The Thanksgiving}},loversize=0.1]%
{T}{O} our prayers, \mytext\qquad\textit{Amen.}
\end{document}

나는 이상한 행동을 보입니다.

산출

마치 선택적 인수로 도입한 것 같지만 lhang=1그런 일은 하지 않았습니다. 이 문제의 원인은 무엇입니까?

답변1

Lettrine은 단락에서 작동합니다. parshape를 변경합니다. 환경의 \par끝 부분에 이 누락되어 그룹이 단락 전에 끝나고 전체 단락에 대한 lettrine 설정이 손실됩니다. \par의 정의에 를 추가하세요 \endprayer.

관련 정보