Document Classesbeamer \dot{X}

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
CoolnessItself
Posts: 47
Joined: Wed Nov 11, 2009 9:30 pm

beamer \dot{X}

Post by CoolnessItself »

\dot{X} with beamer ends up as an egyptian symbol of sorts. Is there a way to correct this without resorting to different fonts that pervade the entire document? In other words I'd like to keep the entire presentation the same except for the \dot{X}.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

magicmoose
Posts: 90
Joined: Fri Nov 06, 2009 7:29 am

beamer \dot{X}

Post by magicmoose »

A minimal working example would be very useful for anyone trying to help you with this problem

regards
david
CoolnessItself
Posts: 47
Joined: Wed Nov 11, 2009 9:30 pm

beamer \dot{X}

Post by CoolnessItself »

Sorry, I guess this is dependent on usepackage{fourier} for whatever reason, which is required by something else I'm using.

Code: Select all

\documentclass{beamer}

\usepackage{amsmath,amssymb,amsfonts} 
\usepackage[upright]{fourier}



\begin{document}


\frame{
\frametitle{The Equation}
\begin{eqnarray*}
\dot{X} &=& BLAH
\end{eqnarray*}

}
\end{document}
magicmoose
Posts: 90
Joined: Fri Nov 06, 2009 7:29 am

Re: beamer \dot{X}

Post by magicmoose »

That's better

It's actually giving an A with an omega on it, but I still don't know how or why, I'm sure someone else will help you out
User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Re: beamer \dot{X}

Post by frabjous »

I don't know why it doesn't work either, but I guess you could try something like \overset{.}{X} as a temporary workaround.
Post Reply