在 Latex 中使用 Tensor 双点,使用 tensor 包

在 Latex 中使用 Tensor 双点,使用 tensor 包

我目前正在努力寻找一种写作方式: 在此处输入图片描述

我知道和\cdots\cdot但输出是一个点和三个点,而不是两个。有什么办法可以解决我的问题吗?

提前致谢。

答案1

您可以定义自己的符号;因为它是一个二进制运算,所以使用\mathbin;然后该\cdot符号可以重复两次。

\documentclass{article}
\usepackage{amsmath}
\usepackage{lmodern}

\DeclareMathAlphabet{\mathsfbfsl}{OT1}{\sfdefault}{bx}{sl} % for boldface slanted sans serif

\newcommand{\vct}[1]{\mathbf{#1}}
\newcommand{\tns}[1]{\mathsfbfsl{#1}}
\newcommand{\cddot}{\mathbin{{\cdot}{\cdot}}}

\begin{document}

$\vct{T}=\tns{C}\cddot\vct{E}$

\end{document}

在此处输入图片描述

相关内容