將點積符號放置得稍低一些

將點積符號放置得稍低一些

我想在以下表達式中複製點積符號的位置: 在此輸入影像描述

我需要點積符號具有相似的厚度,\bigcdot儘管符號位置位於“中心”(與 + 符號的水平線處於同一水平),但我可以設法使用 來獲得該符號。有解決辦法嗎?我想將字體包保留為\mathptmx.

答案1

你可以這樣做,但我不建議使用這種模稜兩可的符號。

\documentclass{article}
\usepackage{mathptmx}
\usepackage{amsmath}

\DeclareSymbolFont{boldface}{OT1}{ptm}{bx}{n}
\DeclareSymbolFontAlphabet{\mathbf}{boldface}
\DeclareMathSymbol{\wrongdot}{\mathord}{boldface}{`.}

\begin{document}

\[
(\mathbf{r}-\mathbf{i}-2\mathbf{j})\wrongdot(3\mathbf{i}+\mathbf{j}+\mathbf{k})=0.
\]

\end{document}

在此輸入影像描述

該名稱\wrongdot是隨機選擇的。

相關內容