I'm trying to write a presentation which contains math equations using beamer. But my problem is that there are some math symbols which can't show.
Here's my code example.
\documentclass{beamer}
\usetheme{Boadilla}
\usecolortheme{seahorse}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{mathrsfs}
\usepackage{mathtools}
\begin{document}
\begin{frame}
First Definition :
Bla bla bla and $ Z_{t}(x) \neq Z_{t}(x*) $ for at least one $ t $.
Second Definition :
Maximize (or Minimize)
\[Z \preccurlyeq (\succcurlyeq) Z_{0}\]
subject to
\[Ax \preccurlyeq (\succcurlyeq) b\]
\[x \geq 0\]
\end{frame}
\end{document}
For example using this math equations code, math symbol \neq, \preccurlyeq, and \succcurlyeq make no results, just blanks.
What happened? Thank you in advance.
mathtoolsloadsamsmath, andamssymbloadsamsfonts, so your preamble can be tightened up. – barbara beeton Dec 09 '22 at 18:37