複数のセクションを含む参考文献

複数のセクションを含む参考文献

私が何を望んでいるのか説明してみます。参考文献を 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*

おそらく次のようになります。これは 3 つのレベルの参考文献の見出しを使用します。

  1. 全体的な見出しが 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}

生産する

3つの見出しレベル

関連情報