overrightarrow 的替代方案/选项

overrightarrow 的替代方案/选项

我想输入类似于 $\overrightarrow v$ 的内容。对我来说,箭头的长度看起来太大,尖端的尺寸也太宽(尤其是在放大字体大小为 18 的情况下)。好像 $v$ 被箭头遮住了。我有什么选择和/或替代方案?作为第二个考虑因素,我寻找在 Matlab 中也可以使用的东西。

答案1

LaTeX 中最常用的一些矢量符号命令。对于 Matlab 矢量,我找到了以下链接(使用\bar{v}): https://www.mathworks.com/matlabcentral/answers/21984-tex-latex-math-mode-symbols-in-legends-and-labels-in-matlab-figures

在此处输入图片描述

\documentclass[a4paper,12pt]{article}
\usepackage{mathtools,verbatim,mathabx}
\usepackage[b]{esvect}
\begin{document}

\begin{verbatim} The arrow of the question.
\end{verbatim}
\[\overrightarrow{v}\]
\begin{verbatim} With esvect package option [b].
\end{verbatim}
\[\vv{v}\]
\begin{verbatim} Using \overline{v}.
\end{verbatim}
\[\overline{v}\]
\begin{verbatim} Using \widebar{v} with mathabx package.
\end{verbatim}
\[\widebar{v}\]

\begin{verbatim} Using usual \vec{v}.
\end{verbatim}
\[\vec{v}\]

\begin{verbatim} Using usual \bar{v}.
\end{verbatim}
\[\bar{v}\]

\end{document}

相关内容