Es_dutch wrote:\item[Hypothesis 3a:] \lipsum[1]
The first solution was the usage of the KOMA-Script environmentIjon Tichy wrote:if you intend to do the labeling of the list yourself instead of automatically, you should try my first solution.
labeling. And please read the manual of the used package.However you can indeed change the automatic label of the
hyphothesis environment:
Code: Select all
\documentclass{article}
\usepackage{lipsum}
\usepackage{enumitem}
\newlist{hypothesis}{enumerate}{2}
\setlist[hypothesis]{label={Hypothesis~\arabic{*}:},labelsep=1em,leftmargin=*}
\begin{document}
\lipsum[1]
\begin{hypothesis}[label={Hypothesis~3\alph{*}:}]
\item\lipsum[1]
\item\lipsum[2]
\item\lipsum[3]
\end{hypothesis}
\end{document}subhypothesis environment.Alternatively you could also do the labeling of the
hypothesis environment manually, but change the leftmargin value suitable.
Code: Select all
\documentclass{article}
\usepackage{lipsum}
\usepackage{enumitem}
\newlist{hypothesis}{enumerate}{2}
\setlist[hypothesis]{label={Hypothesis~\arabic{*}:},labelsep=1em,leftmargin=*}
\usepackage{showframe}
\begin{document}
\lipsum[1]
\begin{hypothesis}[leftmargin=7.5em]
\item[Hypothesis 3a:] \lipsum[1]
\item[Hypothesis 3b:] \lipsum[2]
\item[Hypothesis 3c:] \lipsum[3]
\end{hypothesis}
\end{document}