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

정확한 페이지 중앙 부 텍스트 공간을 얻으려면 여백과 바닥글 및 머리글 크기를 조정해야 합니다.

관련 정보