我需要将一个单词用粗体和下划线居中对齐。
我尝试了\textbf
所有\centerline
可能的组合,但毫无用处。
我正在将其用于\documentclass[12pt]{report}
我的报告文档。
答案1
以下包含多个解决方案。请选择您想要的一个。
\documentclass[12pt]{report}
\usepackage{ulem}
\begin{document}
\centerline{I need to center align a \uline{\bfseries word} with bold and underlines.}
\bigskip
\begin{center}
I need to center align a\\
\uline{\bfseries word}\\
with bold and underlines.
\end{center}
\bigskip
I need to center align a
\centerline{\uline{\bfseries word}}
with bold and underlines.
\end{document}
这是输出。