mirror of
https://github.com/flynx/photobook.git
synced 2025-10-29 10:20:08 +00:00
62 lines
1.7 KiB
Markdown
62 lines
1.7 KiB
Markdown
Full book example
|
|
=================
|
|
|
|
This directory contains a full book example.
|
|
|
|
```
|
|
book/
|
|
├── templates/ . . . . . . . . . . . . Templates used to buld spreads
|
|
│ └── ... (used by: make-spreads.sh)
|
|
├── spreads/ . . . . . . . . . . . . . Spread layout
|
|
│ └── ... (used by: make-spreads.sh)
|
|
├── captions/ . . . . . . . . . . . . . Image captions
|
|
│ └── ... (used by: make-spreads.sh)
|
|
├── hi-res/ . . . . . . . . . . . . . . High resolution graphics
|
|
│ └── ... (used by: make-spreads.sh)
|
|
├── Makefile
|
|
├── setup.tex . . . . . . . . . . . . . Book setup and configuration
|
|
│ This file contains all the book
|
|
│ geometry, colors and other
|
|
│ settings common to all comoponents
|
|
│ of the book.
|
|
├── block.tex . . . . . . . . . . . . . General page block layout.
|
|
├── spreads.tex . . . . . . . . . . . . Book spereads
|
|
│ (generated by: make-spreads.sh)
|
|
├── cover.tex
|
|
├── endpaper.tex
|
|
├── jacket.tex
|
|
└── ...
|
|
```
|
|
|
|
|
|
Building
|
|
--------
|
|
|
|
```shell
|
|
$ make all
|
|
```
|
|
|
|
|
|
Structure
|
|
---------
|
|
|
|
### `setup.tex`
|
|
|
|
### `spreads.tex`
|
|
|
|
### `cover.tex` / `jacket.tex` / `endpaper.tex` / ..
|
|
|
|
|
|
|
|
Workflow
|
|
--------
|
|
|
|
XXX
|
|
|
|
|
|
For information about building spreads see:
|
|
[make-spreads.sh](../../scripts/README.md)
|
|
|
|
|
|
<!-- vim:set ts=4 sw=4 nowrap : -->
|