문서 중간에 단락 스타일을 재정의한 다음 기본값으로 돌아가려면 어떻게 해야 합니까?

문서 중간에 단락 스타일을 재정의한 다음 기본값으로 돌아가려면 어떻게 해야 합니까?

나는 서식이 까다롭기 때문에 수동으로 참고문헌을 작성하는 것을 선호하며, 각 참고문헌 항목에는 들여쓰기가 있고 그 뒤에 빈 줄이 있어야 합니다. 나는 이 코드로 잘 지내고 있습니다.

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


MWE


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

관련 정보