Hi there,
I am using \dot to put at dot on the word but the dot seem very small. Is there any command that can give bigger dot size than \dot.
Thanks in Advance.
Aman
Fonts & Character Sets ⇒ Bigger Size of Dot
Bigger Size of Dot
Last edited by sainistar on Thu Sep 22, 2011 7:42 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Bigger Size of Dot
Hi Aman,
welcome to the board!
You could use the accent package, like I posted here:
Stefan
welcome to the board!
You could use the accent package, like I posted here:
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\usepackage{accents}
\newcommand*{\dt}[1]{%
\accentset{\mbox{\large\bfseries .}}{#1}}
\newcommand*{\ddt}[1]{%
\accentset{\mbox{\large\bfseries .\hspace{-0.25ex}.}}{#1}}
\begin{document}
$\dot{x} \neq \dt{x}$
$\ddot{x} \neq \ddt{x}$
\end{document}
LaTeX.org admin
Re: Bigger Size of Dot
Thanks Stefan.
It works
It works