비머 프레젠테이션에서 둥근 괄호 없이 인용을 얻는 방법은 무엇입니까?

비머 프레젠테이션에서 둥근 괄호 없이 인용을 얻는 방법은 무엇입니까?

표에 인용명을 입력하고 싶은 비머 프리젠테이션을 만들고 있습니다. 을 사용하고 있습니다 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}

et al.의 내용을 굵게 표시하고 기울임꼴로 표시하기 위해 기본 agsm 패키지의 소스 코드를 편집했습니다. 사용자 정의 agsm3 스타일을 만들었습니다. 도움이 되었기를 바랍니다.

답변1

인용 natbib관리 패키지는 문서 클래스와 잘 작동합니다 beamer. 인용 관리 패키지 에서 제공하는 agsm및 같은 일부 참고문헌 스타일과의 완전한 호환성을 위해 해당 패키지 도 로드해야 합니다 . (이 조언은dcuharvardhar2nat~ 아니다에만 해당됩니다 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}

관련 정보