
Quiero alinear las dos palabras iniciales en dos oraciones entre sí ('ROM' en la primera línea con 'may' en la segunda línea)
¿Cómo podría hacer eso? Aquí está el código de trabajo:
\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}
Después de usar el paquete 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}
Pero todavía dos palabras (ROM y Mejorar) no están alineadas.
Respuesta1
Para funcionar, lettrine
necesita un conjunto de fuentes totalmente escalables. Los Computer Modern predeterminados no lo son, por razones históricas.
Puedes hacerlos completamente escalables cargandofix-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}
Alternativamente, agregue \usepackage{lmodern}
.
Respuesta2
Creo que también debería utilizar lo proporcionado \LettrineFontHook
para especificar la serie del capital eliminado. Es decir, mi solución es muy parecidaegregpero con esa única diferencia:
\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}