太字テキストにはCalibriを使用し、その他にはCalbri Lightを使用します。

太字テキストにはCalibriを使用し、その他にはCalbri Lightを使用します。

さまざまな方法でさまざまなフォントを使用するスレッドはたくさんありますが、それでも私が探しているものではありません。 Calibri Light をメイン フォントとして使用する必要がありますが、そうすると何も太字にできません。 Calibri (Light ではない) を使用すると機能しますが、通常のテキストが Light になりません。 どうすればこれを解決できますか? 2 つを切り替える必要があるかもしれませんが、もちろん最善の解決策は\textbfCalibri Light をメイン フォントとして使用することです。 何か提案はありますか?

以下に最小限の例を示します。

\documentclass[11pt, oneside, a4paper]{report}
\usepackage{fontspec}
    \setmainfont{Calibri Light}
\begin{document}
    This is normal text, while ... \\
    ... \textbf{this should be bold, but it is not!}
\end{document}

ああ、Calibri を扱えないのでlualatexを使用します。pdflatex

答え1

ここに画像の説明を入力してください

\documentclass[11pt, oneside, a4paper]{report}
\usepackage{fontspec}
    \setmainfont[BoldFont=Calibri]{Calibri Light}
\begin{document}
    This is normal text, while ... \\
    ... \textbf{this should be bold, but it is not!}
\end{document}

関連情報