├── .gitattributes ├── .gitignore ├── BookParameters.tex ├── INSTALL.md ├── LICENSE ├── README.md ├── bin ├── bookinfo ├── epubcheck ├── external │ ├── barcode.ps │ └── epubcheck.jar ├── installcover ├── makebook ├── makebwimages ├── makecover ├── resizeHtmlImgs.py ├── resizeXbb.py ├── setBookBoolean ├── setBookParameter ├── setBookTotalPageCount ├── texclean ├── toBookFormat ├── toascii ├── toebook ├── toepub ├── tohtml ├── tokindle ├── tomobi ├── topdf ├── toraw └── totext ├── book.pdf ├── book.tex ├── eBook.cfg ├── eBook.pdf ├── eBook.tex ├── eBookEntry.html ├── idxmake.4ht ├── images ├── Albert_Einstein1.jpg ├── Albert_Einstein1_BW.jpg ├── CoverExample.jpg ├── CoverExample_BW.jpg ├── Flower1.jpg ├── Flower1_BW.jpg ├── Flower2.jpg ├── Flower2_BW.jpg ├── Flowers1and2.jpg ├── Flowers1and2_BW.jpg ├── PressLogo.png ├── PressLogo_BW.png ├── cover.png ├── cover_BW.png ├── eBookCoverPage.jpg ├── eBookCoverPage_BW.jpg ├── ebookcover.jpg ├── ebookcover_BW.jpg ├── images.jpg └── images_BW.jpg ├── rebuild.bash ├── tex ├── bib │ └── book.bib ├── body.tex ├── introduction.tex ├── preface.tex ├── zzAbbr.tex ├── zzCopyright.tex ├── zzInit.tex └── zzTitlepage.tex └── tex4ht.env /.gitattributes: -------------------------------------------------------------------------------- 1 | bin/* linguist-documentation 2 | 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/.gitignore -------------------------------------------------------------------------------- /BookParameters.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/BookParameters.tex -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/README.md -------------------------------------------------------------------------------- /bin/bookinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/bin/bookinfo -------------------------------------------------------------------------------- /bin/epubcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/bin/epubcheck -------------------------------------------------------------------------------- /bin/external/barcode.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/bin/external/barcode.ps -------------------------------------------------------------------------------- /bin/external/epubcheck.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/bin/external/epubcheck.jar -------------------------------------------------------------------------------- /bin/installcover: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/bin/installcover -------------------------------------------------------------------------------- /bin/makebook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/bin/makebook -------------------------------------------------------------------------------- /bin/makebwimages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/bin/makebwimages -------------------------------------------------------------------------------- /bin/makecover: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/bin/makecover -------------------------------------------------------------------------------- /bin/resizeHtmlImgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/bin/resizeHtmlImgs.py -------------------------------------------------------------------------------- /bin/resizeXbb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/bin/resizeXbb.py -------------------------------------------------------------------------------- /bin/setBookBoolean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/bin/setBookBoolean -------------------------------------------------------------------------------- /bin/setBookParameter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/bin/setBookParameter -------------------------------------------------------------------------------- /bin/setBookTotalPageCount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/bin/setBookTotalPageCount -------------------------------------------------------------------------------- /bin/texclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/bin/texclean -------------------------------------------------------------------------------- /bin/toBookFormat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/bin/toBookFormat -------------------------------------------------------------------------------- /bin/toascii: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | toBookFormat --totext "$@" 3 | -------------------------------------------------------------------------------- /bin/toebook: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | toBookFormat --toebook "$@" 3 | -------------------------------------------------------------------------------- /bin/toepub: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | toBookFormat --toebook "$@" 3 | -------------------------------------------------------------------------------- /bin/tohtml: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | toBookFormat --tohtml "$@" 3 | -------------------------------------------------------------------------------- /bin/tokindle: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | toBookFormat --tokindle "$@" 3 | -------------------------------------------------------------------------------- /bin/tomobi: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | toBookFormat --tokindle "$@" 3 | -------------------------------------------------------------------------------- /bin/topdf: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | toBookFormat --topdf "$@" 3 | -------------------------------------------------------------------------------- /bin/toraw: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | toBookFormat --toraw "$@" 3 | -------------------------------------------------------------------------------- /bin/totext: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | toBookFormat --totext "$@" 3 | -------------------------------------------------------------------------------- /book.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/book.pdf -------------------------------------------------------------------------------- /book.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/book.tex -------------------------------------------------------------------------------- /eBook.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/eBook.cfg -------------------------------------------------------------------------------- /eBook.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/eBook.pdf -------------------------------------------------------------------------------- /eBook.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/eBook.tex -------------------------------------------------------------------------------- /eBookEntry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/eBookEntry.html -------------------------------------------------------------------------------- /idxmake.4ht: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/idxmake.4ht -------------------------------------------------------------------------------- /images/Albert_Einstein1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/images/Albert_Einstein1.jpg -------------------------------------------------------------------------------- /images/Albert_Einstein1_BW.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/images/Albert_Einstein1_BW.jpg -------------------------------------------------------------------------------- /images/CoverExample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/images/CoverExample.jpg -------------------------------------------------------------------------------- /images/CoverExample_BW.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/images/CoverExample_BW.jpg -------------------------------------------------------------------------------- /images/Flower1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/images/Flower1.jpg -------------------------------------------------------------------------------- /images/Flower1_BW.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/images/Flower1_BW.jpg -------------------------------------------------------------------------------- /images/Flower2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/images/Flower2.jpg -------------------------------------------------------------------------------- /images/Flower2_BW.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/images/Flower2_BW.jpg -------------------------------------------------------------------------------- /images/Flowers1and2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/images/Flowers1and2.jpg -------------------------------------------------------------------------------- /images/Flowers1and2_BW.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/images/Flowers1and2_BW.jpg -------------------------------------------------------------------------------- /images/PressLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/images/PressLogo.png -------------------------------------------------------------------------------- /images/PressLogo_BW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/images/PressLogo_BW.png -------------------------------------------------------------------------------- /images/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/images/cover.png -------------------------------------------------------------------------------- /images/cover_BW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/images/cover_BW.png -------------------------------------------------------------------------------- /images/eBookCoverPage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/images/eBookCoverPage.jpg -------------------------------------------------------------------------------- /images/eBookCoverPage_BW.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/images/eBookCoverPage_BW.jpg -------------------------------------------------------------------------------- /images/ebookcover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/images/ebookcover.jpg -------------------------------------------------------------------------------- /images/ebookcover_BW.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/images/ebookcover_BW.jpg -------------------------------------------------------------------------------- /images/images.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/images/images.jpg -------------------------------------------------------------------------------- /images/images_BW.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/images/images_BW.jpg -------------------------------------------------------------------------------- /rebuild.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/rebuild.bash -------------------------------------------------------------------------------- /tex/bib/book.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/tex/bib/book.bib -------------------------------------------------------------------------------- /tex/body.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/tex/body.tex -------------------------------------------------------------------------------- /tex/introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/tex/introduction.tex -------------------------------------------------------------------------------- /tex/preface.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/tex/preface.tex -------------------------------------------------------------------------------- /tex/zzAbbr.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/tex/zzAbbr.tex -------------------------------------------------------------------------------- /tex/zzCopyright.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/tex/zzCopyright.tex -------------------------------------------------------------------------------- /tex/zzInit.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/tex/zzInit.tex -------------------------------------------------------------------------------- /tex/zzTitlepage.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/tex/zzTitlepage.tex -------------------------------------------------------------------------------- /tex4ht.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jfogarty/latex-nonfiction-ebook-template/HEAD/tex4ht.env --------------------------------------------------------------------------------