2023-02-27 17:27:55 +03:00
|
|
|
photobook
|
|
|
|
|
=========
|
2021-12-06 22:14:46 +03:00
|
|
|
|
2022-02-15 17:09:19 +03:00
|
|
|
[LaTeX](https://www.latex-project.org/) document class for making photo books.
|
2021-12-06 22:14:46 +03:00
|
|
|
|
|
|
|
|
|
2021-12-13 00:57:15 +03:00
|
|
|
## Build requirements for docs
|
2021-12-06 22:14:46 +03:00
|
|
|
|
2021-12-07 15:19:09 +03:00
|
|
|
- LaTeX tool chain (including: `lualatex`, `latexmk`, ..)
|
|
|
|
|
The simplest way to get started is [TeX Live](https://www.tug.org/texlive/),
|
|
|
|
|
either a full install or for specific modules see the _Packages_ section
|
|
|
|
|
in [photobook.cls](./photobook.cls),
|
2022-09-15 18:50:12 +03:00
|
|
|
- Un\*x-like environment (`bash`, GNU Make, coreutils, ...),
|
2021-12-08 00:15:42 +03:00
|
|
|
on Windows systems, either [Cygwin](https://www.cygwin.com/) or
|
2021-12-07 15:19:09 +03:00
|
|
|
[WSL/WSL2](https://en.wikipedia.org/wiki/Windows_Subsystem_for_Linux)
|
|
|
|
|
should work fine.
|
2021-12-06 22:14:46 +03:00
|
|
|
|
2021-12-07 15:19:09 +03:00
|
|
|
|
2022-09-15 18:50:12 +03:00
|
|
|
|
2021-12-07 15:19:09 +03:00
|
|
|
## Build / Install
|
2021-12-06 22:14:46 +03:00
|
|
|
|
2022-09-16 11:55:57 +03:00
|
|
|
The package is available on:
|
|
|
|
|
- CTAN: https://ctan.org/pkg/photobook
|
|
|
|
|
- GitHub: https://github.com/flynx/photobook
|
|
|
|
|
|
|
|
|
|
|
2022-09-16 11:56:47 +03:00
|
|
|
To install from source:
|
2021-12-06 22:16:52 +03:00
|
|
|
```shell
|
2021-12-07 15:19:09 +03:00
|
|
|
# get the source...
|
|
|
|
|
$ git clone https://github.com/flynx/photobook.git
|
|
|
|
|
|
|
|
|
|
# if desired, install in the user context...
|
|
|
|
|
$ cd ./photobook
|
2021-12-06 22:16:52 +03:00
|
|
|
$ make install
|
|
|
|
|
```
|
2021-12-06 22:14:46 +03:00
|
|
|
|
2023-04-27 01:30:17 +03:00
|
|
|
The `photobook` document class requres a set of modules to be installed
|
|
|
|
|
for it to function properly, the full list is included in the docs and
|
|
|
|
|
can be generated (`DEPENDS.txt` file) by calling:
|
|
|
|
|
```shell
|
|
|
|
|
$ make DEPENDS.txt
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
2021-12-07 15:19:09 +03:00
|
|
|
If only building the docs is required without installing:
|
|
|
|
|
```shell
|
2021-12-13 01:44:11 +03:00
|
|
|
$ make pdf
|
2021-12-07 15:19:09 +03:00
|
|
|
```
|
2021-12-06 22:14:46 +03:00
|
|
|
|
2021-12-07 00:18:27 +03:00
|
|
|
For more info on `make` targets see the: [./Makefile](./Makefile)
|
2021-12-07 15:19:09 +03:00
|
|
|
|
2022-09-15 18:50:12 +03:00
|
|
|
|
2023-02-27 17:16:15 +03:00
|
|
|
## Notes
|
|
|
|
|
|
2023-04-26 20:56:44 +03:00
|
|
|
- The main refetence is inline with the source [photobook.cls](./photobook.cls)
|
|
|
|
|
thus it is both human-readable next to the code it documents and is
|
|
|
|
|
used to build the `photobook.pdf`.
|
|
|
|
|
Extracting the documentation source (`photobook*.tex`) is done
|
|
|
|
|
by [make](./Makefile) via [cls2tex.sh](scripts/README.md#cls2texsh) when
|
|
|
|
|
building the docs, see them for more info.
|
2023-02-27 17:27:55 +03:00
|
|
|
- There is a bug in default captions not being typeset correctly if too
|
|
|
|
|
long, a workaround is to place them in a `minipage` like this:
|
|
|
|
|
```latex
|
|
|
|
|
\imagecell{%
|
|
|
|
|
\begin{minipage}{\cellwidth}%
|
|
|
|
|
long caption text...
|
|
|
|
|
\end{minipage}%
|
|
|
|
|
}{some-image}
|
|
|
|
|
```
|
|
|
|
|
(still working on a solution for this).
|
2023-02-27 17:16:15 +03:00
|
|
|
- `photobook` is mostly used with `lualatex`, other engines are mostly
|
|
|
|
|
supported but some features may misbehave.
|
|
|
|
|
|
|
|
|
|
|
2022-09-15 18:50:12 +03:00
|
|
|
## Authors
|
|
|
|
|
|
2022-09-15 18:58:45 +03:00
|
|
|
[Alex A. Naanou](https://github.com/flynx)
|
2022-09-15 18:50:12 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
|
|
[BSD 3-Clause License](./LICENSE)
|
|
|
|
|
|
2023-01-18 03:34:19 +03:00
|
|
|
Copyright (c) 2021-2023, Alex A. Naanou,
|
2022-09-15 18:50:12 +03:00
|
|
|
All rights reserved.
|
|
|
|
|
|
2021-12-07 15:19:09 +03:00
|
|
|
|
2023-04-26 20:56:44 +03:00
|
|
|
<!-- vim:set ts=4 sw=4 nowrap : -->
|