如何用粗体和下划线将单词居中对齐

如何用粗体和下划线将单词居中对齐

我需要将一个单词用粗体和下划线居中对齐。

我尝试了\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}

这是输出。

在此处输入图片描述

相关内容