If been building a collection of notebooks that are related, but with different topics (think chapters in a textbook). There are a lot of common functions between them. What is the best way to package these functions so that the notebooks can be shared with others ideally with minimal hassle on the part of the users?
My approach so far has been to create packages that I’ll publish like any other package. That seems a little heavy weight to me, though, since I doubt there’s a lot of generic use for the package other than to run my notebooks. An alternative might be to include another notebook that contains the common function definitions. I’ve tried that locally, but I’m not sure how it would work in practice over the network.
Any ideas? Maybe I’m overthinking it since I have seen a number of packages that look pretty special purpose.