-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Continue working on chapter 13 (#69)
* wip * fix formatting * wip * correction from Andreas * wip * wip * more exercises for traversables * wip zipWithIndex lemma * wip * wip * wip * wip proof of zipwithindex properties * wip * minor updates * wip * wip * wip traversable properties * wip * wip * wip * wip * fix text of exercise 2.1.7.8 * wip * wip * reformatting to 12pt * copy lyx header * reformat chapter 1 again * build tex * wip * wip * add exercise for non-standard zip * wip * reformat chapter 2 wip * wip reformat chapter 2 * wip chapter 2 * wip * finish reformatting ch.2 * wip * wip * edit chapters 1-5 * minor fixes * create scripts for volumes 1-3 * vol1 is ready * 3 volumes without hyperlinks or covers * wip * wip * rename "solved examples" to "examples" * implement barcode and set all margins * add two isbns for vols. 1,2 so far * fix formatting of barcode * remove wrap floats from chapters 6 and 7 * wip remove wrap floats from chapters 6 and 8 * wip * responding to PR by Andreas * responding to Andreas * wip reformatting part 2 * remove float wraps from part 2 * prepare a 10pt pdf file * minor corrections --------- Co-authored-by: sergei.winitzki <[email protected]>
- Loading branch information
Showing
61 changed files
with
30,786 additions
and
36,004 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
#!/bin/bash | ||
|
||
# Prepare the three cover pages in parallel. | ||
for f in sofp-spine sofp-back-cover sofp-front-cover; do | ||
pdflatex --interaction=batchmode "$f" | ||
pdflatex --interaction=batchmode "$f" & | ||
done | ||
wait # Wait until all 3 cover pages are done. | ||
pdflatex --interaction=batchmode sofp-3page-cover | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Prepare the printable PDF file of volume v of the book. v = 1, 2, 3. | ||
|
||
pdffile="$1" | ||
pdftk="$2" | ||
|
||
function pdfPages { | ||
local file="$1" | ||
"$pdftk" "$file" dump_data | fgrep NumberOfPages | sed -e 's,^.* ,,' | ||
} | ||
|
||
export LC_ALL=C | ||
|
||
total_pages=`pdfPages "$pdffile"` | ||
|
||
cd book_cover | ||
|
||
sed -i.bak -e "s|TOTALPAGES|$total_pages|" sofp-cover-parameters.tex | ||
|
||
bash sofp-make-cover.sh |
Oops, something went wrong.