如何在文本标题中添加彩色方块

如何在文本标题中添加彩色方块

在此处输入图片描述

就像右图一样。小方块是绿色的。

答案1

以下是使用该包的简单方法xcolor

\documentclass{article}

\usepackage{xcolor}

\begin{document}

\fcolorbox{black}{green}{\rule{0pt}{6pt}\rule{6pt}{0pt}}\quad Text text text text text.

\end{document} 

在此处输入图片描述

相关内容