tcolorbox 中的左对齐

tcolorbox 中的左对齐

我试图将 tcolorbox 的内容左对齐,但没有成功。最小示例如下:

\documentclass{article}
\usepackage{amsmath}
\usepackage{tcolorbox}
\begin{document}
\centerline{
\begin{tcolorbox}[colback=red!5!white,colframe=red!75!black,width=0.6\linewidth]
\centerline{\textbf{First} statement}
\centerline{\textbf{This} is the second statement}
\end{tcolorbox}}
\end{document}

您能否就如何实现此目标提出一些建议?提前致谢。

答案1

\centerline将特定线置于中心。

我已经更新了您的示例。请注意,我还更新了周围的环境。另请参阅 ctan 上的 tcolorbox-manual 以了解有关框内对齐的更多信息:https://www.ctan.org/pkg/tcolorbox

\documentclass{article}
\usepackage{tcolorbox}
\begin{document}
\begin{center}
    \begin{tcolorbox}[colback=red!5!white,colframe=red!75!black,width=0.6\linewidth]
        \textbf{First} statement \newline
        \textbf{This} is the second statement
    \end{tcolorbox}
\end{center}
\end{document}

答案2

center默认情况下,文本是左对齐的——删除排列文本的命令,它将恢复为默认的左对齐

在此处输入图片描述

\documentclass{article}
\usepackage{amsmath}
\usepackage{tcolorbox}
\begin{document}
\centerline{
\begin{tcolorbox}[colback=red!5!white,colframe=red!75!black,width=0.6\linewidth]
{\textbf{First} left aligned statement}\\
{\textbf{This} is the second left aligned statement}
\end{tcolorbox}}
\end{document}

相关内容