参考书目为未编号部分

参考书目为未编号部分

我正在使用memoir类,并且希望没有编号参考(用这个标题代替参考书目)在每章末尾。

这是我的 MWE:

\documentclass[12pt, openright, twoside, a4paper, chapter=TITLE]{memoir}
\usepackage[sort&compress,sectionbib]{natbib}


\begin{document}
\chapter{This is the first chapter}
    \section{One section, please}
    This is just a dumb text to fill this space and make an example. Ok, I have not enough creativity to keep creating text. What about doing copy paste? So that is what I am going to do. Blah blah blah...

    Here I should cite some author. Let's cite Einstein! \cite{einstein1935can}

    \section{Another section, please}
    This is just a dumb text to fill this space and make an example. Ok, I have not enough creativity to keep creating text. What about doing copy paste? So that is what I am going to do. Blah blah blah...

    \bibliographystyle{unsrt}
    \bibliography{_bib}
    

\end{document}

这是_bib.bib文件内容:

@article{einstein1935can,
    title       = {Can quantum-mechanical description of physical reality be considered complete?},
    author      = {Einstein, Albert and Podolsky, Boris and Rosen, Nathan},
    journal     = {Physical review},
    volume      = {47},
    number      = {10},
    pages       = {777},
    year        = {1935},
    publisher   = {APS}
    }

有谁可以帮忙吗?

相关内容