从回忆录的参考书目中删除章节编号

从回忆录的参考书目中删除章节编号

对于我的博士论文,我使用memoir类。我有一些章节,每个章节都以参考书目结尾。我希望在章节和目录中,参考书目标题都没有编号。我可以这样做吗?

编辑:正如@Werner 正确建议的那样,我提供了一个例子。

这是我的主要.tex 文件。

\documentclass[a4paper,twoside,italian,12pt,openright]{memoir}
\usepackage{tocloft}
\aliaspagestyle{part}{empty}
\usepackage[font=small]{quoting}
\usepackage[utf8]{inputenc}
\usepackage[italian]{babel}
\usepackage[T1]{fontenc}
%\usepackage{fancyhdr}
\usepackage{indentfirst}
\usepackage[sectionbib]{chapterbib}
\usepackage[usenames]{color}
\definecolor{citations}{rgb}{0,.5,.5} % color for in text citations
\usepackage{doi}
\usepackage{hyperref}
\hypersetup{
   colorlinks,breaklinks,
   linkcolor = {black},
   urlcolor = {blue},
   anchorcolor = {blue},
   citecolor = {citations}}
\usepackage{microtype}
\usepackage{mathptmx}
\usepackage{rotating} 
\usepackage{multirow}
\usepackage{amsmath} 
\usepackage{url}
%\usepackage[singlespacing]{setspace} 
%\usepackage[top=3cm,bottom=3cm,right=3cm,left=3.5cm]{geometry} 
\usepackage{graphicx}

\usepackage[font=footnotesize,labelfont=bf,labelsep=space]{caption} 
\DeclareCaptionFormat{myformat}{#1#2#3\hrulefill}
\captionsetup[figure]{format=myformat}

\usepackage{textcomp} 
\usepackage[natbibapa]{apacite}

\pagestyle{ruled}

\raggedbottom


\settocdepth{subsection}
\setsecnumdepth{subsection}

\renewcommand*\rmdefault{ppl} 

\graphicspath{{Figures/}}

\title{Title}
\date{}
\author{Author}

\begin{document}
    \chapterstyle{veelo}
    \frontmatter
    \begin{KeepFromToc}
        \tableofcontents
    \end{KeepFromToc}
    \mainmatter
    \cftaddtitleline{toc}{part}{Introduzione teorica}{}
    \part*{Introduzione teorica}
        \include{Chapters/Chapter1}
        \include{Chapters/Chapter2}
        \include{Chapters/Chapter3}
    \cftaddtitleline{toc}{part}{Lavori di ricerca}{}
    \part*{Lavori di ricerca}
        \include{Chapters/Chapter4}
        \include{Chapters/Chapter5}
    \cftaddtitleline{toc}{part}{Conclusioni generali}{}
    \part*{Conclusioni generali}
        \include{Chapters/Conclusions}
    \backmatter
    \cftaddtitleline{toc}{part}{Appendice}{}
    \chapter*{Appendice}
    \listoffigures
    \listoftables
\end{document}

每个章节文件以以下内容结尾:

\bibliographystyle{apacite}
\bibliography{D:/Documents/library}

这会产生如下的目录:

1章节标题

1.1 章节名称

1.2 章节名称

...

1.6 参考书目

我希望它看起来像这样:

1章节标题

1.1 章节名称

1.2 章节名称

...

参考书目

此外,我还希望参考书目标题不在每章内编号。

相关内容