将特定段落更改为 Gothic 字体?

将特定段落更改为 Gothic 字体?

只是想问一下我如何才能更改特定段落的字体?只想更改“将此字体更改为 MS Gothic”段落而不运行任何编译器。

 \documentclass{article}
  \usepackage[utf8]{inputenc}

  \title{Font Gothic}
  \author{Udot}
  \date{September 2022}

  \begin{document}

  \maketitle

  \section{Introduction}

  {Change this font into MS Gothic}


  {Don't change this font}

  \end{document}

答案1

用 运行XeLaTeX

\documentclass{article}
\usepackage{fontspec}
\newfontfamily\msgothic{MS Gothic}
\title{Font Gothic}
\author{Udot}
\date{September 2022}
\begin{document}
\maketitle
\section{Introduction}
{\msgothic Change this font into MS Gothic}

Don't change this font
\end{document}

在此处输入图片描述

相关内容