I have this code in a template that places a title and abstract (I’m using a place function since the paper itself is 2-column formatted):
#place(
top + center,
scope: "parent",
float: true,
)[
#text(size: 15pt, weight: "bold", title)
= Abstract
#box(width: 90%)[#par(justify: true)[#abstract]]
]
And I was wondering how to enable line numbering for the entire block. Simply adding #set par.line(numbering: "1")
before the title doesn’t seem to do the trick. Let me know if you need any more details–thanks in advance!