我怎样才能像图片那样?

我怎样才能像图片那样?

我怎样才能制作出像第一张图片那样的图片(用于绿色、蓝色和红色标记),因为当我尝试这样做时,我得到了第二张图片。

[1]https://i.stack.imgur.com/GWyxV.jpg[2]https://i.stack.imgur.com/WNpaB.jpg我试图在这里问的是,像第一张图片中标记的命令是什么?我想要的只是一个代码。(如果它存在的话)我从图片中问这个问题的原因是我不知道要搜索的名称是什么(抱歉我的英语不好)

答案1

你是指这样的事情吗?

在此处输入图片描述

\documentclass{article}
\usepackage{lipsum}
\usepackage[inline]{enumitem}
\newlist{choices}{enumerate*}{1}
\setlist[choices]{itemjoin = \hfill, label=(\Alph*),leftmargin=0cm,itemindent=.5cm,labelwidth=\itemindent,labelsep=0cm,align=left}
\begin{document}

\begin{enumerate}
    \item 
\lipsum[75]

\begin{choices}
\item Test
\item Test
\item Test
\item Test
\item Test
\end{choices}

\end{enumerate}

\end{document}

相关内容