4

I am using MiKTeX 2.9 for compiling my TeX documents. I am getting an error with contains the line $\mathscript{F}$ showing that it is undefined control sequence. How should I rectify it?

Torbjørn T.
  • 206,688
Ali
  • 91

1 Answers1

5

You're perhaps after $\mathscr{F}$ from the mathrsfs package.

enter image description here

\documentclass{article}
\usepackage{mathrsfs}
\begin{document}
$\mathscr{F}$
\end{document}
Torbjørn T.
  • 206,688