1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
# pgfrcs package
# muzimuzhi, 7 Jul 2020, tikz-pgf 3.1.5b
# Matthew Bertucci 11/16/2021 for v3.1.9a
# pgfrcs.sty
# ├── pgfutil-common.tex
# │ └── pgfutil-common-lists.tex
# ├── pgfutil-latex.def
# │ └── everyshi.sty
# └── pgfrcs.code.tex
# └── pgf.revision.tex
## from pgfutil-common.tex
\pgferror{error text%text}#*
\pgfwarning{warning text%text}#*
\usepgflibrary{list of libraries%keyvals}#*
#keyvals:\usepgflibrary#c
arrows
arrows.meta
arrows.spaced
curvilinear
datavisualization.barcharts
datavisualization.formats.functions
datavisualization.polar
decorations.footprints
decorations.fractals
decorations.markings
decorations.pathmorphing
decorations.pathreplacing
decorations.shapes
decorations.text
fadings
fixedpointarithmetic
fpu
graphdrawing.circular
graphdrawing
graphdrawing.examples
graphdrawing.force
graphdrawing.layered
graphdrawing.trees
intersections
lindenmayersystems
luamath
patterns
patterns.meta
plothandlers
plotmarks
profiler
shadings
shapes
shapes.arrows
shapes.callouts
shapes.gates.ee
shapes.gates.ee.IEC
shapes.gates.logic
shapes.gates.logic.IEC
shapes.gates.logic.US
shapes.geometric
shapes.misc
shapes.multipart
shapes.symbols
svg.path
timelines
transformations.mirror
#endkeyvals
\usepgfmodule{module names%keyvals}#*
#keyvals:\usepgfmodule#c
animations
bending
datavisualization
decorations
matrix
nonlineartransformations
oo
parser
plot
shapes
sorting
#endkeyvals
\pgfutilensuremath{formula}#*
\pgfutilpreparefilename{file name}#*
\pgfretvalquoted#*
\pgfutilconvertdcolon#*
\pgfutilifcontainsmacro{token list}{true}{false}#*
\pgfutilifstartswith{start with pattern}{token list}{true}{false}#*
\pgfutilstrreplace{search}{replacement}{string}#*
\pgfutilsolvetwotwoleq{2x2 matrix entries}{2x1 matrix entries}#*
\pgfutilsolvetwotwoleqfloat{2x2 matrix entries}{2x1 matrix entries}#*
# from pgfutil-common-lists.tex
\pgfapplistnewempty{applist name}#*
\pgfapplistpushback %<item to append%>\to %<applist name%>#*
\pgfapplistlet{cmd}=%<applist name%>#*
\pgfprependlistnewempty{prelist name}#*
\pgfprependlistpushfront %<item to prepend%>\to %<prelist name%>#*
\pgfprependlistlet{cmd}=%<prelist name%>#*
## from pgfutil-latex.def
#include:everyshi
## from pgfrcs.code.tex
\pgftypesetversion#*
\pgfrcsloaded#*
\pgfrcsatcode#*
\ProvidesFileRCS{file name}#*
\ProvidesPackageRCS{pkg name}#*
\ProvidesClassRCS{class name}#*
# from pgf.revision.tex
\pgfrevision#*
\pgfversion#*
\pgfversiondatetime#*
\pgfrevisiondatetime#*
\pgfversiondate#*
\pgfrevisiondate#*
|