summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/plain
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2020-03-03 22:03:11 +0000
committerKarl Berry <karl@freefriends.org>2020-03-03 22:03:11 +0000
commit5d743e0a015ef1e44cb5ec2f0851c34e3ae6721c (patch)
tree45a364bb8dd6ad0c5bbb54a66e98f72b2e403bc0 /Master/texmf-dist/doc/plain
parent8b6d64fa9d06d6ff5428f42c773c7e5d6a42a10f (diff)
graphics-pln (3mar20)
git-svn-id: svn://tug.org/texlive/trunk@54029 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/plain')
-rw-r--r--Master/texmf-dist/doc/plain/graphics-pln/README.md (renamed from Master/texmf-dist/doc/plain/graphics-pln/README.txt)73
-rw-r--r--Master/texmf-dist/doc/plain/graphics-pln/exmplgrf.tex4
-rw-r--r--Master/texmf-dist/doc/plain/graphics-pln/exmplpfg.tex3
3 files changed, 44 insertions, 36 deletions
diff --git a/Master/texmf-dist/doc/plain/graphics-pln/README.txt b/Master/texmf-dist/doc/plain/graphics-pln/README.md
index fc65eaf69b3..e975cff9ab9 100644
--- a/Master/texmf-dist/doc/plain/graphics-pln/README.txt
+++ b/Master/texmf-dist/doc/plain/graphics-pln/README.md
@@ -1,6 +1,6 @@
+# graphics-pln
-Graphics code for non-LaTeX users.
-==================================
+## Graphics code for non-LaTeX users.
This directory provides a small wrapper file such that users of
formats based on plain TeX may make use of some of the parts of the
@@ -10,16 +10,18 @@ These files are *NOT* supported by the LaTeX3 project, and any
problems with them should *NOT* be reported to the LaTeX bugs system.
Problems should be reported as issues at
-https://github.com/davidcarlisle/dpctex/tree/master/graphics-pln
+https://github.com/davidcarlisle/graphics-pln/issues
-David Carlisle 1995/01/29
- 1996/11/13
- 2016/08/17
- 2017/06/01
- 2018/01/16
+David Carlisle
+1995/01/29
+1996/11/13
+2016/08/17
+2017/06/01
+2018/01/16
+2020/03/02
-Copyright 1995 1996 2016 2017 2018 David Carlisle
+Copyright 1995 1996 2016 2017 2018 2020 David Carlisle
All the files in this directory may be redistributed and/or modified
under the terms of the LaTeX Project Public License distributed from
@@ -30,41 +32,44 @@ Copyright 1995 1996 2016 2017 2018 David Carlisle
This directory contains
-README.txt This file.
+- README.md
+ This file.
-exmplpic.tex
+- exmplpic.tex
A plain TeX document using LaTeX' `picture mode': a portable
means of producing simple diagrams.
-exmplgrf.tex
+- exmplgrf.tex
A plain TeX document using the LaTeX graphicx package, for
rotating and scaling text, and include PostScript and other
graphics formats. (This will include the file a.ps available
in the LaTeX graphics distribution.)
-exmplcol.tex
+- exmplcol.tex
A plain TeX document using the LaTeX color package, for
producing colour.
-exmplpfg.tex
+- exmplpfg.tex
A plain TeX document using the contributed LaTeX psfrag package,
for including PostScript documents, while replacing certain text
strings with TeX typeset replacements. This uses the example.eps
figure from the psfrag 3.0 distribution.
-miniltx.tex
+- miniltx.tex
A small `miniLaTeX' that defines fakes or otherwise hacks
sufficient bits of LaTeX internals so that the packages can load.
-picture.tex
- The user interface to the picture environment.
- \input picture.
+- picture.tex
+ The user interface to the picture environment.
+ `\input picture`
Normally a plain-style syntax is used, viz
+ ```
\picture(100,100)
....
\endpicture
+ ```
- However if the command \LaTeXbegin is issued, then a LaTeX
+ However if the command `\LaTeXbegin` is issued, then a LaTeX
syntax of
\begin{picture}(100,100)
....
@@ -73,9 +78,9 @@ picture.tex
from a LaTeX document, or if it is produced automatically from
a drawing tool such as xfig or texcad.
-autopict.sty
+- autopict.sty
This is a frozen copy of a file that used to be distributed with
- LaTeX but is no longer needed in that context, it is basocally
+ LaTeX but is no longer needed in that context, it is basically
the source of LaTeX Picture mode from LaTeX in 2014. The
original use for this package was to build a latex format in
which some environments such as picture and tabbing were not
@@ -83,25 +88,25 @@ autopict.sty
machine with 640K memory.
-graphicx.tex
- The user interface to the graphicx package.
- \input graphicx
+- graphicx.tex
+ The user interface to the graphicx package.
+ `\input graphicx`
See the documentation in grfguide.ps in the LaTeX graphics
distribution.
- This file sets the driver to be dvips. If you
- use another driver, edit accordingly.
+ This file sets the driver to be dvips, pdftex or luatex.
+ If you use another driver, define `\Gin@driver` before inputting the file.
-color.tex
- The user interface to the color package.
- \input color
+- color.tex
+ The user interface to the color package.
+ `\input color`
See the documentation in grfguide.ps in the LaTeX graphics
distribution.
- This file sets the driver to be dvips. If you
- use another driver, edit accordingly.
+ This file sets the driver to be dvips, pdftex or luatex.
+ If you use another driver, define `\Gin@driver` before inputting the file.
-psfrag.tex
- The user interface to the psfrag package.
- \input psfrag
+- psfrag.tex
+ The user interface to the psfrag package.
+ `\input psfrag`
See the documentation in pfgguide.tex in the psfrag distribution,
and the example document pfgexmpl.tex included here.
diff --git a/Master/texmf-dist/doc/plain/graphics-pln/exmplgrf.tex b/Master/texmf-dist/doc/plain/graphics-pln/exmplgrf.tex
index d1a51b8ef10..afa88741704 100644
--- a/Master/texmf-dist/doc/plain/graphics-pln/exmplgrf.tex
+++ b/Master/texmf-dist/doc/plain/graphics-pln/exmplgrf.tex
@@ -1,9 +1,9 @@
\input graphicx
-\includegraphics{a}
+\includegraphics{example-image}
-\includegraphics[scale=2]{a}
+\includegraphics[scale=2]{example-image}
hello\rotatebox[origin=c]{180}{hello}hello
diff --git a/Master/texmf-dist/doc/plain/graphics-pln/exmplpfg.tex b/Master/texmf-dist/doc/plain/graphics-pln/exmplpfg.tex
index 0026cd0ee68..0187090337b 100644
--- a/Master/texmf-dist/doc/plain/graphics-pln/exmplpfg.tex
+++ b/Master/texmf-dist/doc/plain/graphics-pln/exmplpfg.tex
@@ -1,4 +1,7 @@
+% using psfrag example eps
+% /usr/local/texlive/2019/texmf-dist/doc/latex/psfrag/example.eps
+
\input psfrag
First without psfrag: