整个参考书目都缩进

整个参考书目都缩进

这可能是一个简单的问题,但我找不到正确配置这一切的方法。我的参考书目被移到了右边,它不是从行首开始的:

我的代码是这样的:

\documentclass[twoside,floatfix,11pt]{article}
\usepackage[english]{babel}
\usepackage{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{graphics}
\usepackage{geometry}
\geometry{marginparwidth=0.01cm,verbose,a4paper,top=25mm,bottom=25mm,left=30mm,right=20mm}
\usepackage{setspace}
\usepackage{lmodern}
\usepackage{amssymb}
\usepackage{amsmath, amsthm}
\usepackage{amsmath,amscd}
\usepackage{hyperref}
\usepackage[all,cmtip]{xy}
\usepackage{verbatim}
\usepackage{indentfirst}
\usepackage{listings}
\usepackage{multirow}
\usepackage{tabu}
\usepackage{subcaption}
\usepackage{footmisc}
\usepackage{accents}
\usepackage{comment}
\usepackage[outercaption]{sidecap}
\captionsetup{compatibility=false}
\def \dif {\mathrm{d}}
\def\beq{\begin{equation}}
\def\eeq{\end{equation}}
\def\beqa{\begin{eqnarray}}
\def\eeqa{\end{eqnarray}}

\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{} % sets both header and footer to nothing
\renewcommand{\headrulewidth}{0pt}
\fancyhead[LE,RO]{\textit{Epsilon}}
\fancyhead[LO,RE]{\textit{\thepage}}

\linespread{1.3}

\usepackage{etoolbox}
\patchcmd{\section}
  {\centering}
  {\raggedright}
  {}
  {}
\patchcmd{\subsection}
  {\centering}
  {\raggedright}
  {}
  {}

\usepackage{titlesec}
\titleformat{\section}
  {\titlerule%
  \normalfont\bfseries\Large}
  {\thesection}{1em}{}[\titlerule]

 \titleformat{\subsection}
  {\normalfont\bfseries}
  {\thesubsection}{1em}{}[\titlerule]


\makeindex
\begin{document}

\begin{thebibliography}

\bibitem{Alpha} Alpha, Betha, Gamma (2019) State of the art of Delta

\end{thebibliography}

\end{document}

我怎样才能让它从“参考文献”的 R 下方开始计数?这很奇怪,因为如果我切换到revtex4代替文章,它可以正确显示(除了其他不兼容性)。

答案1

您的示例文档产生了许多指向 之后行的错误消息\begin{thebibliography}。该命令的正确用法是\begin{thebibliography}{<width of widest label>},因此您可以看到您的示例中缺少第二个选项。

\documentclass{article}
\begin{document}

\begin{thebibliography}{11}
\bibitem{Alpha} Alpha, Betha, Gamma (2019) State of the art of Delta
\end{thebibliography}

\end{document} 

相关内容