Fonts & Character Sets\boldsymbol doesn't work with concmath-otf

Information and discussion about fonts and character sets (e.g. how to use language specific characters)
Post Reply
hmzenwar
Posts: 1
Joined: Sat Jul 23, 2022 10:24 am

\boldsymbol doesn't work with concmath-otf

Post by hmzenwar »

In the presence of \usepackage[no-text]{concmath-otf}, \boldsymbol doesn't perform the expected task. Just compare p and p'.

Code: Select all

%!TeX XeLaTeX
\documentclass{article}
\usepackage[french]{babel}
\usepackage{amsmath,amsthm}
%\usepackage{amsfonts,amssymb}  %conflict with concmath-otf
\usepackage[no-text]{concmath-otf}
\renewcommand*\familydefault{\ttdefault}
\usepackage[OT1]{fontenc}

\begin{document}

\paragraph{Existence de \( p \) et de \( \boldsymbol{p'} \).}

\end{document}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
kaiserkarl13
Posts: 707
Joined: Tue Mar 25, 2008 5:02 pm

\boldsymbol doesn't work with concmath-otf

Post by kaiserkarl13 »

This happens because there is no math bold italic font available for the typeface you are using. I was able to get an approximation to it by using "poor man's boldface" (\pmb) in place of \boldsymbol, but that's not a perfect substitute.
Post Reply