Three dots accent above a symbol in the label of the figure ??
14 views (last 30 days)
Show older comments
Nertjana Ustalli
on 7 May 2018
Commented: Nertjana Ustalli
on 7 May 2018
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 ?
0 Comments
Accepted Answer
the cyclist
on 7 May 2018
Edited: the cyclist
on 7 May 2018
This worked for me
figure()
xlabel('$\stackrel{...}{x}$','interpreter','latex');
More Answers (1)
the cyclist
on 7 May 2018
I don't think
\dddot
exists in LaTeX itself. You could try
\overset{...}
0 Comments
See Also
Categories
Find more on Axis Labels in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!