LuaLaTeX で Beamer ファイルを処理しています.
数式を数式らしく表示するには
\usefonttheme{professionalfonts}
が必要と学んだのですが,一方で
\usefonttheme[onlymath]{serif}
と書けとの説明も見かけました.
一方だけ書いたファイル,両方書いたファイルで試してみましたが,文字間は若干変わるものの,フォントは同じでした.数式部以外への影響は分かりませんでした.
改めて質問ですが,上記2つのコマンドの効果に違いはあるのでしょうか.すなわち,両方併記しておいた方がよいのか,好みで一方だけ書けば十分なのか.
ご存じの方,お教えいただけると幸いです.
山下
なお,試したファイルは以下です.
\documentclass[luatex,10pt,xcolor=dvipsnames]{beamer}
\usepackage{luatexja}
\usepackage[haranoaji,no-math,deluxe]{luatexja-preset}
\renewcommand{\kanjifamilydefault}{\gtdefault}
\usefonttheme{professionalfonts} % 行頭に%を付けたり外したりする
\usefonttheme[onlymath]{serif} % 行頭に%を付けたり外したりする
\usetheme{PaloAlto}
\setbeamertemplate{navigation symbols}{}
\begin{document}
\begin{frame}[t]
\frametitle{テスト}
\begin{equation}
\int_0^{\infty}\frac{\partial f}{\partial x}(x)\mathrm{d}x
\end{equation}
TeX Wiki は,TeX,LaTeX,PDF などに関する情報を提供する,読者参加型ページです.誰でも編集できますので,「誤りを見つけた」「読みづらいので直したい」「最新情報を追記したい」などあれば,気軽に編集して下さい.12345
TeX Live is intended to be a straightforward way to get up and running with the TeX document production system. 12345
\end{frame}
\end{document}