如何书写张量或左右双向量符号

如何书写张量或左右双向量符号

双向量符号在 T 上面该怎么写?

在此处输入图片描述

我在格里菲斯的《E&M》中看到过它,它是张量的简写。

答案1

$\overleftrightarrow T$是给出最接近结果的。

在此处输入图片描述

答案2

主要思想来自https://tex.stackexchange.com/a/479765/201158 在此处输入图片描述

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{arrows.meta}
\makeatletter
\newlength\lrvec@height
\newlength\lrvec@width
\newif\iflrvec@same@height
\def\lrvec{\@ifstar\slrvec@\lrvec@}
\newcommand{\slrvec@}[2][.4ex]{
  \lrvec@same@heighttrue
  \mathpalette\lrvec@@{{#1}{#2}}
}
\newcommand{\lrvec@}[2][.4ex]{
  \lrvec@same@heightfalse
  \mathpalette\lrvec@@{{#1}{#2}}
}
\def\lrvec@@#1#2{\lrvec@@@#1#2}
\def\lrvec@@@#1#2#3{%
  \iflrvec@same@height
    \settoheight{\lrvec@height}{$\m@th#1 \mathbf{T}#3$}
  \else
    \settoheight{\lrvec@height}{$\m@th#1#3$}
  \fi
  \settowidth{\lrvec@width}{$\m@th#1#3$}
  \kern.08em
  \raisebox{#2}{\raisebox{\lrvec@height}{\rlap{%
    \kern-.05em
    \begin{tikzpicture}[<-> /.tip={To[width=.4em, length=.2em]}]
      \draw [<->] (-.05em,0)--(\lrvec@width+.05em,0);
    \end{tikzpicture}%
  }}}%
  #3
  \kern.08em
}
\makeatother

\begin{document}
Overleftrightarrow: $\lrvec{\mathrm{T}}\lrvec{a}$

With same height: $\lrvec*{\mathrm{T}}\lrvec*{c}$

Above arrow sep: $\lrvec{a}\lrvec[1ex]{a}$

In script: $T_{\lrvec{a}}$

In display math:

\[
  \lrvec{a}\lrvec{\sum_{i=1}^{n} a^n}
\]
\end{document}

相关内容