纯文本引用

纯文本引用

我需要在 Beamer 中文本结束后立即引用一篇论文。在我的示例中,引用出现在文本之后,斜体。我怎样才能将其更改为正常字体?

在此处输入图片描述

答案1

如果您使用quote带有的环境,\cite则可以\upshape在引用之前插入,它会切换到直立字体(而不是斜体)。

\documentclass{beamer}

\begin{document}
\begin{frame}
  \begin{quote}
    ``quotation''\cite{author}
  \end{quote} 
  \begin{quote}
    ``quotation''\upshape\cite{author}
  \end{quote} 
Citation outside quote: \cite{author}
\end{frame}

\begin{frame}
\begin{thebibliography}{9}
\bibitem{author}
Something written by someone.
\end{thebibliography}

\end{frame}
\end{document}

在此处输入图片描述

相关内容