参考页面的一些编号即将到来

参考页面的一些编号即将到来

我用过

\def\thebibliography#1{\section{References}%
    \markboth{References}{References}
    \list{[\arabic{enumi}]}{\settowidth\labelwidth{[#1]}\leftmargin
    \labelwidth
    \advance\leftmargin\labelsep
    \usecounter{enumi}}
    \def\newblock{\hskip .11em plus .33em minus .07em}
    \sloppy\clubpenalty4000\widowpenalty4000
    \sfcode`\.=1000\relax}

最后的参考我使用了

\begin{thebibliography}{100}
\end{thebibliography}

现在在 pdf 中我得到了$4.2$参考..为什么这个数字$4.2$出现在参考页面以及目录中?

我不要它。

嗯嗯

\documentclass[a4paper,12pt]{report}
\usepackage[utf8x]{inputenc} 
\usepackage[english]{babel}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{mathtools, nccmath}
\usepackage{blkarray}
\usepackage[titletoc]{appendix}
\usepackage{graphicx}
\usepackage{wasysym}
\usepackage{listings}
\usepackage{color}
\usepackage{tikz}
\usetikzlibrary{patterns}
\usetikzlibrary{decorations.markings}
\usepackage{tabulary}
\usepackage{verbatim}
\usepackage{mathtools} 
\usepackage{afterpage}
\usepackage{delarray}
\usepackage{bm}
\usetikzlibrary{arrows,shapes}
\usepackage{soul}
\usepackage{stackrel}
\theoremstyle{definition}
\newtheorem{thm}{Theorem}[chapter]
\newtheorem{theorem}{Theorem}[chapter]
\newtheorem{cor}[thm]{Corollary}
\newtheorem{lemma}[thm]{Lemma}
\newtheorem{prop}[thm]{Proposition}
\newtheorem{df}{Definition}[chapter]
\newtheorem{example}{Example}[chapter]
\newtheorem{Ex}[thm]{Example}
\newtheorem{ex}[thm]{Example}
\newlength\mylength
\settowidth{\mylength}{\scriptsize Lem.\ 1.1(ii)} 
\newcommand\myeq[1]{\stackrel{\makebox[\mylength]{\scriptsize #1}}{=}}
\DeclareMathOperator{\rank}{rank}
\DeclareMathOperator{\Rank}{Rank}
\definecolor{mygreen}{RGB}{28,172,0}
\definecolor{mylilas}{RGB}{170,55,241}
\clearpage
\def\thebibliography#1{\section{References}%
    \markboth{References}{References}
  \list{[\arabic{enumi}]}{\settowidth\labelwidth{[#1]}\leftmargin
\labelwidth
    \advance\leftmargin\labelsep
    \usecounter{enumi}}
    \def\newblock{\hskip .11em plus .33em minus .07em}
    \sloppy\clubpenalty4000\widowpenalty4000
    \sfcode`\.=1000\relax}

答案1

您的bibliography环境使用

\section{References}

设置一个部分编号。如果你不想这样,那么使用

\section*{References}
\addcontentsline{toc}{section}{\protect\numberline{}References}

根据 的(重新)定义thebibliograhy,标题应正确设置为References(通过\markboth)。

添加\protect\numberline{}可确保\section目录中标题的对齐方式正确 - 编号或未编号部分。如果删除它,References标题将与其他(编号)元素左对齐。

相关内容