Here's a MWE to mess with :
Code: Select all
\documentclass[12pt,letterpaper,twoside]{book}
\usepackage{lmodern}
\usepackage{amsmath}
\usepackage{tensor}
\usepackage[e]{esvect} % Choice of options a, b, c, d, e, f, g, h.
\newcommand{\bvec}[1]{\mathbf{#1}}
\begin{document}
Some nice but fat arrows from the \emph{esvect} package :
\begin{equation}
\vv{\bvec{i}} \cdot ( \vv{\bvec{j}} \times \vv{\bvec{k}} ) \ne \tensor{\vv{\bvec{u}}}{_r} = \vv*{\bvec{u}}{r} = \vv{\bvec{u}}_r.
\end{equation}
The default arrows have an italic-like shape that I want to remove :
\begin{equation}
\vec{\bvec{i}} \cdot ( \vec{\bvec{j}} \times \vec{\bvec{k}} ) \ne \tensor{\vec{\bvec{u}}}{_r} = \vec{\bvec{u}}_r.
\end{equation}
\end{document}