0

An undefined control sequence is shown in the line.

\centerline{\LARGE{$\bm{\mathfrak{ Dedicated \ to}}$}}
Bernard
  • 271,350

1 Answers1

1

You need to load amsfonts for \mathfrak and bm for \bm, but you can avoid \bm:

\documentclass{article}
\usepackage{amsfonts}

\begin{document}

\begin{center} \usefont{U}{euf}{b}{n}\LARGE Dedicated to \end{center}

\end{document}

enter image description here

Explanation: the \mathfrak declaration uses the euf font family with U encoding because of

    \DeclareMathAlphabet{\mathfrak}{U}{euf}{m}{n}
    \SetMathAlphabet{\mathfrak}{bold}{U}{euf}{b}{n}

in amsfonts.sty.

You can get different styles of Fraktur or similar scripts with yfonts.

\documentclass{article}
\usepackage{yfonts}

\begin{document}

\begin{center} \frakfamily\LARGE Dedicated to \end{center}

\begin{center} \gothfamily\LARGE Dedicated to \end{center}

\begin{center} \swabfamily\LARGE Dedicated to \end{center}

\end{document}

enter image description here

egreg
  • 1,121,712