diff options
author | Karl Berry <karl@freefriends.org> | 2019-07-13 21:39:16 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-07-13 21:39:16 +0000 |
commit | ac24b25f17ff492d41266a15f5c9aa894ffd74d7 (patch) | |
tree | cac6f3e8375f7fe4458c04e8141cc8ae9f20d1b9 /Master/texmf-dist/doc/support | |
parent | 1776a53c2baec4adbb7c7b4eeff63bbbffd7608e (diff) |
ltximg (13jul19)
git-svn-id: svn://tug.org/texlive/trunk@51633 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/support')
-rw-r--r-- | Master/texmf-dist/doc/support/ltximg/CHANGUES.md | 25 | ||||
-rw-r--r-- | Master/texmf-dist/doc/support/ltximg/README.md | 30 | ||||
-rw-r--r-- | Master/texmf-dist/doc/support/ltximg/ltximg-doc.pdf | bin | 190044 -> 147447 bytes |
3 files changed, 18 insertions, 37 deletions
diff --git a/Master/texmf-dist/doc/support/ltximg/CHANGUES.md b/Master/texmf-dist/doc/support/ltximg/CHANGUES.md deleted file mode 100644 index c7ff7ea2fdd..00000000000 --- a/Master/texmf-dist/doc/support/ltximg/CHANGUES.md +++ /dev/null @@ -1,25 +0,0 @@ -## Changues -``` - v1.5. (d) 2018-04-12 - Use GitHub to control version - - Rewrite and optimize most part of code and options - - Changue pdf2svg for pdftocairo - - Complete support for pst-exa packpage - - Clean take and optional - v1.4. (d) 2016-11-29 - Remove and rewrite code for regex and system call - - Append arara compiler, clean and comment code - - Append dvips and dvipdfm for creation images - - Append bmp, tif image format - v1.3. (d) 2016-10-16 - All options its read from cmd line and input file - - Rewrite some part of code (norun, nocrop, clean) - - Suport minted and tcolorbox packpage for verbatim - - Use /tmp dir for work process - - Escape some characters in regex according to v5.2xx - v1.2 (p) 2015-04-22 - Remove unused modules - v1.1 (p) 2015-04-21 - Change mogrify to gs for image formats - - Create output file - - Rewrite source code and fix regex - - Add more image format - - Change date to iso format - v1.0 (p) 2013-12-01 - First public release -``` -Copyright 2013 - 2018 by Pablo González L <pablgonz@yahoo.com>. diff --git a/Master/texmf-dist/doc/support/ltximg/README.md b/Master/texmf-dist/doc/support/ltximg/README.md index 2f56e3b6409..a04221a2310 100644 --- a/Master/texmf-dist/doc/support/ltximg/README.md +++ b/Master/texmf-dist/doc/support/ltximg/README.md @@ -8,11 +8,11 @@ to image formats in individual files using `ghostscript` and `poppler-utils`. Ge with only extracted environments and other with environments converted to `\includegraphics`. ## Syntax -``` +```bash $ ltximg [<compiler>] [<options>] [--] <input file>.<tex|ltx> ``` ## Usage -``` +```bash $ ltximg --latex [<options>] <file.tex> $ ltximg --arara [<options>] <file.tex> $ ltximg [<options>] <file.tex> @@ -20,19 +20,19 @@ $ ltximg <file.tex> ``` If used without `[<compiler>]` and `[<options>]` the extracted environments are converted to `pdf` image format and saved in the `/images` directory using `pdflatex` and `preview` package. Relative or absolute `paths` for files -and directories is not supported and if the last `[<options>]` take a list separated by commas you need `--` at the end. +and directories is not supported. If the last `[<options>]` take a *list separated by commas*, you need `--` at the end. ## Default environments extract -``` +```bash pspicture tikzpicture pgfpicture psgraph postscript PSTexample ``` ## Options -``` +```bash [default] -h, --help Display command line help and exit [off] -l, --license Display GPL license and exit [off] --v, --version Display current version (v1.5) and exit [off] +-v, --version Display current version (1.6) and exit [off] -t, --tif Create .tif files using ghostscript [gs] -b, --bmp Create .bmp files using ghostscript [gs] -j, --jpg Create .jpg files using ghostscript [gs] @@ -48,6 +48,8 @@ and directories is not supported and if the last `[<options>]` take a list separ -m <integer>, --margin <integer> Set margins for pdfcrop [0] --imgdir <dirname> Set name of directory to save images [images] +--zip Compress files generated in .zip format [off] +--tar Compress files generated in .tar.gz format [off] -o <filename>, --output <filename> Create output file [off] --verbose Verbose printing [off] @@ -75,14 +77,14 @@ and directories is not supported and if the last `[<options>]` take a list separ --deltenv <env1,...> Delete environments in output file [empty] ``` ## Example -``` +```bash $ ltximg --latex -e -p --srcenv --imgdir=mypics -o test-out test-in.ltx ``` -``` +```bash $ ltximg --latex -ep --srcenv --imgdir mypics -o test-out test-in.ltx ``` Create a `/mypics` directory whit all extracted environments converted to - image formats(`.pdf`, `.eps`, `.png`), individual files whit source code (`.tex`) + image formats (`.pdf`, `.eps`, `.png`), individual files whit source code (`.tex`) for all extracted environments, a file `test-out.ltx` whit all environments converted to `\includegraphics` and file `test-in-fig-all.tex` with only the extracted environments using `latex>dvips>ps2pdf` and `preview` package for `<input file>` and `pdflatex` @@ -90,9 +92,13 @@ $ ltximg --latex -ep --srcenv --imgdir mypics -o test-out test-in.ltx ## Documentation For full documentation use: -``` +```bash $ texdoc ltximg ``` + For recreation all documentation use: +```bash +$ arara ltximg-doc.dtx +``` ## Licence This program is free software; you can redistribute it and/or modify it under the terms of the GNU @@ -105,8 +111,8 @@ License for more details. ## Author -Written by Pablo González L <pablgonz@yahoo.com>, last update 2018-04-12. +Written by Pablo González L <pablgonz@yahoo.com>, last update 2019-07-13. ## Copyright -Copyright 2013 - 2018 by Pablo González L +Copyright 2013 - 2019 by Pablo González L diff --git a/Master/texmf-dist/doc/support/ltximg/ltximg-doc.pdf b/Master/texmf-dist/doc/support/ltximg/ltximg-doc.pdf Binary files differindex 86b856a5ed9..c862cfd8ba2 100644 --- a/Master/texmf-dist/doc/support/ltximg/ltximg-doc.pdf +++ b/Master/texmf-dist/doc/support/ltximg/ltximg-doc.pdf |