如何更改特定的日文字体样式?
\documentclass{article}
\usepackage{CJKutf8}
\begin{document}
\begin{CJK*}{UTF8}{min}
\section{これは最初のセクションである}
日本語で \LaTeX の組版を実証するための導入部分。
フォントはまた、数学的な形態および他の環境で使用することができる
\end{CJK*}
\bigskip
Outside the environment Latin characters may be used.
\begin{CJK*}{UTF8}{goth}
\section{これは最初のセクションである}
I want to change the japanese font style of this number 2?
\end{CJK*}
\end{document}
答案1
我在 Windows 10、TeX Live 2022 上运行了以下代码xelatex
。你应该从下载字体/adobe-fonts/source-han-serif/OTF/Japanese/ 的索引和/adobe-fonts/source-han-sans/OTF/Japanese/ 的索引. 右键单击这些otf
字体文件为所有用户安装这些字体。
\documentclass{article}
\usepackage{xeCJK}
\setmainfont{TeX Gyre Termes}
\setsansfont{TeX Gyre Heros}
\setmonofont{TeX Gyre Cursor}
\setCJKmainfont{Source Han Serif}
\setCJKsansfont{Source Han Sans}
\setCJKsansfont{Source Han Serif}
\begin{document}
\section{これは最初のセクションである}
日本语で \LaTeX の组版を実証するための导入部分。
フォントはまた、数学的な形态および他の环境で使用することができる
Outside the environment Latin characters may be used.
\section{これは最初のセクションである}
I want to change the japanese font style of this number 2?
\sffamily
\section{これは最初のセクションである}
日本语で \LaTeX の组版を実証するための导入部分。
フォントはまた、数学的な形态および他の环境で使用することができる
Outside the environment Latin characters may be used.
\section{これは最初のセクションである}
I want to change the japanese font style of this number 2?
\ttfamily
\section{これは最初のセクションである}
日本语で \LaTeX の组版を実証するための导入部分。
フォントはまた、数学的な形态および他の环境で使用することができる
Outside the environment Latin characters may be used.
\section{これは最初のセクションである}
I want to change the japanese font style of this number 2?
\end{document}