Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ This file describes changes in the AutoDoc package.
nested source directories are picked up automatically

+ **Other Changes**
- Don't insert extra newlines after author names for the PDF title
pages (this was a workaround for a GAPDoc issue; hopefully a
future GAPDoc release will fix this properly; for details, see
<https://github.com/frankluebeck/GAPDoc/issues/80>)
- Improve `DeclareGlobalName` handling: document it as a variable by
default, but switch to a function when `@Arguments` or `@Returns`
provides function-style documentation
Expand Down
3 changes: 1 addition & 2 deletions gap/AutoDocMainFunction.gi
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,7 @@ InstallGlobalFunction( ExtractTitleInfoFromPackageInfo,
fi;
author_string := "";
AUTODOC_APPEND_STRING_ITERATIVE( author_string,
author_rec.FirstNames, " ", author_rec.LastName,
"<Alt Only=\"LaTeX\"><Br/></Alt>" );
author_rec.FirstNames, " ", author_rec.LastName );
if IsBound( author_rec.PostalAddress ) then
tmp_list := SplitString( StripBeginEnd( author_rec.PostalAddress, "\n\r" ), "\n" );
AUTODOC_APPEND_STRING_ITERATIVE( author_string, "<Address>" );
Expand Down
Loading