Currently, the default bold "
a" in mathmode is like the one from this compilable code :
Code: Select all
\documentclass[12pt,letterpaper]{article}
\usepackage[utf8]{inputenc}
\usepackage[french]{babel}
% A macro to change the default vectors :
\let\oldhat\hat
\renewcommand{\vec}[1]{\mathbf{#1}}
\renewcommand{\hat}[1]{\oldhat{\mathbf{#1}}}
\begin{document}
A vector :
\begin{equation}
\vec{a}
\end{equation}
\end{document}
It has the same shape as "
a" (see the small "arm" above the letter). I would like to change it to the one without this "arm" : a letter which looks like a round shape, the same "a" as shown in the code snippet above (hard to describe, since I don't know its name). How can I do that ?