在文本环境中,我想将一些星号置于段落之间。我知道我可以通过以下方式做到这一点
\begin{center}
\color{cyan}\makebox[5cm]{* * * * * * * * * * * * * * * * * * * *}
\end{center}
但垂直空间很难控制。我不知道为什么下面不起作用
$\centering{\color{cyan}\makebox[5cm]{* * * * * * * * * * * * * * * * * * * *}}$
结果不会在中心。
答案1
尝试
\documentclass{article}
\usepackage{color}
\begin{document}
\makebox[\textwidth][c]{$\color{cyan}\makebox[5cm]{* * * * * * * * * * * * * * * * * * * *}$}
nice
\end{document}