Three dots accent above a symbol in the label of the figure ??

14 views (last 30 days)
I want to write in the label of my figure a symbol with three dots above the symbol (representative of the third derivative). I know that is possible to create a symbol with two dots above the symbol through the latex interpretation for example xlabel (${\ddot{\phi}}$,'Interpreter','latex') but the function xlabel (${\dddot{\phi}}$,'Interpreter','latex') in order to have a symbol with three dots above doesn't work. Do you know there is any way to do it ?

Accepted Answer

the cyclist
the cyclist on 7 May 2018
Edited: the cyclist on 7 May 2018
This worked for me
figure()
xlabel('$\stackrel{...}{x}$','interpreter','latex');
  1 Comment
Nertjana Ustalli
Nertjana Ustalli on 7 May 2018
Yeeeeeeeeeeeeeeeeeeeeeees Thank you very much it works!!!!! Great and thank you again :D

Sign in to comment.

More Answers (1)

the cyclist
the cyclist on 7 May 2018
I don't think
\dddot
exists in LaTeX itself. You could try
\overset{...}

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!