如何将这个拉脱维亚字母“s”与顶部的“nose”联系起来?

如何将这个拉脱维亚字母“s”与顶部的“nose”联系起来?

本次讨论是对此的延伸回答但在 Beamer -documentclass 和 XeLaTeX 中。我可以在 Pdflatex 中找到一些变体,请参阅 Christian 的回答但是输出效果很差,我并不需要它,因为我失去了 XeLaTeX 提供的良好布局。

代码基于egreg 的回答我认为这为解决 XeLaTeX 中的这个问题提供了最好的扩展性

\documentclass{beamer}
\usepackage[T1]{fontenc}
\usepackage{newunicodechar}
\begin{document}
\begin{titlepage}   
š
\end{titlepage}
\end{document}

上述讨论中提供的任何选项均不适用于 XeLaTeX。

不输出任何内容。

答案1

fontspec如果您想使用 XeLaTeX,请使用:

\documentclass{beamer}

\usepackage{fontspec}

\begin{document}
\begin{frame}
š and math $a+b=c$
\end{frame}
\end{document}

在此处输入图片描述

答案2

我认为最好不要这样做fontspec。只需使用

\v{s}

相关内容