我正在尝试生成一组问题和答案。我希望问题的标签和文本从同一行开始,但文本略微缩进。然后我希望文本的后续行也缩进相同的量。
我最初changepage
按照建议使用了该软件包在这篇文章中:
\textbf{(a)} \begin{adjustwidth}{1cm}{1cm}A coin is flipped 1000 times at the result is a 70/30 split between heads and tales, respectively. What could possibly have contributed toward this result, without referencing the supernatural?
\end{adjustwidth}
然而结果是‘一枚硬币......’在(a)之后另起一行开始。
我第二次尝试使用周围的建议\par
,在这篇文章中给出,但它产生的结果与仅允许文本跳转到新行相同。
最后,我定义了一个新环境,使用带有列表来\setlength
定义缩进(修改了说明给出)。但是,由于它使用列表,所以问题文本会被转移到新行上。
最终,我想要的是 (a) 和“A coin is...”在同一行开始,并且第二行的文本与上面一行的“A coin is...”保持一致。
我感觉我已经搞定了 90%,但我很累,而且橘子也用完了。任何帮助我都非常感谢。
答案1
这就是你想要做的事吗?
也许你需要的是一个enumerate
环境。下面是一个最小工作示例 (MWE) 的示例,它说明了我的观点。(请注意,这是一个最小可编译代码,它说明了我关于使用环境的观点enumerate
。你可以在以后的帖子中构建类似的 MWE。)
\documentclass{article}
\usepackage[showframe]{geometry}
\usepackage{enumitem}
\begin{document}
This is a reference paragraph.
\begin{enumerate}[label=\textbf{\alph*},ref=\alph*,leftmargin=5em]
\item A coin is flipped 1000 times at the result is a 70/30 split between heads and tales, respectively. What could possibly have contributed toward this result, without referencing the supernatural?
Here is a new line in the same item.
\end{enumerate}
\end{document}
showframe
这里仅使用包的选项来geometry
显示框架。