Wie zentriere ich \textbf{.} vertikal?

Wie zentriere ich \textbf{.} vertikal?

Dieses MWE ist nahe dran, aber nicht exakt:

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

Antwort1

\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}

Bildbeschreibung hier eingeben

Antwort2

Nur ein Kludge, aber das funktioniert

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

Um die Seitenmitte exakt auf den Textbereich auszurichten, müssen Sie die Ränder sowie die Größe von Fuß- und Kopfzeilen anpassen.

verwandte Informationen