[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
gendocs.sh - request for additional PDF in A4
From: |
Simon Sobisch |
Subject: |
gendocs.sh - request for additional PDF in A4 |
Date: |
Wed, 12 Aug 2020 18:44:11 +0200 |
User-agent: |
Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.11.0 |
The GnuCOBOL Programmer's Guide always created two sets of its PDF
files: one in the default letter format and another in A4.
With the recent changes in our build system this is achieved with running
PDFs/%-letter.pdf : %.texi
@mkdir -p $(dir $@)
texi2pdf $(PDFOPTIONS) -o $@ -c $<
PDFs/%-a4.pdf : %.texi
@mkdir -p $(dir $@)
texi2pdf $(PDFOPTIONS) --command=@afourpaper -o $@ -c $<
[maybe there's a better way to achieve this with not running the
complete process two times]
We currently investigate gendocs.sh to possibly streamline the
generation, but gendocs.sh invokes texi2pdf only once.
Feature Request:
Can someone add a new option to additional generate a PDF in A4 format?
It could also use a "-a4" suffix or something different.
Is this a reasonable option to add to the common gendocs.sh?
Thank you,
Simon
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- gendocs.sh - request for additional PDF in A4,
Simon Sobisch <=