I am a long-time user of calendar.sty, however I am new to LuaTeX / LuaLaTeX.
I switched to LuaLaTeX so I could use Greek letters from the LuaLaTeX package unicode-math package (see link and link). The transition to LuaTeX was mostly smooth, except I noticed that bold fonts are no longer working.
The culprit seems to be the calendar.sty package. When using calendar.sty, bold fonts render correctly with PDFTeX but not with LuaTeX. Here is a MWE:
\documentclass{article}
\usepackage{fontspec}
\usepackage[inner=1.5cm,outer=1.5cm,top=2.5cm,bottom=2.5cm]{geometry}
%from https://www.latextemplates.com/template/monthly-calendar
\usepackage{calendar} % Use the calendar.sty style
\usepackage{palatino} % Use the Palatino font
\title{Test}
\author{Ethan Alvarée}
\date{July 2022}
\begin{document}
\maketitle
\section{Introduction}
Hello. I am testing \textbf{bold} fonts.
\end{document}
Here is a live Overleaf project demonstrating the issue. Any workaround ideas? Thanks in advance!
\setmainfont{texgyrepagella}instead (that is a palatino clone). – Ulrike Fischer Sep 15 '22 at 08:02