‘thebibliography’ 环境错误

‘thebibliography’ 环境错误

我的引用如下:

在此处输入图片描述

如何删除参考文献的名称?

我的代码如下:

\documentclass[12pt]{amsart} 
\pagestyle{plain}

\usepackage{amssymb,amsmath,amscd,mathrsfs,showkeys,enumitem,hyperref,color}
\usepackage[]{datetime}
\usepackage{mathrsfs}
\usepackage{amsthm}
\usepackage[spanish]{babel}
\usepackage[active]{srcltx}
\usepackage{enumerate}
\usepackage{color,graphicx}
\usepackage{graphics}
\usepackage{amsmath,amssymb}
\usepackage{array}
\usepackage{float}
\usepackage{multirow}
\usepackage{stackrel}

\usepackage{tikz}
\usetikzlibrary{decorations.pathreplacing,calc}
\usepackage{graphicx}

\newcommand{\veryhigh}[3]% base, exponent, text
{   \begin{tikzpicture}
        \node (tempnode-0) at (0,0) {$#1$};
        \foreach \mytext [count=\c] in {#2}
        { \pgfmathtruncatemacro{\b}{\c-1}
            \node[above right,font=\tiny,inner sep=3pt] (tempnode-\c) at (tempnode-\b) {$\mytext$};
            \xdef\maxexp{\c}
        }
        \draw [decoration={brace,amplitude=4pt,mirror,raise=2pt},decorate] ($(tempnode-1.south east)+(-0.13,0.13)$) -- node[below right=1mm,font=\tiny] {#3} ($(tempnode-\maxexp.south east)+(-0.13,0.13)$);
    \end{tikzpicture}
}



\newtheorem{teorema}{Teorema}[]
\newtheorem{definicion}{Definici\'on}
\newtheorem{observacion}{Observaci\'on}
\newtheorem{corolario}{Corolario}
\newtheorem{lema}{Lema}
\newtheorem{proposicion}{Proposici\'on} \newtheorem{ejemplo}{Ejemplo}
\newtheorem{notacion}{Notaci\'on}
\setlength{\parindent}{0cm}
\newtheorem{definition}{Definición}[section]
\renewcommand{\baselinestretch}{1.5}
\setlength{\textheight}{680pt}
\setlength{\voffset}{-60 pt}
\setlength{\textwidth}{420 pt}
\hoffset-1cm
\setlength{\parindent}{0pt}

\begin{document}

Some random text with one reference \cite{web}.

\begin{thebibliography}{10}
\bibitem{metode}
Bayer, P. \textit{The Riemann hypothesis.The great pending mathematical challenge}, Mètode Science Studies Journal, 8 (2018), https://doi.org/10.7203/metode.8.8903

\bibitem{067}
Calderón, C. \textit{La Función Zeta de Riemann}, Revista Real Academia de Ciencias. Zaragoza. 57: 67–87, (2002).

\bibitem{numbers}
Uriarte, C. \textit{La Función Zeta de Riemann y su relación con la distribución de los números primos}, Universidad del País Vasco, (2018).

\bibitem{zalamea}
Lautman, A. \textit{Ensayos sobre la dialéctica, estructura y unidad de las matemáticas modernas}; edición, estudio introductorio y traducción de Fernando 
Zalamea. -- Bogotá: Universidad Nacional de Colombia. Facultad de Ciencias 
Humanas: Embajada de Francia en Colombia, (2011).

\bibitem{gaceta}
Ledesma, N.,  Ferreirós, J. \textit{Cavaillès y Lautman: Repensar las matemáticas en torno a 1935}, La Gaceta de la RSME, Vol. 13 (2010), Núm. 1, Págs. 153–177

\bibitem{web}
Digital Library of Mathematical Functions \textit{Zeta and Related Functions}, https://dlmf.nist.gov/25

\end{thebibliography}

\end{document}

答案1

您正在加载包showkeys,它用于显示标签、参考和引用的键。这在编写新文档时很有用,但应该在最终文档中停用。为此,您可以删除包或使用显式选项加载它final,或者更改

\documentclass[12pt]{amsart}

进入

\documentclass[12pt,final]{amsart}

或改变

\usepackage{amssymb,amsmath,amscd,mathrsfs,showkeys,enumitem,hyperref,color}

进入

\usepackage{amssymb,amsmath,amscd,mathrsfs,enumitem,hyperref,color}

并可选择添加

\usepackage[final]{showkeys}

如果您只是想停止显示键,\cite但仍想显示环境键thebibliography和其他键,则可以使用重新定义切换\cite

\usepackage{amssymb,amsmath,amscd,mathrsfs,enumitem,hyperref,color}
\usepackage[notcite]{showkeys}

查看showkeys手动的了解有关该包和选项的更多信息。

顺便说一句:因为您使用的是类amsart(不带选项nomath),所以您不需要amsmath在这里显式加载。该类已经加载了它。amssymb也是隐式加载的,可以在这里删除。

相关内容