lettrine 패키지의 문장 정렬 오류

lettrine 패키지의 문장 정렬 오류

두 문장의 두 시작 단어를 서로 정렬하고 싶습니다(첫 번째 줄의 'ROM'과 두 번째 줄의 'may').

여기에 이미지 설명을 입력하세요

어떻게 그렇게 할 수 있습니까? 작업 코드는 다음과 같습니다.

\usepackage{lettrine}
\begin{document}
\lettrine[lines=2]{\textbf{F}}{rom} they fine john he give of rich he. They age and draw  mrs like. Improving end distrusts may instantly was household applauded incommode. Why kept very ever home mrs. Considered sympathize ten uncommonly occasional assistance sufficient not. Letter of on become he tended active enable to. Vicinity relation sensible sociable surprise screened no up as.

\end{document} 

fix-cm 패키지를 사용한 후

\documentclass[a4paper,11pt]{report}
\usepackage{lettrine}
\usepackage{fix-cm}
\begin{document}
\lettrine[lines=2]{\textbf{F}}{rom} they fine john he give of rich he. They age and draw  mrs like. Improving end distrusts may instantly was household applauded incommode. Why kept very ever home mrs. Considered sympathize ten uncommonly occasional assistance sufficient not. Letter of on become he tended active enable to. Vicinity relation sensible sociable surprise screened no up as.
  \end{document} 

여기에 이미지 설명을 입력하세요

그러나 여전히 두 단어(ROM과 Improving)가 정렬되지 않았습니다.

답변1

작동하려면 lettrine완전히 확장 가능한 글꼴 세트가 필요합니다. 기본 Computer Modern은 역사적인 이유로 인해 그렇지 않습니다.

로드하여 완전히 확장 가능하게 만들 수 있습니다.fix-cm

\RequirePackage{fix-cm} % should be here
\documentclass{article}

\usepackage{setspace}
\usepackage{lettrine}

\setlength{\DefaultNindent}{0pt} % read the doc about it
\onehalfspacing

\begin{document}

\lettrine[lines=2]{\textbf{F}}{rom} they fine john he give of rich he. They age and draw
mrs like. Improving end distrusts may instantly was household applauded incommode. Why kept
very ever home mrs. Considered sympathize ten uncommonly occasional assistance sufficient
not. Letter of on become he tended active enable to. Vicinity relation sensible sociable
surprise screened no up as.

\end{document}

여기에 이미지 설명을 입력하세요

또는 \usepackage{lmodern}.

답변2

또한 제공된 를 사용하여 \LettrineFontHook하락된 자본에 대한 시리즈를 지정해야 한다고 생각합니다. 즉, 내 솔루션은 매우 비슷합니다에그레그의하지만 한 가지 차이점이 있습니다.

\documentclass[a4paper,11pt]{report}
\usepackage{lettrine}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\renewcommand\LettrineFontHook{\bfseries}
\setlength{\DefaultNindent}{0pt}
\begin{document}
  \lettrine[lines=2]{F}{rom} they fine john he give of rich he. They age and draw  mrs like. Improving end distrusts may instantly was household applauded incommode. Why kept very ever home mrs. Considered sympathize ten uncommonly occasional assistance sufficient not. Letter of on become he tended active enable to. Vicinity relation sensible sociable surprise screened no up as.
\end{document}

정렬된 렛트린

관련 정보