如何以所需的方式引用特定论文的结果?

如何以所需的方式引用特定论文的结果?

我想引用一篇论文中的定理。我使用的是 \cite 引用样式。我使用了以下代码(温埃德乳胶):

We have following lemma $\cite{singh1}$ to find $**************************$.

并以以下方式显示:

在此处输入图片描述

我希望引理以如下方式开始:

引理 1.2 [XYZ,17]

这个格式该怎么写?

我的 tex 代码和输出:

\documentclass[12pt]{article}
\usepackage{latexsym} 
\usepackage{amsthm,amsmath,amssymb,amsmath,amsfonts,graphicx,fancyhdr,algorithmic,longtable,listings,color,epsfig}
\usepackage{setspace}
\usepackage{subfigure}
\usepackage[labelsep=period]{caption}
\usepackage{array}
\usepackage[top=1in, bottom=1in, left=1in, right=1in]{geometry}
\usepackage{mathptmx}
\usepackage{enumerate}
\usepackage[noadjust]{cite}
\usepackage{filecontents}
\usepackage{mathtools}
\usepackage{graphicx,subfigure}
\usepackage{titlesec}
\titleformat*{\section}{\large\bfseries}% change font of section headings
\usepackage{lipsum} % for filler text
\def\demo{%
  \par\topsep6pt plus6pt
  \trivlist
  \item[\hskip\labelsep\it Proof.]\ignorespaces}
\def\enddemo{\qed \endtrivlist}
\expandafter\let\csname enddemo*\endcsname=\enddemo
\newcommand{\tab}{\hspace*{2em}}
\newtheorem{Theorem}{Theorem}[section]
\newtheorem{Definition}{Definition}[section]
\newtheorem{Proposition}{Proposition}[section]
\newtheorem{Lemma}{Lemma}[section]
\newtheorem{Corollary}{Corollary}[section]
\newtheorem{Example}{Example}[section]
\newtheorem{Remark}{Remark}[section]
\newtheorem{Note}{Note}[section]
\newcommand{\R} {\mbox {$ I\!\!R $}}
\newcommand{\bea}{\begin{eqnarray}}
\newcommand{\eea}{\end{eqnarray}}
\newcommand{\be}{\begin{equation}}
\newcommand{\ee}{\end{equation}}
\newcommand{\nn}{\nonumber}
\newcommand{\nii}{\noindent}
\newcommand{\bee}{\begin{eqnarray*}}
\newcommand{\eee}{\end{eqnarray*}}
\usepackage[us,12hr]{datetime}
\fancypagestyle{plain}{\fancyhf{}
\lfoot{\footnotesize Date :  {\ddmmyyyydate\today}}
\rfoot{ \footnotesize \thepage}
\renewcommand{\headrulewidth}{0pt}}
\pagestyle{plain}
\normalsize
\begin{document}
\title{Title of The Paper}
\date{}
\maketitle\begin{abstract}\noindent
The content of the abstract.
\end{abstract}
$~~${\bf Keywords}: 
\section{Introduction}
\noindent Also, we have following lemma \cite{singh1} to .............
\begin{Lemma} \label{distconormal} \cite{singh1} Lemma Statement
\end{Lemma}
\begin{thebibliography}{85}
\bibitem{singh1} P. Singh , Article Title, Journal name.
\end{thebibliography}
\end{document}

在此处输入图片描述

相关内容