summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc')
-rw-r--r--Master/texmf-dist/doc/support/latexindent/README2
-rw-r--r--Master/texmf-dist/doc/support/latexindent/contributors.bib7
-rw-r--r--Master/texmf-dist/doc/support/latexindent/latexindent-yaml-schema.json2
-rw-r--r--Master/texmf-dist/doc/support/latexindent/latexindent.pdfbin1250154 -> 1250829 bytes
-rw-r--r--Master/texmf-dist/doc/support/latexindent/latexindent.tex6
5 files changed, 14 insertions, 3 deletions
diff --git a/Master/texmf-dist/doc/support/latexindent/README b/Master/texmf-dist/doc/support/latexindent/README
index 5bda1fba77a..79fd8335cc4 100644
--- a/Master/texmf-dist/doc/support/latexindent/README
+++ b/Master/texmf-dist/doc/support/latexindent/README
@@ -1,5 +1,5 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- latexindent.pl, version 3.22.1, 2023-07-02
+ latexindent.pl, version 3.22.2, 2023-07-14
PERL script to indent code within environments, and align delimited
environments in .tex files.
diff --git a/Master/texmf-dist/doc/support/latexindent/contributors.bib b/Master/texmf-dist/doc/support/latexindent/contributors.bib
index 50a10e91183..2da6ea818d5 100644
--- a/Master/texmf-dist/doc/support/latexindent/contributors.bib
+++ b/Master/texmf-dist/doc/support/latexindent/contributors.bib
@@ -217,3 +217,10 @@
urldate = {2023-05-25},
keywords = {contributor},}
+@online{jessestricker,
+ title = "Create cruft directory if it does not exist",
+ url = "https://github.com/cmhughes/latexindent.pl/pull/453",
+ date = {2023-07-12},
+ author = "Jesse Stricker",
+ urldate = {2023-07-12},
+ keywords = {contributor},}
diff --git a/Master/texmf-dist/doc/support/latexindent/latexindent-yaml-schema.json b/Master/texmf-dist/doc/support/latexindent/latexindent-yaml-schema.json
index 003c26d5454..356439255b1 100644
--- a/Master/texmf-dist/doc/support/latexindent/latexindent-yaml-schema.json
+++ b/Master/texmf-dist/doc/support/latexindent/latexindent-yaml-schema.json
@@ -2,7 +2,7 @@
"$schema": "http://json-schema.org/schema",
"$id": "latexindent-yaml-schema.json",
"title": "latexindent.pl YAML schema",
- "description": "latexindent.pl YAML schema helper, V3.22.1 2023-07-02",
+ "description": "latexindent.pl YAML schema helper, V3.22.2 2023-07-14",
"type": "object",
"properties": {
"fileExtensionPreference": {
diff --git a/Master/texmf-dist/doc/support/latexindent/latexindent.pdf b/Master/texmf-dist/doc/support/latexindent/latexindent.pdf
index b8e3cab83b9..7498187ea1d 100644
--- a/Master/texmf-dist/doc/support/latexindent/latexindent.pdf
+++ b/Master/texmf-dist/doc/support/latexindent/latexindent.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/support/latexindent/latexindent.tex b/Master/texmf-dist/doc/support/latexindent/latexindent.tex
index b74e1eee32d..309dc502a34 100644
--- a/Master/texmf-dist/doc/support/latexindent/latexindent.tex
+++ b/Master/texmf-dist/doc/support/latexindent/latexindent.tex
@@ -1559,6 +1559,9 @@ latexindent.pl -c=/path/to/directory/ myfile.tex
than the current working directory, then you can send these `cruft' files to another
directory. Note the use of a trailing forward slash. % this switch was made as a result of http://tex.stackexchange.com/questions/142652/output-latexindent-auxiliary-files-to-a-different-directory
+ If the cruft directory does not exist, \texttt{latexindent.pl} will attempt to create
+ it.
+
\flagbox{-g, --logfile=<name of log file>}
\index{switches!-g, --logfile definition and details}
@@ -1781,7 +1784,7 @@ latexindent.pl myfile.tex
3 & \faClose & failure, myfile.tex not found \\
4 & \faClose & failure, myfile.tex exists but cannot be read \\
5 & \faClose & failure, \texttt{-w} active, and back-up file cannot be written \\
- 6 & \faClose & failure, \texttt{-c} active, and cruft directory does not exist \\
+ 6 & \faClose & failure, \texttt{-c} active, and cruft directory could not be created \\
\bottomrule
\end{tabular}
\end{table}
@@ -8359,6 +8362,7 @@ use Text::Tabs; # |
use FindBin; # |
use File::Copy; # |
use File::Basename; # |
+use File::Path; # |
use File::HomeDir; # <--- typically requires install via cpanm
use YAML::Tiny; # <--- typically requires install via cpanm