Prefiro construir minha bibliografia manualmente porque sou meticuloso com a formatação e preciso que cada entrada bibliográfica tenha um recuo deslocado e uma linha vazia depois dela. Estou indo bem com 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}
Et cetera, mas tenho certeza de que há uma maneira de evitar toda essa formatação com um único golpe, redefinindo o estilo do parágrafo no início do capítulo.
Tentei o pacote titlesec, mas temo que, embora já o tenha usado para formatar os títulos das seções no passado, não sei o suficiente para fazê-lo funcionar neste caso.
Ficaria muito grato se alguém pudesse me indicar a direção certa e talvez me dizer como voltar ao estilo de parágrafo padrão no final da bibliografia...
Agradeço antecipadamente!
Responder1
Basta usar o mecanismo integrado, ou seja 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}
Responder2
natbib
é uma alternativa poderosa:
\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}
Responder3
Usar \everypar{}
e \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}