如何用下划线代替箭头来写矢量?

如何用下划线代替箭头来写矢量?

我不喜欢带箭头的矢量的外观$\vec{x}$。我更喜欢用下划线来表示它,但是当我用谷歌搜索时,没有找到任何可以告诉我如何操作的方法。有人知道吗?

\documentclass[a4paper,11pt]{article}


\begin{document}

 \vec{x} 

\end{document}

答案1

这里是对几种表示向量的技术的比较(我不确定\overline\underline因为我不认为这是标准用法):

在此处输入图片描述

代码:

\documentclass{article}
\usepackage{amsmath} 


\begin{document}
$\vec{x}$  $\overline{x}$  $\underline{x}$  $\mathbf{x}$

$\vec{\mathbf{x}}$  $\overline{\mathbf{x}}$  $\underline{\mathbf{x}}$ 
\end{document}

答案2

您可以更新该命令\vec

\renewcommand{\vec}[1]{\underline{#1}}

在这种情况下,如果您使用\vec矢量,则矢量将被加下划线。如果您改变主意,想要使用点或其他任何内容,您可以更改定义,\vec文档中的所有内容将在下一次编译中自动更改。

\documentclass{standalone}
\usepackage{amsmath}

\renewcommand{\vec}[1]{\underline{#1}}

\begin{document}
\[
   \vec{x} = \cdots % "x" will be underlined
\]
\end{document}

相关内容