source: pdf-fixups.sh@ 6099a471

11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 bdubbs/gcc13 multilib renodr/libudev-from-systemd trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 6099a471 was 51a5442f, checked in by Bruce Dubbs <bdubbs@…>, 2 years ago

Fix pdf presentation issues and some misc issues
Change pdf generation to use 9 point fonts for monospace
sections of the book. Otherwise texy overflows, especially
in Chapter 8, Stripping.

Fix a minor spacing issue in the stripping issue.

MAke a minor grammar fix in creatingfiles.xml.

  • Property mode set to 100755
File size: 450 bytes
Line 
1#!/bin/bash
2
3if [ $# -lt 1 ] ; then
4 echo "This script needs the location of the fo file to update"
5 exit 1
6fi
7
8
9FILE=$1
10
11LINE=$( grep -n "DO NOT EDIT" $FILE | cut -f1 -d: )
12LINE=$(( LINE - 1 ))
13
14# Not needed
15#sed -i -e "$LINE s/monospace/&\" font-size=\"9pt/" $FILE
16sed -i -e "s/monospace/&\" font-size=\"9pt/g" $FILE
17
18# Break a block of code at the right place
19sed -i -e 's@gcc --version@<fo:block page-break-before="always"></fo:block>&@' $FILE
Note: See TracBrowser for help on using the repository browser.