Ich möchte einen Weg finden, Drop-Caps (große Anfangsbuchstaben mehrere Zeilen hoch) in pdfLaTeX zu produzieren. Ich weiß, dass es ein dropping
Paket gibt, das gut funktioniert, wenn es mit latex
+ dvips
verwendet wird. Bei Verwendung mit pdflatex
sieht das Ergebnis jedoch hässlich aus.Drop-Caps in pdfLaTeX
Meine Quelldatei ist:
\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}
Wenn ich es als
latex drop.tex && dvips -T 12cm,8cm drop.dvi
kompilieren das Ergebnis OK ist:
dropping-latex-dvips http://i44.tinypic.com/i6cl5h.png
Als ich Kommentar- [pdftex]
Linien und kompilieren als
pdflatex drop.tex
die Ergebnisse ist:
dropping-pdflatex http://i44.tinypic.com/111mr83.png
Kann jemand empfehlen, einen besseren Weg Kappen zu produzieren fallen mit pdflatex
?
Ich vermute, dass das nicht helfen wird. Das W fällt gut - die Basislinie ist nach unten gerutscht - aber es ist nicht groß genug. –
Droping ist bekannt, nicht gut mit pdflatex zu arbeiten. wenn lettrine nicht für ihn arbeitet, ziehe ich diese antwort zurück. – hop