如何使文本居中?

如何使文本居中?

我想在中心写一些如下所示的文字?

在此处输入图片描述

编辑: 抱歉,图片似乎造成了混淆。为了保护隐私,我缩回了一些文字。我想要的只是如何以相同的方式将文字在图片中居中。像图片中那样对齐。但我不想突出显示或缩回。只是居中。

答案1

\documentclass{article}
\usepackage{lipsum,stackengine}
\setstackEOL{\\}
\begin{document}
\lipsum[1]
\begin{center}
{\textbf{\Longstack[l]{
  Question 1: Can we archive the blacked out text\\
  so that it can be left aligned?\\\\
  Question 2: Can we archive the blacked out text\\
  so that it can also be centered?
}}}
\end{center}
\lipsum[2]
\end{document}

在此处输入图片描述

答案2

使用hl命令(在soul包中)突出显示文本。为了达到您的目的,只需将突出显示颜色设置为黑色\sethlcolor{black}。默认突出显示颜色为黄色。

在此处输入图片描述

\documentclass{article}
\usepackage{xcolor,soul}
\sethlcolor{black}
%\sethlcolor{green}
\usepackage{lipsum}
\begin{document}
\lipsum[1]

\begin{center}
\begin{minipage}{.8\textwidth}
\noindent\bfseries Question 1: Can we archive \hl{text texttext text text text text text text text text text text text } ?\\

\noindent\bfseries Question 2: Can we archive \hl{text texttext text text text text text text text text text } ?
\end{minipage}
\end{center}
\lipsum[1]
\end{document}

相关内容