Beamer プレゼンテーションで丸括弧なしで引用を取得するにはどうすればよいですか?

Beamer プレゼンテーションで丸括弧なしで引用を取得するにはどうすればよいですか?

私は、表に引用名を入力したいBeamerプレゼンテーションを作成しています。私は を使用していますcite{bibid}。これは丸括弧内の引用を生成するので、避けたいです。私の前文は次のとおりです。

\documentclass{beamer}
\usepackage{csquotes}
\usepackage{ragged2e}
\usepackage{diagbox}
\usepackage{textcomp}
\usepackage{tabularx}
\usepackage{multirow}
\usepackage{array}
\usepackage{bibentry}
\usepackage{harvard}
\usepackage{bookman}
\newcolumntype{P}[1]{>{\centering\arraybackslash}p{#1}}
\usetheme{Singapore} 
\usecolortheme{beaver} 
\usefonttheme{structuresmallcapsserif}
\setbeamerfont{serif}{size=\large, series=\bfseries}
\AtBeginDocument{\usebeamerfont{structurebold}}

テーブルは

\begin{frame}[fragile]{\huge Literature Survey}
    \justifying
    \begin{table}
        \begin{tabular}{||P{25mm} | p{8cm} ||}
        \hline
         Author & \hspace{25mm}Key Findings \\\hline
         \cite{kawamura1998state} & bla bla bla\\\hline
         \cite{waag2014critical} & bla bla bla\\\hline
        \end{tabular}
        \caption{Triathlon results}
    \end{table}
\end{frame}

リクエストに応じたMWEB:

\documentclass{article}


\begin{filecontents}{\irbref.bib}
@inproceedings{kawamura1998state,
    title={State of {C}harge {E}stimation of {S}ealed {L}ead-{A}cid {B}atteries {U}sed for {E}lectric {V}ehicles},
    author={Kawamura, Atsuo and Yanagihara, Takahiro},
    booktitle={PESC 98 Record. 29th Annual IEEE Power Electronics Specialists Conference (Cat. No. 98CH36196)},
    volume={1},
    pages={pp. 583--587},
    month={22 May 1998},
    address={Fukuoka, Japan},
    year={1998},
    organization={IEEE}
}

@article{waag2014critical,
    title={Critical {R}eview of the {M}ethods for {M}onitoring of {L}ithium-ion {B}atteries in {E}lectric and {H}ybrid {V}ehicles,},
    author={Waag, Wladislaw and Fleischer, Christian and Sauer, Dek Uwe},
    journal={Journal of Power Sources,},
    volume={258},
    pages={pp. 321--339},
    year={2014},
    publisher={Elsevier}
}
\end{filecontents}

\begin{document}

\cite{key}

\bibliographystyle{agsm3}
\bibliography{\irbref}

\end{document}

デフォルトの agsm パッケージのソース コードを編集して、太字や斜体などを取得し、カスタム agsm3 スタイルを作成しました。お役に立てば幸いです。

答え1

引用natbib管理パッケージは、ドキュメントクラスで問題なく動作します。引用管理パッケージによって提供される、およびbeamerなどの参考文献スタイルとの完全な互換性を確保するには、もロードしてください。(このアドバイスはagsmdcuharvardhar2natないに固有のものですbeamer

引用文を作成するために\cite、およびを使用します。\citep括弧と\citealp引用文のコールアウトを作成するそれなし括弧。

ここに画像の説明を入力してください

\documentclass{beamer}

\usepackage{natbib,har2nat}
\setcitestyle{aysep={}} % optional
\bibliographystyle{dcu} % or some other suitable bib style

\begin{filecontents}[overwrite]{mybib.bib}
@misc{smith:01,author="Sam Smith",title="Thoughts",year=3001}
\end{filecontents}

\begin{document}
\begin{frame}
\cite{smith:01}, \citep{smith:01}, \citealp{smith:01}.
\end{frame}

\begin{frame}
\bibliography{mybib}
\end{frame}
\end{document}

関連情報