… I would really prefer you give us the code (not an image) that’s not working, it would have been way easier to write the correction:
#import "@preview/itemize:0.2.0" as el
#let (label-width, body-indent) = (1em, 1mm)
#let indent = 1cm
#let computed-indent = indent - label-width - body-indent
#let compute-hi(n) = {
let total-label = label-width + body-indent
return - (total-label + indent * n)
}
#show: el.default-enum.with(
label-width: label-width,
body-indent: body-indent,
label-align: left,
indent: (0mm, computed-indent),
hanging-indent: range(3).map(compute-hi)
)
+ Adam B. Time and Social Theory. Cambridge: Polity Press, 1990. 192 p.
+ Adams G., Markus H. R. Toward a Conception of Culture Suitable for a Social Psychology of Culture \// The Psychological Foundations of Culture / Ed. by Schaller M., Crandall C. S. Mahwah, New Jersey: Lawrence Erlbaum Associates, Inc., 2004, P. 335-360.
+ Alexander S. Space, Time, and Deity. Reprinted. New York: The Humanities Press, 1950. Vol. 2. 841 p.
+ Adam B. Time and Social Theory. Cambridge: Polity press, 1990. 192 p.
+ Adams G., Markus H. R. Toward a Conception of Culture Suitable for a Social Psychology of Culture \// The Psychological Foundations of Culture / Ed. by Schaller M., Crandall C. S. Mahwah, New Jersey: Lawrence Erlbaum Associates, Inc., 2004, P. 335- 360.
+ Alexander S. Space, Time, and Deity. Reprinted. New York: The Humanities Press, 1950. Vol. 2. 841 p.
And if you really want the first level to not go to the left margin as in your first image (very inconsistent behavior…), you can use this compute-hi instead:
#import "@preview/itemize:0.2.0" as el
#let (label-width, body-indent) = (1em, 1mm)
#let indent = 1cm
#let computed-indent = indent - label-width - body-indent
#let compute-hi(n) = {
if n == 0 { return 0mm } // <- this
let total-label = label-width + body-indent
return - (total-label + indent * n)
}
#show: el.default-enum.with(
label-width: label-width,
body-indent: body-indent,
label-align: left,
indent: (0mm, computed-indent),
hanging-indent: range(3).map(compute-hi)
)
+ Adam B. Time and Social Theory. Cambridge: Polity Press, 1990. 192 p.
+ Adams G., Markus H. R. Toward a Conception of Culture Suitable for a Social Psychology of Culture \// The Psychological Foundations of Culture / Ed. by Schaller M., Crandall C. S. Mahwah, New Jersey: Lawrence Erlbaum Associates, Inc., 2004, P. 335-360.
+ Alexander S. Space, Time, and Deity. Reprinted. New York: The Humanities Press, 1950. Vol. 2. 841 p.
+ Adam B. Time and Social Theory. Cambridge: Polity press, 1990. 192 p.
+ Adams G., Markus H. R. Toward a Conception of Culture Suitable for a Social Psychology of Culture \// The Psychological Foundations of Culture / Ed. by Schaller M., Crandall C. S. Mahwah, New Jersey: Lawrence Erlbaum Associates, Inc., 2004, P. 335- 360.
+ Alexander S. Space, Time, and Deity. Reprinted. New York: The Humanities Press, 1950. Vol. 2. 841 p.
You can replace the + pluses by explicit numbering if you prefer.