Я предпочитаю создавать библиографию вручную, потому что я привередлив в отношении форматирования, и мне нужно, чтобы каждая библиографическая запись имела висячий отступ и пустую строку после нее. Я прекрасно справляюсь с этим кодом:
\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}
И так далее, но я уверен, что есть способ избавиться от всего этого форматирования одним росчерком, переопределив стиль абзаца в начале главы.
Я попробовал пакет titlesec, но боюсь, что хотя я и использовал его для форматирования заголовков разделов в прошлом, моих знаний недостаточно, чтобы заставить его работать в этом случае.
Я был бы очень признателен, если бы кто-нибудь указал мне правильное направление и, возможно, подскажет, как вернуться к стилю абзаца по умолчанию в конце библиографии...
Заранее спасибо!
решение1
Просто используйте встроенный механизм, а именно 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}
решение2
natbib
является мощной альтернативой:
\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}
решение3
Используйте \everypar{}
и \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}