Normally if you make a menu of the pages on a site, Hugo provides a single—potentially hierarchical—list. It’s easy to get something looking like this.
Copyright
Dedication
Preface
Table of Contents
Blog
Technology
Art
Video
Films
Shorts
Acknowledgements
Appendixes
A: Contact
B: Follow
About the Author
Colophon
I am trying to make my web site have an aesthetic that is more in line with a printed book. I’m working on a table of contents page that looks something along these lines with lists separated by headings. I wasn’t able to format it here exactly how I want due to the limitations of this forum, but it gets the point across.
Contents
Copyright iv
Dedication v
Preface ix
Part I – Blog
Technology
Art
Part II — Video
Films
Shorts
Acknowledgements
Appendixes
A. Contact
B. Follow
About the Author Colophon
The problem isn’t that I don’t know how to accomplish this. It’s that there are too many different ways to accomplish it, and I’m not sure which is best. Here are some of the options I’ve thought of.
Hand-write a page in markdown similar to what I just did in this forum post.
Make a custom layout in my theme or site.
Use the menus feature with a custom layout on top of that.
If I use the menus feature do I define the menu in frontmatter of individual pages or in the global config?
This is what a menu gives you in Hugo. Without much configuration it will take title/linktitle for the titles and weight frontmatter to sort the entries. You define them to be part of a menu and then range through those menus.
Parts of your content are in a single file.
content/chapter1/index.md
You have headlines inside this file (hopefully marked via #, ##, etc). These headlines can be extracted with a “Table of Contents” (ToC, that’s how Hugo calls them) on a per page base.
Be careful not to confuse your "Table of Contents " with Hugo’s. I would maybe call your structure Book Index or something like that.
These fragments are basically objects containing a single page ToC that you can use in your navigation.
To get to your Book Index I would range through .RegularPages (sorting them by weight before) and then load each single page and display or load the ToC of each page. You can configure the ToC to use only hx to hx headings (depending on your layouts, that might be h2 or h1 to h3 or however deep you wish to show your structure.
Because that touches every single page, I would think about caching this, which might get you into trouble if you want to show some form of “you are here” indicator in your Index (which is solvable via JS or some :has CSS wizardry. But let’s get an Index out of your project first and don’t think about “you are here” until you are done.