LaTeX 中的特殊字符

LaTeX 中的特殊字符

在 LaTeX 中使用特殊字符的最佳方法是什么?我在这里看到一些答案建议我应该使用 LuaLaTeX,但我对它的格式不熟悉,而且我刚刚开始使用 LaTeX 编写项目报告。

LaTeX 序言:

\documentclass[english]{report}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{geometry}
\usepackage{pgf}
\usepackage{pgfpages}

此代码应该打印页面中心的文本和行。但是,当我使用 &、' 等字符时,它会显示错误。我在这里以我所在学院的名称为例

\pagebreak
\hspace{0pt}
\vfill
\begin{center}
PIMPRI CHINCHWAD EDUCATION TRUST’S
\end{center}
\vfill
\hspace{0pt}
\pagebreak

错误:

! Package inputenc Error: Keyboard character used is undefined
(inputenc)                in inputencoding `latin9'.

See the inputenc package documentation for explanation.
Type  H <return>  for immediate help.
 ...                                              

l.49 PIMPRI CHINCHWAD EDUCATION TRUST��
                                       �S
? H
You need to provide a definition with \DeclareInputText 
or \DeclareInputMath before using this key.
? 

相关内容