我按照 github 存储库中提供的示例文档将 cleanthesis 与 overleaf(--> 我猜是 CTAN 的 0.4.0 版本?)结合使用。然而,我在库中遇到了意外行为。
- 我书目中的每一项
(cit. on p. X)
末尾都有这个。我很想去掉它,但不知道该怎么做。 - 我想根据引用对我的参考书目进行排序 -->
bibsorting=none
但是这不起作用。 - 我尝试使用自己的 biblatex 选项
configurebiblatex=false
,但根本不起作用,然后 cleanthesis 会抛出错误,提示 biblatex 包已加载了不同的选项
我在 cleanthesis 之前加载的唯一软件包是[utf8]{inputenc}
和[english]{babel}
。我很乐意继续使用 cleanthesis,因为我非常喜欢它的风格,并感谢任何帮助!
编辑:添加了 MVP
\documentclass[paper=A4,twoside=false,openright,parskip=full,chapterprefix=true,11pt,bibliography=totoc,listof=totoc,titlepage=on,captions=tableabove,draft=false]{scrreprt}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[figuresep=colon,sansserif=false,hangfigurecaption=false,hangsection=true,hangsubsection=true,colorize=bw,colortheme=bluemagenta,configurebiblatex=true,bibsys=biber,bibfile=bib-refs,bibstyle=numeric,bibsorting=none,]{cleanthesis}
\begin{document}
\cite{hochreiter1997long}
\cite{devlin2018bert}
\printbibliography
答案1
该cleanthesis
软件包发出biblatex
选项backref=true
。
您可以通过添加将其设置为 false
\ExecuteBibliographyOptions{backref=false}
加载后cleanthesis
。