使用 IEEE 标准在 Beamer 中引用

使用 IEEE 标准在 Beamer 中引用

我正在使用beamer,我需要有 IEEE Trans. 样式来引用 中的论文\footfullcite。我的编译结果是这样的:

如您所见,这不是 IEEE 标准格式(不需要 ISSN 等)。此外,我希望引用作者姓名,而不是“数字/字母顺序”。您能帮我做吗?谢谢。

在此处输入图片描述


\documentclass[10pt,xcolor={dvipsnames}]{beamer}
\usefonttheme{professionalfonts}
\usepackage{mathtools}
\setbeamersize{text margin left=8mm,text margin right=8mm} 
\usepackage{textpos}
\usepackage[utf8]{inputenc}
\usepackage{array}

\graphicspath{{Figs/}}
\usepackage[outdir=./]{epstopdf}
\usepackage{changepage}
\usepackage{caption}
\usepackage{subcaption}

\usepackage[style=authortitle,backend=bibtex]{biblatex}
\addbibresource{refs.bib}


\mode<presentation> {

\usecolortheme{whale}
\setbeamercolor{section in head/foot}{bg=black!80!blue,fg=white}

\setbeamertemplate{navigation symbols}{}
}

\usepackage{graphicx} 
\usepackage{booktabs} 
\setbeamertemplate{caption}[numbered]
\usepackage{caption}
\usepackage{subcaption}
\usepackage{sidecap}


\begin{document}

\begin{frame}

%@article{gardner2006cyclostationarity,
%   title = "Cyclostationarity: Half a century of research",
%   journal = "Signal Processing",
%   volume = "86",
%   number = "4",
%   pages = "639 - 697",
%   year = "2006",
%   author = "William A. Gardner and Antonio Napolitano and Luigi Paura",
%   keywords = "Cyclostationarity, Almost-cyclostationary time series, Almost-cyclostationary processes, Bibliography"
%}

\frametitle{\textbf{What is Cyclostationarity?} - 1}

\vspace*{-0.5cm}
\setbeamertemplate{itemize items}[square]
\begin{itemize}
    \item There is a special type of non-stationary stochastic processes when their statistical properties vary periodically with time called {\color{Blue}cyclostationary} processes~{\color{red} [Gardner'06]}. 
\end{itemize}

\vspace*{5cm}
\rule{0.45\linewidth}{0.2pt}\\
\tiny {\color{red} [Gardner'06]} {W. A. Gardner et al., ``Cyclostationarity: Half a century of research," Signal Processing, vol. 86, no. 4, pp. 639 – 697, 2006.}

\end{frame}

\end{document} 

答案1

你可以将biblatex-ieee'sstyle=ieee-alphabetic与我的答案一起使用使用分割框架对投影仪中的引文进行编号

\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage[style=ieee-alphabetic, backend=bibtex]{biblatex}
\addbibresource{biblatex-examples.bib}

\makeatletter
\newcommand*{\mkblankfootnote}[1]{%
  \begingroup
    \renewcommand\thefootnote{}%
    \footnotetext{\bibfootnotewrapper{#1}}%
  \endgroup
}

\newcommand*{\mkbibsupercite}[1]{%
  \def\cbx@savedcites{\cbx@footfullcite}%
  \mkbibbrackets{#1}%
  \ifx\cbx@savedkeys\@empty
  \else
    \cbx@savedcites
  \fi}

\DeclareCiteCommand{\supercite}[\mkbibsupercite]
  {\gdef\cbx@savedkeys{}}
  {\usebibmacro{citeindex}%
   \usebibmacro{cite}%
     {}%
   \xappto\cbx@savedkeys{\thefield{entrykey},}}
  {\supercitedelim}
  {\protected@xappto\cbx@savedcites{%
     [\thefield{prenote}][\thefield{postnote}]{\cbx@savedkeys}}}

\DeclareCiteCommand{\cbx@footfullcite}
  {}
  {\mkblankfootnote{%
     \printtext[labelalphawidth]{%
       \usebibmacro{cite}%
     }%
   \setunit{\addspace}%
   \usedriver
     {\DeclareNameAlias{sortname}{default}}
     {\thefield{entrytype}}}}
  {}
  {}
\makeatother

\begin{document}
\begin{frame}
\frametitle{\textbf{What is Cyclostationarity?} - 1}

\begin{itemize}
    \item There is a special type of non-stationary stochastic processes when their statistical properties vary periodically with time called cyclostationary processes \supercite{sigfridsson}. 
\end{itemize}
\end{frame}
\end{document} 

引用标签为 [SR98],脚注(无编号)内容为:[SR98] E. Sigfridsson 和 U. Ryde,“从静电势和矩得出原子电荷的方法比较”,计算化学杂志,第 19 卷,第 4 期,第 377-395 页,1998 年。doi:10.1002/(SICI)1096-987X(199803)19:4<377::AID-JCC1>3.0.CO;2-P。

相关内容