An undefined control sequence is shown in the line.
\centerline{\LARGE{$\bm{\mathfrak{ Dedicated \ to}}$}}
An undefined control sequence is shown in the line.
\centerline{\LARGE{$\bm{\mathfrak{ Dedicated \ to}}$}}
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}
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}
\usepackage{amssymb,bm}for me. – Henri Menke Apr 23 '22 at 10:51\LARGEdoes not take arguments – daleif Apr 23 '22 at 10:52\mathfrakfor text is not the best idea, in my opinion. – egreg Apr 23 '22 at 12:46