更改引文/参考文献样式

更改引文/参考文献样式

我想更改文章中的引用/参考样式。到目前为止,我遵循以下样式:

\begin{thebibliography}{10}
    \bibitem{ii} Andrew, B., \textit{An introduction to p-adic numbers and p-adic analysis}, URL:https://www.maths.gla.ac.uk/ $\sim$ajb.
    \bibitem{kj} Bachman, G., \textit{Introduction to p-adic numbers and valuation theory}, Academic Press, \textbf{1964}.
    \bibitem{hj}Conrad, K., \textit{Infinite series in p- adic fields},\\ 
    URL:https://www.math.uconn.edu/$ \sim$kconrad/blurbs/gradnumthy/infseriespadic.pdf
    \bibitem{citekey} Dragovich, B., Khrennikov, A.Y., Kozyrev, S.V. et al. P-Adic Num Ultrametr Anal Appl (2009) 1: 1. https://doi.org/10.1134/S2070046609010014
    \bibitem{brancho-1} Dragovich, B., Power series everywhere convergent on $\mathbb{R}$ and all $\mathbb{Q}_p$, J. Math. Phys., \textbf{1993}.
    \bibitem{brancho-2} Dragovich, B., \textit{On some p-adic series with factorials}, arXiv preprint math-ph/0402050, \textbf{2004}.
    \bibitem{jgh} Gouvea, F. Q., p-adic numbers : An introduction, 2nd Edition, Springer-Verlag, \textbf{1997}.
    \bibitem{j}Katok, S., \textit{p-adic analysis compared with real}, American Mathematical Society, \textbf{2007}.
    \bibitem{abc} Koblitz, N., \text{p-adic Numbers, p-adic Analysis, and Zeta-functions}, Springer, \textbf{1984}.
    \bibitem{jhg} Robert, A. M., \textit{A course in p-adic analysis}, Springer-Verlag, \textbf{2000}.
     \bibitem{schi-1}   W. H. Schikhof, \textit{Ultrametric Calculus} Cambridge U.P., Cambridge, \textbf{1984}..
\end{thebibliography}

这将产生以下样式正文部分(引文部分)(参见突出显示的部分):

在此处输入图片描述

并且在参考部分,它看起来像(参见突出显示的部分):

在此处输入图片描述

但我希望引用部分和参考部分都采用以下样式:

在此处输入图片描述

也就是说,我想显示作者姓名的几个字母而不是数字 $1,2,3,...$

任何帮助都可以做如最后一张图所示的参考。

编辑:

如何展示以下风格(其中不仅提到论文,还会提到命题或定理):

在此处输入图片描述

答案1

由于您是手动生成参考书目,因此您确实必须手动完成参考书目中的所有操作。这包括提供所需的引用标签(如果它们不是数字)。

引文标签可以在可选参数中给出\bibitem\bibitem[<citation label>]{<cite key>}。然后,您应该在强制参数中给出最长的引文标签thebibliography(在下面的示例中,最长的标签是Dr~3

\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{hyperref}
\begin{document}
\cite{brancho-1}

\cite[Prop.~1.5.8]{ii}

\begin{thebibliography}{Dr~3}
  \bibitem[An]{ii} Andrew, B., \textit{An introduction to p-adic numbers and p-adic analysis},
    URL: \url{https://www.maths.gla.ac.uk/~ajb}.
  \bibitem[Ba]{kj} Bachman, G., \textit{Introduction to p-adic numbers and valuation theory},
    Academic Press, \textbf{1964}.
  \bibitem[Co]{hj}Conrad, K., \textit{Infinite series in p-adic fields},
    URL: \url{https://www.math.uconn.edu/~kconrad/blurbs/gradnumthy/infseriespadic.pdf}
  \bibitem[Dr~1]{citekey} Dragovich, B., Khrennikov, A.Y., Kozyrev, S.V. et al.
    P-Adic Num Ultrametr Anal Appl (2009) 1: 1. \url{https://doi.org/10.1134/S2070046609010014}
  \bibitem[Dr~2]{brancho-1} Dragovich, B., Power series everywhere convergent
    on~$\mathbb{R}$ and all~$\mathbb{Q}_p$, J. Math. Phys., \textbf{1993}.
  \bibitem[Dr~3]{brancho-2} Dragovich, B., \textit{On some p-adic series with factorials},
    arXiv preprint math-ph/0402050, \textbf{2004}.
  \bibitem[Go]{jgh} Gouvea, F. Q., p-adic numbers: An introduction,
    2nd Edition, Springer-Verlag, \textbf{1997}.
  \bibitem[Ka]{j}Katok, S., \textit{p-adic analysis compared with real},
    American Mathematical Society, \textbf{2007}.
  \bibitem[Ko]{abc} Koblitz, N., \textit{p-adic Numbers, p-adic Analysis, and Zeta-functions},
    Springer, \textbf{1984}.
  \bibitem[Ro]{jhg} Robert, A. M., \textit{A course in p-adic analysis},
    Springer-Verlag, \textbf{2000}.
  \bibitem[Sc]{schi-1} Schikhof, W. H. , \textit{Ultrametric Calculus},
    Cambridge U.P., Cambridge, \textbf{1984}.
\end{thebibliography}
\end{document}

[An, Prop. 1.5.8]//[An] Andrew, B., p-adic 数和 p-adic 分析简介,URL:https://www.maths.gla.ac.uk/~ajb。

对定理,命题,引理等的具体引用可以通过可选参数给出\cite\cite[<pinpoint reference>]{<cite key>}

相关内容