如何用特殊符号写 Itô?

如何用特殊符号写 Itô?

我正在乳胶上写论文,但我不知道如何在乳胶中用“o”上的符号写出伊藤。有人能告诉我怎么做吗?我需要一个特殊的包吗?

答案1

您可以使用以下方式创建 ô 字符\^{o}

\documentclass[border=10pt]{standalone}
\begin{document}
It\^{o}
\end{document}

或者您可以inputenc使用选项加载包utf8并将字符作为 unicode 字符:

\documentclass[border=10pt]{standalone}
\usepackage[utf8]{inputenc}
\begin{document}
Itô
\end{document}

输出

相关内容