I'm using a custom calligraphic font via newenvironemnt and manual encoding,... (thus without theh math package). It works quite well except when I try to write things bold. From looking around I've seen that there are 2 possibilities: a.) The font I'm using has no bold variant or b.) I'm doing something wrong there (thus with how I set things it overwrites all attempts to make the text bold).
So my question here is twofold: Am I doing something wrong there or if not and I'm really using the wrong font, which font would be better applicable there for what I want to do (having calligraphic fonts in a book and being able to also bold the text)?
\documentclass[10pt,a4paper,BCOR10mm,DIV11,toc=listof,parskip=full, openany]{scrbook}
\newenvironment{calligraphic}%
{
\fontencoding{T1}
\fontfamily{pzc}
\fontseries{m}
\fontshape{it}
\fontsize{12pt}{12pt}
\selectfont
}
{}%
\renewcommand*{\sectfont}{\normalcolor\usefont{T1}{pzc}{m}{it}}
\begin{document}
\begin{calligraphic}
\chapter{test1}
Test \textbf{this is bold}
\end{calligraphic}
Test2 \textbf{this is bold}
\end{document}
Edit: I added a chapter there not sure if its only optical illusion but interestingly chapters SEEM bold there. Edit after Johannes comment: was only an optical illusion because of the size it looks bold but is only a sideeffect of the size itself.


\newcommand{\filler}{To be, or not to be?\par} {\small \filler} {\normalsize \filler} {\large \filler} {\Large \filler} {\Huge \filler}– Johannes_B Aug 01 '14 at 07:17