ilm icon indicating copy to clipboard operation
ilm copied to clipboard

functionality for creating an Appendix

Open CarloLucibello opened this issue 4 months ago • 0 comments

Hi, thanks for the nice package, I started to use it to create some lecture notes.

Right now in order to create the appendix for the notes I do the following after the main text

#counter(heading).update(0)

#set heading(numbering: (..nums) => {
  if nums.pos().len() == 1 {
    return ""
  } 
  let a = nums.pos().slice(1)
  return numbering("A.1.1", ..a)
})

#align(center)[= Appendix]

== Gaussian Integrals  and Error Functions

== TODO

with the result Screenshot 2024-10-09 at 11 56 51

It took me some digging to reach this result, while I think it should be something much more immediate, as it is in latex.

Would you maybe consider adding some functionality in ilm to reach a similar result?

CarloLucibello avatar Oct 09 '24 10:10 CarloLucibello