This option is analogous to
\H parent argument, but for includes.For example, consider you have:and now you want to split
= Animal
== Dog
== Cat
== BatCat to cat.bigb.If you wrote:Cat would be a child of Dog, since that is the previous header, which is not what we want.
= Animal
== Dog
\Include[cat]
== BatInstead, we want to write:and now Cat will be a child of Animal as desired.
= Animal
== Dog
\Include[cat]{parent=animal}
== BatImplemented at: github.com/ourbigbook/ourbigbook/issues/127