Add bibliography#340
Conversation
| AutoDoc( rec( scaffold := rec( | ||
| MainPage := false), | ||
| MainPage := false, | ||
| bib := "SimplicialSurfaces"), |
There was a problem hiding this comment.
This has no effect because of MainPage := false.
You need to edit your mainfile (which is doc/SimplicialSurfaces.xml) and insert at the end <Bibliography Databases="SimplicialSurfaces" /> (just before <TheIndex/>)
| autodoc := rec( | ||
| autodoc := rec( | ||
| files := [ ], | ||
| scan_dirs := ["doc", "gap", "gap/PolygonalComplexes", "gap/Paths", "gap/Library", "gap/ColouredComplexes", "gap/Flags", "gap/Morphisms"]), |
There was a problem hiding this comment.
The latest AutoDoc 2026.03.17 (to be shipped with GAP 4.16.0) scans dirs recursively, so this then can be simplified to
| scan_dirs := ["doc", "gap", "gap/PolygonalComplexes", "gap/Paths", "gap/Library", "gap/ColouredComplexes", "gap/Flags", "gap/Morphisms"]), | |
| scan_dirs := ["doc", "gap"]), |
But of course it's best to keep this for now because most likely you are using an older AutoDoc on your computer ;-). If such a change was made then the version check at the top of this file should enforce that AutoDoc 2026.03.17 or newer is used
There was a problem hiding this comment.
Thanks for the comment! Good to know for the future:)
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #340 +/- ##
==========================================
+ Coverage 70.58% 73.53% +2.95%
==========================================
Files 62 61 -1
Lines 17269 17551 +282
==========================================
+ Hits 12190 12907 +717
+ Misses 5079 4644 -435
🚀 New features to boost your workflow:
|
Not finished yet