pdfLaTeX でドロップ キャップ (数行の高さの大きな頭文字) を生成する方法を見つけたいと考えています。+dropping
と併用するとうまく動作するパッケージがあることを知っています。ただし、結果と一緒に使用すると見苦しくなります。latex
dvips
pdflatex
私のソースファイルは次のとおりです。
\documentclass[12pt]{article}
% for pdflatex file.tex # dropping is ugly
% \usepackage[pdftex]{graphicx}
% \usepackage[pdftex]{dropping}
% for latex file.tex ; dvips -T 12cm,8cm file.dvi # dropping is OK
\usepackage[dvips]{graphicx}
\usepackage{dropping}
\usepackage[papersize={12cm,8cm},
left=0.5cm,right=0.5cm,
top=0.5cm,bottom=0.5cm]{geometry}
\begin{document}
\dropping[-3pt]{3}{W}ith a drop cap, the initial sits within the margins and
runs several lines deep into the paragraph, pushing some normal-sized text off
these lines. This keeps the left and top margins of the paragraph flush.
In~modern browsers, this can be done with a combination of HTML and CSS
by~using the float: left; setting.
\end{document}
としてコンパイルすると
latex drop.tex && dvips -T 12cm,8cm drop.dvi
結果はOKです:
行のコメントを外し[pdftex]
てコンパイルすると
pdflatex drop.tex
結果は次のとおりです。
でドロップキャップを作成するより良い方法を提案できる人はいpdflatex
ますか?