I've updated my latex packages yesterday and have now issues with lualatex. One problem arising for me now is, that lualatex does not print bold characters using the bm package.
When I compile the following MWE with pdflatex everything looks okay, but for lualatex it doesn't:
\documentclass{article}
\usepackage{bm}
\begin{document}
%
Bold $\bm{E}$
\\
Normal $E$
%
\end{document}
Output using pdflatex
using lualatex
Also trying to fall back to an earlier version of lualatex by using \RequirePackage{luatex85} does not work for me.
When having a look at the log file, there are the suspicious messages
LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 142.
LaTeX Info: Redefining \bm on input line 208.
[...]
Missing character: There is no х (U+0445) in font cmmi10!
Can anyone tell me, what is going on here and what I need to do to solve this problem, since I am quite sure lualatex and bm worked before?




\bmtries to produce the Unicode characterU+0445instead of\mathchar30021. It should work if you loadunicode-math. Apart from that, I consider this a regression. – Henri Menke Jun 15 '16 at 12:00bmis a great package! – Henri Menke Jun 15 '16 at 12:03