여러 섹션이 있는 참고문헌

여러 섹션이 있는 참고문헌

나는 내가 원하는 것을 설명하려고 노력할 것입니다. 나는 내 참고문헌을 2개의 큰 범주로 나누고 싶습니다. 첫째, 1차 출처(몇 가지 항목만 포함)와 2차 출처입니다. 보조 소스 섹션은 테마에 따라 여러 하위 섹션으로 나뉩니다. "1차 소스" 섹션과 "2차 소스" 섹션 사이에 페이지 나누기가 없었으면 좋겠습니다. 여기에 제공된 몇 가지 해결 방법을 시도했지만 효과가 없었습니다. 두 가지를 같은 페이지에 표시하려면 어떻게 해야 합니까? 도움을 주셔서 감사합니다.

\documentclass[12pt,a4paper,oneside,openany]{memoir}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[style=mla,showmedium=false]{biblatex}
\begin{filecontents}{test.bib}
@inreference{University2010,
  title = {University, n.},
  booktitle = {{{OED Online}}},
  date = {2010},
  edition = {Third Edition},
  publisher = {{Oxford University Press}},
  urldate = {2020-06-25},
  keywords = {dico,secondary}
}
@book{byattPossessionRomance2009,
  title = {Possession: A {{Romance}}},
  shorttitle = {Possession},
  author = {Byatt, A. S.},
  date = {2009},
  publisher = {{Vintage Classics}},
  location = {{London}},
  isbn = {978-0-09-950392-7},
  keywords = {primary},
  langid = {english},
  pagetotal = {511}
}
\end{filecontents}
\addbibresource{test.bib}
\begin{document}
\nocite{*}

\printbibliography[keyword=primary,title=Primary Sources]

\chapter*{Secondary Sources}
\addcontentsline{toc}{chapter}{Secondary Sources}
\printbibliography[heading=subbibliography,keyword=dico,title=Dictionary Entries]
\end{document}

답변1

문서 클래스에서 새 (이중) 페이지를 시작 \chapter하므로 '보조 소스' 제목에 \chapter*사용하지 않습니다 .\chapter*

나는 아마도 다음과 같이 갈 것입니다. 이는 세 가지 수준의 참고문헌 제목을 사용합니다.

  1. 하나의 전체 제목.
  2. 기본/보조 제목입니다.
  3. 키워드 제목.

그 다음에

\documentclass[12pt,a4paper,oneside,openany]{memoir}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[style=mla,showmedium=false]{biblatex}

\defbibheading{subsubbibintoc}[\refname]{%
  \subsection*{#1}%
  \phantomsection
  \addcontentsline{toc}{subsection}{#1}}

\begin{filecontents}{\jobname.bib}
@inreference{University2010,
  title = {University, n.},
  booktitle = {{{OED Online}}},
  date = {2010},
  edition = {Third Edition},
  publisher = {{Oxford University Press}},
  urldate = {2020-06-25},
  keywords = {dico,secondary}
}
@book{byattPossessionRomance2009,
  title = {Possession: A {{Romance}}},
  shorttitle = {Possession},
  author = {Byatt, A. S.},
  date = {2009},
  publisher = {{Vintage Classics}},
  location = {{London}},
  isbn = {978-0-09-950392-7},
  keywords = {primary},
  langid = {english},
  pagetotal = {511}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\nocite{*}

\printbibheading[heading=bibintoc]
\printbibliography[heading=subbibintoc, keyword=primary,title=Primary Sources]
\printbibheading[heading=subbibintoc,title=Secondary Sources]
\printbibliography[heading=subsubbibintoc,keyword=dico,title=Dictionary Entries]
\end{document}

생산하다

세 가지 제목 수준

관련 정보