省略章节引用

省略章节引用

使用以下代码

\documentclass[a4paper,10pt]{article}
\usepackage[T1]{fontenc}

\usepackage{geometry}
\geometry{left=2cm,right=2cm,top=1.5cm,bottom=1.5cm}

\usepackage{pifont}
\usepackage{sectsty}

\usepackage{graphicx}
\usepackage{amsmath,amsfonts,amsthm}

\usepackage[colorlinks=true,linkcolor=blue,urlcolor=blue]{hyperref}

\frenchspacing
\sectionfont{%
  \fontfamily{phv}\bfseries
  \sectionrule{0pt}{0pt}{-5pt}{1pt}%
}
\pagestyle{empty}

\begin{document}

\section*{Papers}
\begin{thebibliography}{9}
 \bibitem{as1} {J. Agler, M. Stankus,} {$m$-Isometric transformations of Hilbert space $I$}, Integral Equations Operator Theory 21 (1995) 383-429.

\bibitem{as2} {J. Agler, M. Stankus,} {$m$-Isometric transformations of Hilbert space $II$}, Integral Equations Operator Theory 21 (1995) 383-429.

\bibitem{as3} {J. Agler, M. Stankus,} {$m$-Isometric transformations of Hilbert space $III$}, Integral Equations Operator Theory 21 (1995) 383-429.

 \end{thebibliography}

\结束{文档}

我明白了 在此处输入图片描述

但我想获得

在此处输入图片描述

答案1

我建议不要使用额外的\section*{...}。而是根据文档类重新定义参考标题(在序言中):

  • \renewcommand{\refname}{Papers}为班级article
  • \renewcommand{\bibname}{Papers}针对类别bookreport

使用第一个选项:

\documentclass[a4paper,10pt]{article}
\usepackage[T1]{fontenc}

\usepackage{geometry}
\geometry{left=2cm,right=2cm,top=1.5cm,bottom=1.5cm}

\usepackage{pifont}
\usepackage{sectsty}

\usepackage{graphicx}
\usepackage{amsmath,amsfonts,amsthm}

\usepackage[colorlinks=true,linkcolor=blue,urlcolor=blue]{hyperref}

\frenchspacing
\sectionfont{%
  \fontfamily{phv}\bfseries
  \sectionrule{0pt}{0pt}{-5pt}{1pt}%
}
\pagestyle{empty}

\renewcommand{\refname}{Papers}

\begin{document}

\begin{thebibliography}{9}
 \bibitem{as1} {J. Agler, M. Stankus,} {$m$-Isometric transformations of Hilbert space $I$}, Integral Equations Operator Theory 21 (1995) 383-429.

\bibitem{as2} {J. Agler, M. Stankus,} {$m$-Isometric transformations of Hilbert space $II$}, Integral Equations Operator Theory 21 (1995) 383-429.

\bibitem{as3} {J. Agler, M. Stankus,} {$m$-Isometric transformations of Hilbert space $III$}, Integral Equations Operator Theory 21 (1995) 383-429.

\end{thebibliography}

\end{document}

在此处输入图片描述

相关内容