我怎样才能列举参考文献?

我怎样才能列举参考文献?

我尝试写一篇练习论文,但遇到了一些问题。例如,为什么我在目录中看不到参考文献,为什么参考文献章节的数字是 2 而不是 3,为什么数字 2 和字母 R 之间的间距较小?这些问题容易解决吗?

\documentclass[a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{stmaryrd}
\usepackage{euscript}
\linespread{1.6}
\begin{document}
\newcommand{\F}{\mathbb{F}}
\newcommand{\N}{\mathbb{N}}
\newcommand{\Q}{\mathbb{Q}}
\newcommand{\Z}{\mathbb{Z}}
\newcommand{\R}{\mathbb{R}}
\newcommand{\C}{\mathbb{C}}
\newcommand{\card}{\operatorname{card}}
\newcommand{\Hom}{\operatorname{Hom}}
\newtheorem{defi}{Definition}[section]
\newtheorem{nota}{Notation}[section]
\newtheorem{lem}{Lemma}[section]
\newtheorem{exam}{Example}[section]
\newtheorem{corp}{Corollary}[section]
\newtheorem{prop}{Proposition}[section]
\newtheorem{theo}{Theorem}[section]
\newtheorem{note}{Note}[section]
\renewcommand{\refname}{\thesection\ References}
\renewcommand{\bibname}{\thesection\ References}
\tableofcontents
\newpage
\section{Abstract}
\section{Chapter first}
\subsection{Subchapter1}
something
\subsection{Subchapter2}
Now we can conclude the following~\cite{author}
\begin{thebibliography}{9}
\bibitem{author} Author, Title, Journal
\end{thebibliography}
\end{document}

答案1

忘记重命名\refname并简单地使用»托比宾«。

\documentclass[11pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[nottoc,numbib]{tocbibind}

\begin{document}
  \tableofcontents

  \bigskip
  \begin{thebibliography}{9}
    \bibitem{key} Author, Title, Journal
  \end{thebibliography}
\end{document}

答案2

首先,您说的是“部分”而不是“章节”。事实上,该类article不支持章节。

要获得“参考”部分的正确名称和间距,请替换

\renewcommand{\refname}{\thesection\ References}

\renewcommand{\refname}{\thesection\hspace{1em}References}

为了获得正确的编号,你必须发出命令

\refstepcounter{section}

在您的环境之前thebibliography

最后,要将信息添加到目录中,您必须发出命令

\addcontentsline{toc}{section}{\refname}

完整代码(我删除了不需要的部分):

\documentclass[a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{stmaryrd}
\usepackage{euscript}
\linespread{1.6}
\begin{document}

\renewcommand{\refname}{\thesection\hspace{1em}References}

\tableofcontents
\newpage

\section{Abstract}
\section{Chapter first}
\subsection{Subchapter1}
something
\subsection{Subchapter2}
Now we can conclude the following~\cite{author}

\refstepcounter{section}
\begin{thebibliography}{9}
\addcontentsline{toc}{section}{\refname}
\bibitem{author} Author, Title, Journal
\end{thebibliography}
\end{document} 

输出:

在此处输入图片描述

相关内容