书目图标和 natbib 包与 APAlike 风格相冲突

书目图标和 natbib 包与 APAlike 风格相冲突

我希望我的投影仪上有参考书目图标和Author (Year)。如果我包括,\usepackage(natbib)我将获得Author (Year)我想要的 APAlike 参考书目样式,但我不会bibliography icons在我的参考文献上获得。相反,如果我禁用\usepackage(natbib)我将不要采用Author (Year)类似 APA 的书目风格我想要的,但我会在我的参考中得到bibliography icons,你可以在我的 MWE 中看到它

\documentclass{beamer}
\usetheme{Madrid}
\usepackage[english]{babel}

% begin bib
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{greenwade49,
    author  = "George D. Greenwade",
    title   = "The {C}omprehensive {T}ex {A}rchive {N}etwork ({CTAN})",
    year    = "1949",
    journal = "TUGBoat",
    volume  = "14",
    number  = "3",
    pages   = "342--351"
}
\end{filecontents}
%end bib
%\usepackage{natbib}

\begin{document}
\begin{frame}

I do not want this style \cite{goossens86}\\ nor \cite{greenwade49}

\end{frame}
%%bib config 

\begin{frame}[allowframebreaks]{~}
    \frametitle[]{~}
    \def\newblock{}
    %\begin{block}[allowblockbreaks]{~}
    \bibliographystyle{apalike}
    \bibliography{\jobname}
\end{frame}

\end{document}

我想保留APAlikebibliography icons风格Author (Year)

相关内容