如何在使用 BibLatex 时减小“参考文献”的字体大小?

如何在使用 BibLatex 时减小“参考文献”的字体大小?

我有几乎同样的问题,但我使用的是 BibLatex。我希望“参考文献”的大小与文档中子节“问题 1”的标题大小相同。我尝试了链接问题中建议的更改,但对我来说不起作用。

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[]{amsthm}
\usepackage[]{amssymb} %gives us the character \varnothing
\usepackage{amsmath} 
\usepackage{commath}
\usepackage{indentfirst}
\usepackage{hyperref} %lets us use links
\hypersetup{%
  bookmarksnumbered=true,%
  bookmarks=true,%
  colorlinks=true,%
  linkcolor=blue,%
  citecolor=blue,%
  filecolor=blue,%
  menucolor=blue,%
  urlcolor=blue,%
  pdfnewwindow=true} 
\usepackage[backend=biber,
style=alphabetic,
sorting=nyt]{biblatex}
\addbibresource{bib.bib} 

\begin{document}

\newtheorem{lem}{Lemma}
\newtheorem{thm}{Theorem}
\newtheorem{cor}{Corollary}

\maketitle

\subsection*{Problem 1}

Blah blah blah blah.

\printbibliography

\end{document}

答案1

article类似类biblatex的默认参考书目标题中使用\section*

如果你想要一个\subsection*,你可以使用

\printbibliography[heading=subbibliography]

如果你根本不打算使用\sections ,因为它们的字体大小对你来说太大,那么更好的办法是将\section的字体大小调小。(使用 s\subsection作为最高分段级别可能会导致分段编号产生奇怪的副作用。)请参阅更改章节、小节、小小节、段落和小段落标题的大小寻求帮助。

相关内容