
2つの文の最初の2つの単語を揃えたい(1行目の「ROM」と2行目の「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}
しかし、まだ 2 つの単語 (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}