summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2020-08-24 20:55:24 +0000
committerKarl Berry <karl@freefriends.org>2020-08-24 20:55:24 +0000
commit6a10b4335e0035a4466860173ced955e14b514d4 (patch)
tree4a85f607e9327e6068be36551c1b100002c7e8a8 /Master/texmf-dist/doc
parent9c386defb52ed010c6708a2e09a713500f10e7fb (diff)
pst2pdf (24aug20)
git-svn-id: svn://tug.org/texlive/trunk@56172 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc')
-rw-r--r--Master/texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.pdfbin154083 -> 0 bytes
-rw-r--r--Master/texmf-dist/doc/support/pst2pdf/Changes (renamed from Master/texmf-dist/doc/latex/pst2pdf/Changes)5
-rw-r--r--Master/texmf-dist/doc/support/pst2pdf/Makefile.doc47
-rw-r--r--Master/texmf-dist/doc/support/pst2pdf/README.md (renamed from Master/texmf-dist/doc/latex/pst2pdf/README.md)0
-rw-r--r--Master/texmf-dist/doc/support/pst2pdf/pst2pdf-doc.bib (renamed from Master/texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.bib)40
-rw-r--r--Master/texmf-dist/doc/support/pst2pdf/pst2pdf-doc.pdfbin0 -> 132936 bytes
-rw-r--r--Master/texmf-dist/doc/support/pst2pdf/pst2pdf-doc.tex (renamed from Master/texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.tex)14
-rw-r--r--Master/texmf-dist/doc/support/pst2pdf/test1-pdf.pdf (renamed from Master/texmf-dist/doc/latex/pst2pdf/test1-pdf.pdf)bin136593 -> 136602 bytes
-rw-r--r--Master/texmf-dist/doc/support/pst2pdf/test1.tex (renamed from Master/texmf-dist/doc/latex/pst2pdf/test1.tex)0
-rw-r--r--Master/texmf-dist/doc/support/pst2pdf/test2-pdf.pdf (renamed from Master/texmf-dist/doc/latex/pst2pdf/test2-pdf.pdf)bin108349 -> 108348 bytes
-rw-r--r--Master/texmf-dist/doc/support/pst2pdf/test2.tex (renamed from Master/texmf-dist/doc/latex/pst2pdf/test2.tex)0
-rw-r--r--Master/texmf-dist/doc/support/pst2pdf/test3-pdf.pdf (renamed from Master/texmf-dist/doc/latex/pst2pdf/test3-pdf.pdf)bin62819 -> 62821 bytes
-rw-r--r--Master/texmf-dist/doc/support/pst2pdf/test3.tex (renamed from Master/texmf-dist/doc/latex/pst2pdf/test3.tex)0
-rw-r--r--Master/texmf-dist/doc/support/pst2pdf/tux.jpg (renamed from Master/texmf-dist/doc/latex/pst2pdf/tux.jpg)bin51709 -> 51709 bytes
14 files changed, 77 insertions, 29 deletions
diff --git a/Master/texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.pdf b/Master/texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.pdf
deleted file mode 100644
index ea2ceb21c42..00000000000
--- a/Master/texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.pdf
+++ /dev/null
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/pst2pdf/Changes b/Master/texmf-dist/doc/support/pst2pdf/Changes
index ad609922784..95ee0eea16b 100644
--- a/Master/texmf-dist/doc/latex/pst2pdf/Changes
+++ b/Master/texmf-dist/doc/support/pst2pdf/Changes
@@ -1,5 +1,8 @@
pst2pdf.pl --------
-0.19 2020-08-08 - Add new options to CLI
+0.20 2020-08-24 - Fix graphicx detection
+ - Fix typo in documentation
+ - Remove unused vars
+0.19 2020-08-17 - Add new options to CLI
- Remove deprecate code
- Rewrite documentation
- Remove unused options
diff --git a/Master/texmf-dist/doc/support/pst2pdf/Makefile.doc b/Master/texmf-dist/doc/support/pst2pdf/Makefile.doc
new file mode 100644
index 00000000000..852c7ab5e53
--- /dev/null
+++ b/Master/texmf-dist/doc/support/pst2pdf/Makefile.doc
@@ -0,0 +1,47 @@
+# `Makefile' for `pst2pdf.pdf', hv, 2017/08/11
+
+.SUFFIXES : .tex .ltx .dvi .ps .pdf .eps
+
+PACKAGE = pst2pdf
+
+MAIN = $(PACKAGE)-doc
+
+LATEX = xelatex
+
+ARCHNAME = $(MAIN)-$(shell date +%y%m%d)
+
+ARCHFILES = $(PACKAGE).sty $(PACKAGE).tex $(PACKAGE).pro $(MAIN).tex README Changes Makefile
+
+TDS = ~/PSTricks/PSTricks-TDS
+
+all : doc clean
+
+doc:
+ $(LATEX) --shell-escape $(MAIN)
+ biber $(MAIN)
+ $(LATEX) --shell-escape $(MAIN)
+ $(LATEX) --shell-escape $(MAIN)
+
+clean :
+ $(RM) $(addprefix $(MAIN), .log .aux .glg .glo .gls .ilg .idx .ind .tmp .toc .out )
+ $(RM) $(addprefix $(MAIN), .dvi .ps .bbl .bcf .blg .run.xml)
+
+veryclean : clean
+ $(RM) $(addprefix $(MAIN), .pdf .bbl .blg)
+
+arch :
+ zip $(ARCHNAME).zip $(ARCHFILES)
+
+#tds:
+# cp -u Changes $(TDS)/scripts/$(PACKAGE)/
+# cp -u README $(TDS)/scripts/$(PACKAGE)/
+# cp -u doc/$(MAIN).pdf $(TDS)/scripts/$(PACKAGE)/
+# cp -u doc/$(MAIN).tex $(TDS)/scripts/$(PACKAGE)/
+# cp -u doc/$(MAIN).bib $(TDS)/scripts/$(PACKAGE)/
+# cp -u Makefile $(TDS)/scripts/$(PACKAGE)/
+# cp -u doc/test?.tex $(TDS)/scripts/$(PACKAGE)/
+# cp -u doc/test?-pdf.pdf $(TDS)/scripts/$(PACKAGE)/
+# cp -u script/pst2pdf.pl $(TDS)/scripts/$(PACKAGE)/
+
+
+# EOF
diff --git a/Master/texmf-dist/doc/latex/pst2pdf/README.md b/Master/texmf-dist/doc/support/pst2pdf/README.md
index 3ef4a697f47..3ef4a697f47 100644
--- a/Master/texmf-dist/doc/latex/pst2pdf/README.md
+++ b/Master/texmf-dist/doc/support/pst2pdf/README.md
diff --git a/Master/texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.bib b/Master/texmf-dist/doc/support/pst2pdf/pst2pdf-doc.bib
index 49d7274d357..81ec2771ce2 100644
--- a/Master/texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.bib
+++ b/Master/texmf-dist/doc/support/pst2pdf/pst2pdf-doc.bib
@@ -43,10 +43,10 @@
pages = {239-246}
}
-@Manual{pstricks,
+@online{pstricks,
Title = {PSTricks - {\PS} macros for generic {\TeX}},
Author = {{Timothy van} Zandt},
- Address = {\url{http://www.tug.org/application/PSTricks}},
+ url = {http://www.tug.org/application/PSTricks},
year = 1993
}
@@ -75,75 +75,75 @@
address = {Cambridge}
}
-@Manual{pst-tools,
+@online{pst-tools,
author = {Herbert Voß},
title = {\texttt{pst-tools} -- Helper functions},
publisher = {CTAN},
year = {2012},
- address = {\url{CTAN:/graphics/pstricks/contrib/pst-tools}}
+ url = {https://www.ctan.org/pkg/pst-tools}
}
-@Manual{preview,
+@online{preview,
author = {David Kastrup},
title = {The \texttt{preview} package for \hologo{LaTeX}},
publisher = {CTAN},
year = {2017},
- address = {\url{https://www.ctan.org/pkg/preview}}
+ url = {https://www.ctan.org/pkg/preview}
}
-@Manual{pst-pdf,
+@online{pst-pdf,
author = {Rolf Niepraschk},
title = {The \texttt{pst-pdf} package},
publisher = {CTAN},
year = {2019},
- address = {\url{https://www.ctan.org/pkg/pst-pdf}}
+ url = {https://www.ctan.org/pkg/pst-pdf}
}
-@Manual{auto-pst-pdf,
+@online{auto-pst-pdf,
author = {Will Robertson},
title = {The \texttt{auto-pst-pdf} package},
publisher = {CTAN},
year = {2009},
- address = {\url{https://www.ctan.org/pkg/auto-pst-pdf}}
+ url = {https://www.ctan.org/pkg/auto-pst-pdf}
}
-@Manual{auto-pst-pdf-lua,
+@online{auto-pst-pdf-lua,
author = {Herbert Voß},
title = {The \texttt{auto-pst-pdf-lua} package - Using \hologo{LuaLaTeX} with \texttt{PSTricks}},
publisher = {CTAN},
year = {2018},
- address = {\url{https://www.ctan.org/pkg/auto-pst-pdf-lua}}
+ url = {https://www.ctan.org/pkg/auto-pst-pdf-lua}
}
-@Manual{pst-exa,
+@online{pst-exa,
author = {Herbert Voß},
title = {\texttt{pst-exa} - Typeset \texttt{PSTricks} examples, with \hologo{pdfTeX}},
publisher = {CTAN},
year = {2017},
- address = {\url{https://www.ctan.org/pkg/pst-exa}}
+ url = {https://www.ctan.org/pkg/pst-exa}
}
-@Manual{graphicx,
+@online{graphicx,
author = {The \hologo{LaTeX3} Project},
title = {\texttt{graphics} - Enhanced support for graphics},
publisher = {CTAN},
year = {2017},
- address = {\url{https://www.ctan.org/pkg/graphicx}}
+ url = {https://www.ctan.org/pkg/graphicx}
}
-@Manual{grfext,
+@online{grfext,
author = {Heiko Oberdiek},
title = {The \texttt{grfext} package},
publisher = {CTAN},
year = {2017},
- address = {\url{https://www.ctan.org/pkg/grfext}}
+ url = {https://www.ctan.org/pkg/grfext}
}
-@Manual{pst-plot,
+@online{pst-plot,
author = {{Timothy van} Zandt and Herbert Voß},
title = {\texttt{pst-plot} - Plot data using \texttt{PSTricks}},
publisher = {CTAN},
year = {2019},
- address = {\url{https://www.ctan.org/pkg/pst-plot}}
+ url = {https://www.ctan.org/pkg/pst-plot}
}
diff --git a/Master/texmf-dist/doc/support/pst2pdf/pst2pdf-doc.pdf b/Master/texmf-dist/doc/support/pst2pdf/pst2pdf-doc.pdf
new file mode 100644
index 00000000000..4c12fc0f457
--- /dev/null
+++ b/Master/texmf-dist/doc/support/pst2pdf/pst2pdf-doc.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.tex b/Master/texmf-dist/doc/support/pst2pdf/pst2pdf-doc.tex
index ab85cde8963..b1df6bb901b 100644
--- a/Master/texmf-dist/doc/latex/pst2pdf/pst2pdf-doc.tex
+++ b/Master/texmf-dist/doc/support/pst2pdf/pst2pdf-doc.tex
@@ -38,8 +38,8 @@
% Identification
\def\myscript{pst2pdf}
-\def\fileversion{0.19}
-\def\filedate{2020-08-17}
+\def\fileversion{0.20}
+\def\filedate{2020-08-22}
% Config hyperref
\hypersetup{
@@ -327,7 +327,7 @@
keywords=[8]{graphicx,grfext,article,document,preview,libertinus,pst-pdf},%
% Important words 9, files used in examples
keywordstyle=[10]{\color{OrangeRed}},%
- keywords=[10]{test-fig-all.pdf,test-fig-1981.tex,test-fig-1981.pdf, test-fig-1,test-fig-2,test-out,test-in.ltx,%
+ keywords=[10]{test.ltx,test-fig-all.pdf,test-fig-1981.tex,test-fig-1981.pdf, test-fig-1,test-fig-2,test-out,test-in.ltx,%
test-fig-1981.tex,test-out.tex,file-in.tex,file-out,test.tex,test-fig-all.dvi,test-fig-1.svg,test-fig-all.tex},%
}[keywords,tex,comments,strings]% end languaje
@@ -551,7 +551,8 @@ parts and then processing them:
If for some reason you have an environment \Lenv{filecontens} before \lstinline|\documentclass| or
in the preamble of the \meta{input file} that contains a \emph{sub-document} or \emph{environment}
-you want to extract, the script will ignore them.
+you want to extract, the script will ignore them. Similarly, the content after \lstinline|\end{document}|
+is ignored in the extraction process.
\subsection{Verbatim contents}
\label{sec:verbatim}
@@ -858,12 +859,9 @@ Now move \LFile{test-fig-1981.pdf} to \texttt{/tmp/hG45uVklv9} and rename to \LF
and \LFile{test-fig-2.pdf} and copy to \texttt{./images}, if the image files exist, they will be rewritten each time you run the script. The file \LFile{test-fig-1981.tex} is
moved to the \texttt{./images} and rename to \LFile{test-fig-all.tex}.
-
-
-
Note the options passed to \meta[type=tt,cf=ForestGreen,ac=lightgray]{compiler} always use \prgopt*{no-shell-escape}
and \prgopt*{recorder}, to generate the \Lext{fls} file which is used to delete temporary files and directories after
-the process is completed and. The \cmdopt{shell} option activates \prgopt*{shell-escape} for compatibility with packages
+the process is completed. The \cmdopt{shell} option activates \prgopt*{shell-escape} for compatibility with packages
such as \LPack{minted} or others.
\subsubsection{Create output file}
diff --git a/Master/texmf-dist/doc/latex/pst2pdf/test1-pdf.pdf b/Master/texmf-dist/doc/support/pst2pdf/test1-pdf.pdf
index 9766af2cb72..e8bc6d3ef4f 100644
--- a/Master/texmf-dist/doc/latex/pst2pdf/test1-pdf.pdf
+++ b/Master/texmf-dist/doc/support/pst2pdf/test1-pdf.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/pst2pdf/test1.tex b/Master/texmf-dist/doc/support/pst2pdf/test1.tex
index 9d52356ba09..9d52356ba09 100644
--- a/Master/texmf-dist/doc/latex/pst2pdf/test1.tex
+++ b/Master/texmf-dist/doc/support/pst2pdf/test1.tex
diff --git a/Master/texmf-dist/doc/latex/pst2pdf/test2-pdf.pdf b/Master/texmf-dist/doc/support/pst2pdf/test2-pdf.pdf
index a1dedfef29f..93a0b12ae6a 100644
--- a/Master/texmf-dist/doc/latex/pst2pdf/test2-pdf.pdf
+++ b/Master/texmf-dist/doc/support/pst2pdf/test2-pdf.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/pst2pdf/test2.tex b/Master/texmf-dist/doc/support/pst2pdf/test2.tex
index 42babf4234c..42babf4234c 100644
--- a/Master/texmf-dist/doc/latex/pst2pdf/test2.tex
+++ b/Master/texmf-dist/doc/support/pst2pdf/test2.tex
diff --git a/Master/texmf-dist/doc/latex/pst2pdf/test3-pdf.pdf b/Master/texmf-dist/doc/support/pst2pdf/test3-pdf.pdf
index 99f28c30255..ac794dad4f7 100644
--- a/Master/texmf-dist/doc/latex/pst2pdf/test3-pdf.pdf
+++ b/Master/texmf-dist/doc/support/pst2pdf/test3-pdf.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/pst2pdf/test3.tex b/Master/texmf-dist/doc/support/pst2pdf/test3.tex
index 7703cf05364..7703cf05364 100644
--- a/Master/texmf-dist/doc/latex/pst2pdf/test3.tex
+++ b/Master/texmf-dist/doc/support/pst2pdf/test3.tex
diff --git a/Master/texmf-dist/doc/latex/pst2pdf/tux.jpg b/Master/texmf-dist/doc/support/pst2pdf/tux.jpg
index 275f977a3aa..275f977a3aa 100644
--- a/Master/texmf-dist/doc/latex/pst2pdf/tux.jpg
+++ b/Master/texmf-dist/doc/support/pst2pdf/tux.jpg
Binary files differ