ドキュメントの途中で段落スタイルを再定義するにはどうすればいいですか (その後デフォルトに戻すにはどうすればいいですか)?

ドキュメントの途中で段落スタイルを再定義するにはどうすればいいですか (その後デフォルトに戻すにはどうすればいいですか)?

私は書式設定にこだわりがあり、各書誌項目にぶら下げインデントとその後の空行が必要なので、参考文献を手動で作成することを好みます。次のコードでうまくいっています:

\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}

関連情報