在我的论文中,我把所有章节名称都用小写字母书写(教授要求我这样做)。我使用它biblatex
来自动生成参考书目,但它会生成通常的标题,而没有 sc。
因为这是唯一一个未用小写字母书写的“章节”,所以我真的很感激任何能帮助我以 sc 形式获得它的人。
在这里,我根据评论中的建议添加了我的 MWE:
\begin{filecontents*}{provainternet.bib}
@book{gianvittorioDiscorsoDiEraclito2010,
title = {Il Discorso Di {{Eraclito}}: Un Modello Semantico e Cosmologico Nel Passaggio Dall'oralità Alla Scrittura},
author = {Gianvittorio, Laura},
date = {2010},
publisher = {{G. Olms}},
location = {{Hildesheim}},
isbn = {978-3-487-14386-6},
keywords = {Eraclito}
}
\end{filecontents*}
%%%%%%%%%%%%%%%%%%%
\documentclass[a4paper,12pt,oneside, titlepage]{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[latin,greek.ancient,english, italian]{babel}
\usepackage[style=archaeologie, doi=false, url=false,isbn=false,backend=biber, style=archaeologie, bibstyle=philosophy-verbose, citestyle=authoryear-ibid,scauthors=cite]{biblatex}
\addbibresource{provainternet.bib}
\begin{document}
\tableofcontents
\chapter{\textsc{my first chapter}}
\section{\textsc{my first section}}
I cite this\footcite{gianvittorioDiscorsoDiEraclito2010}.
\printbibliography[heading=bibintoc]
\end{document}
答案1
如果您希望章节/节标题采用小写字母,请将文档设置为自动将节标题格式化为小写字母。不要添加\textsc
每个标题命令。
book
您可以使用该类titlesec
(章节标题采用小写字母, 也可以看看如何设置 \section 标题(和章节等)的字体)。
\documentclass[a4paper,12pt,oneside, titlepage]{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[latin,greek.ancient,english, italian]{babel}
\usepackage[sc]{titlesec}
\usepackage[
backend=biber,
bibstyle=philosophy-verbose, citestyle=authoryear-ibid,
scauthors=cite
doi=false, url=false,isbn=false,
]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\tableofcontents
\chapter{My first chapter}
\section{My first section}
I cite this\footcite{sigfridsson}.
\printbibliography[heading=bibintoc]
\end{document}