我正在使用report
文档类,遇到了一个奇怪的问题。目录和参考书目都有章节编号,这很令人惊讶。请参阅以下 MWE
\documentclass{report}
\usepackage[utf8]{inputenc}
\usepackage[a4paper, margin=0.8in]{geometry}
\usepackage[style=nature]{biblatex}
\addbibresource{references.bib}
\DeclareUnicodeCharacter{2212}{-}
\usepackage{siunitx}
\usepackage{tabularx}
\usepackage{array}
\usepackage{amsmath}
\usepackage{booktabs}
\usepackage{makecell}
% figures
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{float}
\usepackage{hyperref}
\usepackage[protrusion=true]{microtype}
\usepackage[capitalise,noabbrev]{cleveref}
\usepackage{fancyhdr}
\usepackage{authblk}
\usepackage{titlesec}
\titleformat{\chapter}{}{}{0em}{\bf\LARGE\thechapter.~}
\usepackage[nottoc,numbib]{tocbibind}
\date{}
\begin{document}
\input{title}
\tableofcontents
\clearpage
%Introduction
\chapter{Introduction}
\input{Intro}
\clearpage
%
\chapter{Chap1}
\clearpage
\printbibliography[heading=bibintoc]
\end{document}
如果能提供任何关于如何删除这些数字的建议,我将非常感激,因为它们看起来很奇怪。谢谢!
答案1
我认为问题是由于“目录”和“参考书目”标题的排版方式与\chapter
您重新定义以包含章节号的方式相同。您的 MWE 不会输出参考书目部分,但使用该tocloft
包我们至少可以修复目录部分。
\documentclass{report}
\usepackage{titlesec}
\titleformat{\chapter}{}{}{0em}{\bf\LARGE\thechapter.~}
\usepackage{tocloft} %<--
\renewcommand{\cfttoctitlefont}{\bf\LARGE} %<--
\begin{document}
\tableofcontents
\chapter{Introduction}
\chapter{Chap1}
\end{document}