使用以下代码
\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}
针对类别book
和report
。
使用第一个选项:
\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}