如何使 \textbf{.} 垂直居中?

如何使 \textbf{.} 垂直居中?

这个 MWE 很接近但不完全准确:

\documentclass{article}
\begin{document}
$\cdot$\raisebox{2pt}{\textbf{.}}$\cdot$
\end{document}

答案1

\documentclass{article}
\usepackage{amsmath}
\begin{document}
$\cdot\vcenter{\hbox{\textbf{.}}}\cdot$ but what is that good for, or why is it
better than \verb|\boldsymbol|: $\cdot\boldsymbol{\cdot}\cdot$
\end{document}

在此处输入图片描述

答案2

只是一个临时解决方案,但是它可以起作用

\documentclass{article}
\begin{document}
 \phantom{x}
 \vfill
$\cdot$\raisebox{2pt}{\textbf{.}}$\cdot$
\vfill
 \phantom{x}
\end{document}

要获得精确的页面中心文本空间,您必须调整边距、页脚和页眉的大小。

相关内容