我需要在 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}