Prefiero crear mi bibliografía manualmente porque soy exigente con el formato y necesito que cada entrada bibliográfica tenga una sangría francesa y una línea vacía después. Estoy bien con este código:
\documentclass[12pt]{memoir}
\begin{document}
\par \noindent \hangindent=0.9cm Leyser, Karl J. \textit{Medieval Germany and Its Neighbours, 900--1250}. London, England: The Hambledon Press, 1982.\\
\par \noindent \hangindent=0.9cm Marongiu, Antonio. ``A Model State in the Middle Ages: The Norman and Swabian Kingdom of Sicily.'' \textit{Comparative Studies in Society and History} 6, iii (1964): 307--320.\\
\end{document}
Etcétera, pero estoy seguro de que hay una manera de ahorrarme todo este formato de un plumazo redefiniendo el estilo del párrafo al principio del capítulo.
Probé el paquete titlesec, pero me temo que, aunque lo he usado para formatear los encabezados de mis secciones en el pasado, no sé lo suficiente para hacerlo funcionar en este caso.
Estaría muy agradecido si alguien pudiera indicarme la dirección correcta y tal vez decirme cómo volver al estilo de párrafo predeterminado al final de la bibliografía...
¡Gracias de antemano!
Respuesta1
Simplemente use el mecanismo incorporado, es decir list
:
\documentclass[12pt]{memoir}
\usepackage{lipsum}
\newenvironment{mybib}
{\section*{\bibname}
\list{}{%
\topsep=0pt
\partopsep=0pt
\parsep=0pt
\leftmargin=0.9cm
\itemindent=-\leftmargin
\itemsep=\baselineskip}}
{\endlist}
\begin{document}
\lipsum[2]
\begin{mybib}
\item Leyser, Karl J. \textit{Medieval Germany and Its Neighbours, 900--1250}.
London, England: The Hambledon Press, 1982.
\item Marongiu, Antonio. ``A Model State in the Middle Ages: The Norman and
Swabian Kingdom of Sicily.'' \textit{Comparative Studies in Society and History}
6, iii (1964): 307--320.
\end{mybib}
\end{document}
Respuesta2
natbib
es una poderosa alternativa:
\documentclass[12pt]{article}
\usepackage{lipsum}
\usepackage[authoryear]{natbib}
\setlength{\bibsep}{1\baselineskip}
\setlength{\bibhang}{0.9cm}
\begin{document}
\lipsum[2]
\begin{thebibliography}{}
\bibitem[Leyser(1982)]{ley82} Leyser, Karl J. \textit{Medieval Germany
and Its Neighbours, 900--1250}. London, England: The Hambledon
Press, 1982.
\bibitem[Marongiu(1964)]{mar64} Marongiu, Antonio. ``A Model State in
the Middle Ages: The Norman and Swabian Kingdom of Sicily.''
\textit{Comparative Studies in Society and History} 6, iii (1964):
307--320.
\end{thebibliography}
\end{document}
Respuesta3
Uso \everypar{}
y \parskip
:
\documentclass[12pt]{memoir}
\usepackage{kantlipsum}
\begin{document}
\kant[2]
\section*{References}
{\parindent0pt
\parskip\baselineskip
\everypar{\hangindent.9cm}
Leyser, Karl J. \textit{Medieval Germany and Its Neighbours, 900--1250}.
London, England: The Hambledon Press, 1982.
Marongiu, Antonio. ``A Model State in the Middle Ages: The Norman
and Swabian Kingdom of Sicily.'' \textit{Comparative Studies in
Society and History} 6, iii (1964): 307--320.
}
\end{document}