在 Mac 上使用 texstudio 在 amsbook 中实现多种语言

在 Mac 上使用 texstudio 在 amsbook 中实现多种语言

我在 MacBook Pro 上的 texstudio 中使用以下 LaTeX 代码(我省略了一些内容):

\documentclass{amsbook}

\usepackage{fancyhdr,etoolbox}

\pagestyle{fancy}
\fancyhf{}
\fancyhead[LE,RO]{\thepage}
\fancyhead[LO]{\nouppercase\rightmark}
\fancyhead[RE]{\nouppercase\leftmark}

\renewcommand{\contentsname}{Table of contents}
\makeatletter
\patchcmd{\@tocline}
  {\hfil}
  {\leaders\hbox{\,.\,}\hfil}{}{}
\makeatother

\begin{document}

\pagestyle{plain}

\frontmatter

\title{\textsc{AAAZZZ}}
\author{LZ}

\maketitle

\chapter*{Abstract}
The goal of this book is to describe the theories from A to Z, \ldots

\chapter*{Acknowledgements}
I offer my sincerest gratitude to my left shoulder and right arm, \ldots

\tableofcontents

\mainmatter

\cleardoublepage

\pagenumbering{arabic}
\pagestyle{fancy}

\chapter{Preliminaries on A}

\chapter{Results on Z}

\appendix

\chapter{More results on Z}

\backmatter

\begin{thebibliography}{10}

\end{thebibliography}

\end{document}

我想在英文文本中使用一些带重音符号的中文和法语以及其他可能的语言(例如越南语),例如“九转罗汉掌,乾坤大挪移,马克撕魔鬼,étale à la PA Østvær, Hölder et Ngô Bảo Châu”,方法是直接从键盘输入(而不是每次都使用 \'etale 等,因为我经常使用它们)。有没有一种简单的方法可以同时使用这些语言,只需在上面添加几行代码即可?

相关内容