-
Notifications
You must be signed in to change notification settings - Fork 19
/
makedoc_with_overfull_hbox_warnings.g
39 lines (35 loc) · 1.19 KB
/
makedoc_with_overfull_hbox_warnings.g
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# SPDX-License-Identifier: GPL-2.0-or-later
# MatricesForHomalg: Matrices for the homalg project
#
# This file is a script which compiles the package manual and prints overfull hbox warnings.
#
if fail = LoadPackage( "AutoDoc", "2019.05.20" ) then
Error( "AutoDoc version 2019.05.20 or newer is required." );
fi;
AutoDoc( rec(
dir := "doc_tmp/",
gapdoc := rec(
LaTeXOptions := rec(
LateExtraPreamble := """
% Many thanks to https://tex.stackexchange.com/questions/22466/how-to-convince-fancyvrb-to-give-overfull-warnings/534486#534486
\makeatletter
\def\FV@ListProcessLine#1{%
\hbox to \hsize{%
\kern\leftmargin
\hbox to \linewidth{%
\FV@LeftListNumber
\FV@LeftListFrame
\FancyVerbFormatLine{#1}\hfil % change \hss to \hfil
\FV@RightListFrame
\FV@RightListNumber}%
\hss}}
\makeatother
""",
),
),
scaffold := rec(
entities := [ "homalg", "CAP" ],
MainPage := false,
),
) );
QUIT;