Beamer 中的 textsl

Beamer 中的 textsl

我注意到\textit\textsl在 Beamer 中的行为非常相似。以下 MWE 生成图像:

\documentclass{beamer}

\begin{document}
\begin{frame}{}
\textsl{Welcome to my world!}

\textit{Welcome to my world!}
\end{frame}
\end{document}

如何使这两者有所不同,因为它们属于 Article 类:

\documentclass{article}

\begin{document}
\textsl{Welcome to my world!}

\textit{Welcome to my world!}
\end{document}

答案1

如果选择另一个,你会看到,投影仪在和fonttheme之间有所差异。textsltextit

\documentclass{beamer}

\usefonttheme{serif}

\begin{document}
    \begin{frame}{}
        \textsl{Welcome to my world!}

        \textit{Welcome to my world!}
    \end{frame}
\end{document}

在此处输入图片描述

相关内容