View on GitHub

PDF-ISO_32000-raku

Data definitions and tables, mined from the PDF ISO-32000 specification

[Raku PDF Project] / PDF::ISO_32000

PDF-ISO_32000-raku

The PDF 32000-1:2008 1.7 Specification contains around 380 tables, of which about 280 can be considered data or object definitions.

This module has been used to extract and generate the roles and classes from the PDF specification for use by PDF::Class.

PDF::Class (at last count) implements roles and classes for about 100 of these objects, most of which have been derived and/or checked against the roles generated by this module.

This module contains:

Tables

Data is available for all of the tables in the PDF-32000 1.7 specification:

use PDF::ISO_32000;
# Load data about the Document Information dictionary
my %info = PDF::ISO_32000.table: "Table_317-Entries_in_the_document_information_dictionary";
# -OR- by table number
%info = PDF::ISO_32000.[317];
say %info<caption>;             # Table 317 – Entries in the document information dictionary
say %info<head>.join(" | ");    # Key | Type | Value
say %info<rows>[0].join(" | "); # Title | text string | (Optional; PDF 1.1) The document’s title.

The table-index method returns a list that maps table numbers to table names:

say PDF::ISO_32000.table-index[317] # Table 317 - Info_entries

The appendix method returns a hash index into the Appendix:

my $stream-ops = PDF::ISO_32000.appendix<A.1>;
say $stream-ops, # PDF_content_stream_operators
say PDF::ISO_32000.table($stream-ops)<caption>; #  Table A.1 – PDF content stream operators

Roles

Roles are available for tables named *_entries, or *_attributes.

% p6doc ISO_32000:Table_317-Entries_in_the_document_information_dictionary
% p6doc ISO_32000:Table_28-Entries_in_the_catalog_dictionary

The roles also contain method stubs for the entries that need to be implemented for the role. For example:

% cat << EOF > lib/Catalog.rakumod
use ISO_32000::Table_28-Entries_in_the_catalog_dictionary;
unit class Catalog does ISO_32000::Table_28-Entries_in_the_catalog_dictionary;
EOF
% raku -I . -M Catalog
===SORRY!=== Error while compiling lib/Catalog.rakumod (Catalog)
Method 'SpiderInfo' must be implemented by Catalog because it is required by roles: ISO_32000::Table_28-Entries_in_the_catalog_dictionary.
at lib/Catalog.rakumod (Catalog):1

Building this module

The companion git repository git@github.com:pdf-raku/PDF-ISO_32000-Builder-raku.git is used to build this module. It will be cloned automatically. Please check this module’s META6.json for any missing dependencies.

Note that the META6.json and README.md are generated. Any edits the these files should be made to the sources src/META6.in and src/README.in, before building.

To rebuild the roles, resources, README.md and META6.json:

$ make clean
$ make
$ make test

Or to fully rebuild the module type $ make realclean. This will refetch specification and rebuild the the XML extract gen/PDF-ISO_32000.xml. This will take some time. At least 2Gb of available memory is recommended. The wget utility and network access are also required.

ISO 32000 Roles

The following interface roles have been mined from the ISO-32000 specification

Roles and Entries

ISO_32000 Reference Entries
Table F.1 – Entries in the linearization parameter dictionary /Linearized /L /H /O /E /N /T /P
Table 5 – Entries common to all stream dictionaries /Length /Filter /DecodeParms /F /FFilter /FDecodeParms /DL
Table 8 – Optional parameters for LZWDecode and FlateDecode filters /Predictor /Colors /BitsPerComponent /Columns /EarlyChange
Table 11 – Optional parameters for the CCITTFaxDecode filter /K /EndOfLine /EncodedByteAlign /Columns /Rows /EndOfBlock /BlackIs1 /DamagedRowsBeforeError
Table 12 – Optional parameter for the JBIG2Decode filter /JBIG2Globals
Table 13 – Optional parameter for the DCTDecode filter /ColorTransform
Table 14 – Optional parameters for Crypt filters /Type /Name
Table 15 – Entries in the file trailer dictionary /Size /Prev /Root /Encrypt /Info /ID
Table 16 – Additional entries specific to an object stream dictionary /Type /N /First /Extends
Table 17 – Additional entries specific to a cross-reference stream dictionary /Type /Size /Index /Prev /W
Table 19 – Additional entries in a hybrid-reference file’s trailer dictionary /XRefStm
Table 20 – Entries common to all encryption dictionaries /Filter /SubFilter /V /Length /CF /StmF /StrF /EFF
Table 21 – Additional encryption dictionary entries for the standard security handler /R /O /U /P /EncryptMetadata
Table 23 – Additional encryption dictionary entries for public-key security handlers /Recipients /P
Table 25 – Entries common to all crypt filter dictionaries /Type /CFM /AuthEvent /Length
Table 27 – Additional crypt filter dictionary entries for public-key security handlers /Recipients /EncryptMetadata
Table 28 – Entries in the catalog dictionary /Type /Version /Extensions /Pages /PageLabels /Names /Dests /ViewerPreferences /PageLayout /PageMode /Outlines /Threads /OpenAction /AA /URI /AcroForm /Metadata /StructTreeRoot /MarkInfo /Lang /SpiderInfo /OutputIntents /PieceInfo /OCProperties /Perms /Legal /Requirements /Collection /NeedsRendering
Table 29 – Required entries in a page tree node /Type /Parent /Kids /Count
Table 30 – Entries in a page object /Type /Parent /LastModified /Resources /MediaBox /CropBox /BleedBox /TrimBox /ArtBox /BoxColorInfo /Contents /Rotate /Group /Thumb /B /Dur /Trans /Annots /AA /Metadata /PieceInfo /StructParents /ID /PZ /SeparationInfo /Tabs /TemplateInstantiated /PresSteps /UserUnit /VP
Table 31 – Entries in the name dictionary /Dests /AP /JavaScript /Pages /Templates /IDS /URLS /EmbeddedFiles /AlternatePresentations /Renditions
Table 33 – Entries in a resource dictionary /ExtGState /ColorSpace /Pattern /Shading /XObject /Font /ProcSet /Properties
Table 36 – Entries in a name tree node dictionary /Kids /Names /Limits
Table 37 – Entries in a number tree node dictionary /Kids /Nums /Limits
Table 38 – Entries common to all function dictionaries /FunctionType /Domain /Range
Table 39 – Additional entries specific to a type 0 function dictionary /Size /BitsPerSample /Order /Encode /Decode
Table 40 – Additional entries specific to a type 2 function dictionary /C0 /C1 /N
Table 41 – Additional entries specific to a type 3 function dictionary /Functions /Bounds /Encode
Table 44 – Entries in a file specification dictionary /Type /FS /F /UF /DOS /Mac /Unix /ID /V /EF /RF /Desc /CI
Table 45 – Additional entries in an embedded file stream dictionary /Type /Subtype /Params
Table 46 – Entries in an embedded file parameter dictionary /Size /CreationDate /ModDate /Mac /CheckSum
Table 47 – Entries in a Mac OS file information dictionary /Subtype /Creator /ResFork
Table 48 – Entries in a collection item dictionary /Type
Table 49 – Entries in a collection subitem dictionary /Type /D /P
Table 50 – Entries in a developer extensions dictionary /Type /BaseVersion /ExtensionLevel
Table 52 – Device-Independent Graphics State Parameters /CTM /clippingPath /colorSpace /color /textState /lineWidth /lineCap /lineJoin /miterLimit /dashPattern /renderingIntent /strokeAdjustment /blendMode /softMask /alphaConstant /alphaSource
Table 53 – Device-Dependent Graphics State Parameters /overprint /overprintMode /blackGeneration /undercolorRemoval /transfer /halftone /flatness /smoothness
Table 58 – Entries in a Graphics State Parameter Dictionary /Type /LW /LC /LJ /ML /D /RI /OP /op /OPM /Font /BG /BG2 /UCR /UCR2 /TR /TR2 /HT /FL /SM /SA /BM /SMask /CA /ca /AIS /TK
Table 63 – Entries in a CalGray Colour Space Dictionary /WhitePoint /BlackPoint /Gamma
Table 64 – Entries in a CalRGB Colour Space Dictionary /WhitePoint /BlackPoint /Gamma /Matrix
Table 65 – Entries in a Lab Colour Space Dictionary /WhitePoint /BlackPoint /Range
Table 66 – Additional Entries Specific to an ICC Profile Stream Dictionary /N /Alternate /Range /Metadata
Table 71 – Entries in a DeviceN Colour Space Attributes Dictionary /Subtype /Colorants /Process /MixingHints
Table 72 – Entries in a DeviceN Process Dictionary /ColorSpace /Components
Table 73 – Entries in a DeviceN Mixing Hints Dictionary /Solidities /PrintingOrder /DotGain
Table 75 – Additional Entries Specific to a Type 1 Pattern Dictionary /Type /PatternType /PaintType /TilingType /BBox /XStep /YStep /Resources /Matrix
Table 76 – Entries in a Type 2 Pattern Dictionary /Type /PatternType /Shading /Matrix /ExtGState
Table 78 – Entries Common to All Shading Dictionaries /ShadingType /ColorSpace /Background /BBox /AntiAlias
Table 79 – Additional Entries Specific to a Type 1 Shading Dictionary /Domain /Matrix /Function
Table 80 – Additional Entries Specific to a Type 2 Shading Dictionary /Coords /Domain /Function /Extend
Table 81 – Additional Entries Specific to a Type 3 Shading Dictionary /Coords /Domain /Function /Extend
Table 82 – Additional Entries Specific to a Type 4 Shading Dictionary /BitsPerCoordinate /BitsPerComponent /BitsPerFlag /Decode /Function
Table 83 – Additional Entries Specific to a Type 5 Shading Dictionary /BitsPerCoordinate /BitsPerComponent /VerticesPerRow /Decode /Function
Table 84 – Additional Entries Specific to a Type 6 Shading Dictionary /BitsPerCoordinate /BitsPerComponent /BitsPerFlag /Decode /Function
Table 88 – Additional Entries Specific to a PostScript XObject Dictionary /Type /Subtype /Level1
Table 89 – Additional Entries Specific to an Image Dictionary /Type /Subtype /Width /Height /ColorSpace /BitsPerComponent /Intent /ImageMask /Mask /Decode /Interpolate /Alternates /SMask /SMaskInData /Name /StructParent /ID /OPI /Metadata /OC
Table 91 – Entries in an Alternate Image Dictionary /Image /DefaultForPrinting /OC
Table 95 – Additional Entries Specific to a Type 1 Form Dictionary /Type /Subtype /FormType /BBox /Matrix /Resources /Group /Ref /Metadata /PieceInfo /LastModified /StructParent /StructParents /OPI /OC /Name
Table 96 – Entries Common to all Group Attributes Dictionaries /Type /S
Table 97 – Entries in a Reference Dictionary /F /Page /ID
Table 98 – Entries in an Optional Content Group Dictionary /Type /Name /Intent /Usage
Table 99 – Entries in an Optional Content Membership Dictionary /Type /OCGs /P /VE
Table 100 – Entries in the Optional Content Properties Dictionary /OCGs /D /Configs
Table 101 – Entries in an Optional Content Configuration Dictionary /Name /Creator /BaseState /ON /OFF /Intent /AS /Order /ListMode /RBGroups /Locked
Table 102 – Entries in an Optional Content Usage Dictionary /CreatorInfo /Language /Export /Zoom /Print /View /User /PageElement
Table 103 – Entries in a Usage Application Dictionary /Event /OCGs /Category
Table 111 – Entries in a Type 1 font dictionary /Type /Subtype /Name /BaseFont /FirstChar /LastChar /Widths /FontDescriptor /Encoding /ToUnicode
Table 112 – Entries in a Type 3 font dictionary /Type /Subtype /Name /FontBBox /FontMatrix /CharProcs /Encoding /FirstChar /LastChar /Widths /FontDescriptor /Resources /ToUnicode
Table 114 – Entries in an encoding dictionary /Type /BaseEncoding /Differences
Table 116 – Entries in a CIDSystemInfo dictionary /Registry /Ordering /Supplement
Table 117 – Entries in a CIDFont dictionary /Type /Subtype /BaseFont /CIDSystemInfo /FontDescriptor /DW /W /DW2 /W2 /CIDToGIDMap
Table 120 – Additional entries in a CMap stream dictionary /Type /CMapName /CIDSystemInfo /WMode /UseCMap
Table 121 – Entries in a Type 0 font dictionary /Type /Subtype /BaseFont /Encoding /DescendantFonts /ToUnicode
Table 122 – Entries common to all font descriptors /Type /FontName /FontFamily /FontStretch /FontWeight /Flags /FontBBox /ItalicAngle /Ascent /Descent /Leading /CapHeight /XHeight /StemV /StemH /AvgWidth /MaxWidth /MissingWidth /FontFile /FontFile2 /FontFile3 /CharSet
Table 124 – Additional font descriptor entries for CIDFonts /Style /Lang /FD /CIDSet
Table 126 – Embedded font organization for various font types /FontFile /FontFile2 /FontFile3
Table 127 – Additional entries in an embedded font stream dictionary /Length1 /Length2 /Length3 /Subtype /Metadata
Table 130 – Entries in a type 1 halftone dictionary /Type /HalftoneType /HalftoneName /Frequency /Angle /SpotFunction /AccurateScreens /TransferFunction
Table 131 – Additional entries specific to a type 6 halftone dictionary /Type /HalftoneType /HalftoneName /Width /Height /TransferFunction
Table 132 – Additional entries specific to a type 10 halftone dictionary /Type /HalftoneType /HalftoneName /Xsquare /Ysquare /TransferFunction
Table 133 – Additional entries specific to a type 16 halftone dictionary /Type /HalftoneType /HalftoneName /Width /Height /Width2 /Height2 /TransferFunction
Table 134 – Entries in a type 5 halftone dictionary /Type /HalftoneType /HalftoneName /Default
Table 144 – Entries in a soft-mask dictionary /Type /S /G /BC /TR
Table 146 – Additional entry in a soft-mask image dictionary /Matte
Table 147 – Additional entries specific to a transparency group attributes dictionary /S /CS /I /K
Table 150 – Entries in a viewer preferences dictionary /HideToolbar /HideMenubar /HideWindowUI /FitWindow /CenterWindow /DisplayDocTitle /NonFullScreenPageMode /Direction /ViewArea /ViewClip /PrintArea /PrintClip /PrintScaling /Duplex /PickTrayByPDFSize /PrintPageRange /NumCopies
Table 152 – Entries in the outline dictionary /Type /First /Last /Count
Table 153 – Entries in an outline item dictionary /Title /Parent /Prev /Next /First /Last /Count /Dest /A /SE /C /F
Table 155 – Entries in a collection dictionary /Type /Schema /D /View /Sort
Table 156 – Entries in a collection schema dictionary /Type
Table 157 – Entries in a collection field dictionary /Type /Subtype /N /O /V /E
Table 158 – Entries in a collection sort dictionary /Type /S /A
Table 159 – Entries in a page label dictionary /Type /S /P /St
Table 160 – Entries in a thread dictionary /Type /F /I
Table 161 – Entries in a bead dictionary /Type /T /N /V /P /R
Table 162 – Entries in a transition dictionary /Type /S /D /Dm /M /Di /SS /B
Table 163 – Entries in a navigation node dictionary /Type /NA /PA /Next /Prev /Dur
Table 164 – Entries common to all annotation dictionaries /Type /Subtype /Rect /Contents /P /NM /M /F /AP /AS /Border /C /StructParent /OC
Table 166 – Entries in a border style dictionary /Type /W /S /D
Table 167 – Entries in a border effect dictionary /S /I
Table 168 – Entries in an appearance dictionary /N /R /D
Table 170 – Additional entries specific to markup annotations /T /Popup /CA /RC /CreationDate /IRT /Subj /RT /IT /ExData
Table 172 – Additional entries specific to a text annotation /Subtype /Open /Name /State /StateModel
Table 173 – Additional entries specific to a link annotation /Subtype /A /Dest /H /PA /QuadPoints /BS
Table 174 – Additional entries specific to a free text annotation /Subtype /DA /Q /RC /DS /CL /IT /BE /RD /BS /LE
Table 175 – Additional entries specific to a line annotation /Subtype /L /BS /LE /IC /LL /LLE /Cap /IT /LLO /CP /Measure /CO
Table 177 – Additional entries specific to a square or circle annotation /Subtype /BS /IC /BE /RD
Table 178 – Additional entries specific to a polygon or polyline annotation /Subtype /Vertices /LE /BS /IC /BE /IT /Measure
Table 179 – Additional entries specific to text markup annotations /Subtype /QuadPoints
Table 180 – Additional entries specific to a caret annotation /Subtype /RD /Sy
Table 181 – Additional entries specific to a rubber stamp annotation /Subtype /Name
Table 182 – Additional entries specific to an ink annotation /Subtype /InkList /BS
Table 183 – Additional entries specific to a pop-up annotation /Subtype /Parent /Open
Table 184 – Additional entries specific to a file attachment annotation /Subtype /FS /Name
Table 185 – Additional entries specific to a sound annotation /Subtype /Sound /Name
Table 186 – Additional entries specific to a movie annotation /Subtype /T /Movie /A
Table 187 – Additional entries specific to a screen annotation /Subtype /T /MK /A /AA
Table 188 – Additional entries specific to a widget annotation /Subtype /H /MK /A /AA /BS /Parent
Table 189 – Entries in an appearance characteristics dictionary /R /BC /BG /CA /RC /AC /I /RI /IX /IF /TP
Table 190 – Additional entries specific to a watermark annotation /Subtype /FixedPrint
Table 191 – Entries in a fixed print dictionary /Type /Matrix /H /V
Table 192 – Additional entries specific to a redaction annotation /Subtype /QuadPoints /IC /RO /OverlayText /Repeat /DA /Q
Table 193 – Entries common to all action dictionaries /Type /S /Next
Table 194 – Entries in an annotation’s additional-actions dictionary /E /X /D /U /Fo /Bl /PO /PC /PV /PI
Table 195 – Entries in a page object’s additional-actions dictionary /O /C
Table 196 – Entries in a form field’s additional-actions dictionary /K /F /V /C
Table 197 – Entries in the document catalog’s additional-actions dictionary /WC /WS /DS /WP /DP
Table 199 – Additional entries specific to a go-to action /S /D
Table 200 – Additional entries specific to a remote go-to action /S /F /D /NewWindow
Table 201 – Additional entries specific to an embedded go-to action /S /F /D /NewWindow /T
Table 202 – Entries specific to a target dictionary /R /N /P /A /T
Table 203 – Additional entries specific to a launch action /S /F /Win /Mac /Unix /NewWindow
Table 204 – Entries in a Windows launch parameter dictionary /F /D /O /P
Table 205 – Additional entries specific to a thread action /S /F /D /B
Table 206 – Additional entries specific to a URI action /S /URI /IsMap
Table 207 – Entry in a URI dictionary /Base
Table 208 – Additional entries specific to a sound action /S /Sound /Volume /Synchronous /Repeat /Mix
Table 209 – Additional entries specific to a movie action /S /Annotation /T /Operation
Table 210 – Additional entries specific to a hide action /S /T /H
Table 212 – Additional entries specific to named actions /S /N
Table 213 – Additional entries specific to a set-OCG-state action /S /State /PreserveRB
Table 214 – Additional entries specific to a rendition action /S /R /AN /OP /JS
Table 215 – Additional entries specific to a transition action /S /Trans
Table 216 – Additional entries specific to a go-to-3D-view action /S /TA /V
Table 217 – Additional entries specific to a JavaScript action /S /JS
Table 218 – Entries in the interactive form dictionary /Fields /NeedAppearances /SigFlags /CO /DR /DA /Q /XFA
Table 220 – Entries common to all field dictionaries /FT /Parent /Kids /T /TU /TM /Ff /V /DV /AA
Table 222 – Additional entries common to all fields containing variable text /DA /Q /DS /RV
Table 227 – Additional entry specific to check box and radio button fields /Opt
Table 229 – Additional entry specific to a text field /MaxLen
Table 231 – Additional entries specific to a choice field /Opt /TI /I
Table 232 – Additional entries specific to a signature field /Lock /SV
Table 233 – Entries in a signature field lock dictionary /Type /Action /Fields
Table 234 – Entries in a signature field seed value dictionary /Type /Ff /Filter /SubFilter /DigestMethod /V /Cert /Reasons /MDP /TimeStamp /LegalAttestation /AddRevInfo
Table 235 – Entries in a certificate seed value dictionary /Type /Ff /Subject /SubjectDN /KeyUsage /Issuer /OID /URL /URLType
Table 236 – Additional entries specific to a submit-form action /S /F /Fields /Flags
Table 238 – Additional entries specific to a reset-form action /S /Fields /Flags
Table 240 – Additional entries specific to an import-data action /S /F
Table 241 – Entry in the FDF trailer dictionary /Root
Table 242 – Entries in the FDF catalog dictionary /Version /FDF
Table 243 – Entries in the FDF dictionary /F /ID /Fields /Status /Pages /Encoding /Annots /Differences /Target /EmbeddedFDFs /JavaScript
Table 244 – Additional entry in an embedded file stream dictionary for an encrypted FDF file /EncryptionRevision
Table 245 – Entries in the JavaScript dictionary /Before /After /AfterPermsReady /Doc
Table 246 – Entries in an FDF field dictionary /Kids /T /V /Ff /SetFf /ClrFf /F /SetF /ClrF /AP /APRef /IF /Opt /A /AA /RV
Table 247 – Entries in an icon fit dictionary /SW /S /A /FB
Table 248 – Entries in an FDF page dictionary /Templates /Info
Table 249 – Entries in an FDF template dictionary /TRef /Fields /Rename
Table 250 – Entries in an FDF named page reference dictionary /Name /F
Table 251 – Additional entry for annotation dictionaries in an FDF file /Page
Table 252 – Entries in a signature dictionary /Type /Filter /SubFilter /Contents /Cert /ByteRange /Reference /Changes /Name /M /Location /Reason /ContactInfo /R /V /Prop_Build /Prop_AuthTime /Prop_AuthType
Table 253 – Entries in a signature reference dictionary /Type /TransformMethod /TransformParams /Data /DigestMethod
Table 254 – Entries in the DocMDP transform parameters dictionary /Type /P /V
Table 255 – Entries in the UR transform parameters dictionary /Type /Document /Msg /V /Annots /Form /Signature /EF /P
Table 256 – Entries in the FieldMDP transform parameters dictionary /Type /Action /Fields /V
Table 258 – Entries in a permissions dictionary /DocMDP /UR3
Table 259 – Entries in a legal attestation dictionary /JavaScriptActions /LaunchActions /URIActions /MovieActions /SoundActions /HideAnnotationActions /GoToRemoteActions /AlternateImages /ExternalStreams /TrueTypeFonts /ExternalRefXobjects /ExternalOPIdicts /NonEmbeddedFonts /DevDepGS_OP /DevDepGS_HT /DevDepGS_TR /DevDepGS_UCR /DevDepGS_BG /DevDepGS_FL /Annotations /OptionalContent /Attestation
Table 260 – Entries in a viewport dictionary /Type /BBox /Name /Measure
Table 261 – Entries in a measure dictionary /Type /Subtype
Table 262 – Additional entries in a rectilinear measure dictionary /R /X /Y /D /A /T /S /O /CYX
Table 263 – Entries in a number format dictionary /Type /U /C /F /D /FD /RT /RD /PS /SS /O
Table 264 – Entries common to all requirement dictionaries /Type /S /RH
Table 265 – Entries in a requirement handler dictionary /Type /S /Script
Table 266 – Entries common to all rendition dictionaries /Type /S /N /MH /BE
Table 267 – Entries in a rendition MH/BE dictionary /C
Table 268 – Entries in a media criteria dictionary /Type /A /C /O /S /R /D /Z /V /P /L
Table 269 – Entries in a minimum bit depth dictionary /Type /V /M
Table 270 – Entries in a minimum screen size dictionary /Type /V /M
Table 271 – Additional entries in a media rendition dictionary /C /P /SP
Table 272 – Additional entries specific to a selector rendition dictionary /R
Table 273 – Entries common to all media clip dictionaries /Type /S /N
Table 274 – Additional entries in a media clip data dictionary /D /CT /P /Alt /PL /MH /BE
Table 275 – Entries in a media permissions dictionary /Type /TF
Table 276 – Entries in a media clip data MH/BE dictionary /BU
Table 277 – Additional entries in a media clip section dictionary /D /Alt /MH /BE
Table 278 – Entries in a media clip section MH/BE dictionary /B /E
Table 279 – Entries in a media play parameters dictionary /Type /PL /MH /BE
Table 280 – Entries in a media play parameters MH/BE dictionary /V /C /F /D /A /RC
Table 281 – Entries in a media duration dictionary /Type /S /T
Table 282 – Entries in a media screen parameters dictionary /Type /MH /BE
Table 283 – Entries in a media screen parameters MH/BE dictionary /W /B /O /M /F
Table 284 – Entries in a floating window parameters dictionary /Type /D /RT /P /O /T /UC /R /TT
Table 285 – Entries common to all media offset dictionaries /Type /S
Table 286 – Additional entries in a media offset time dictionary /T
Table 287 – Additional entries in a media offset frame dictionary /F
Table 288 – Additional entries in a media offset marker dictionary /M
Table 289 – Entries in a timespan dictionary /Type /S /V
Table 290 – Entries in a media players dictionary /Type /MU /A /NU
Table 291 – Entries in a media player info dictionary /Type /PID /MH /BE
Table 292 – Entries in a software identifier dictionary /Type /U /L /LI /H /HI /OS
Table 294 – Additional entries specific to a sound object /Type /R /C /B /E /CO /CP
Table 295 – Entries in a movie dictionary /F /Aspect /Rotate /Poster
Table 296 – Entries in a movie activation dictionary /Start /Duration /Rate /Volume /ShowControls /Mode /Synchronous /FWScale /FWPosition
Table 297 – Entries in a slideshow dictionary /Type /Subtype /Resources /StartResource
Table 298 – Additional entries specific to a 3D annotation /Subtype /3DD /3DV /3DA /3DI /3DB
Table 299 – Entries in a 3D activation dictionary /A /AIS /D /DIS /TB /NP
Table 300 – Entries in a 3D stream dictionary /Type /Subtype /VA /DV /Resources /OnInstantiate /AN
Table 301 – Entries in an 3D animation style dictionary /Type /Subtype /PC /TM
Table 303 – Entries in a 3D reference dictionary /Type /3DD
Table 304 – Entries in a 3D view dictionary /Type /XN /IN /MS /C2W /U3DPath /CO /P /O /BG /RM /LS /SA /NA /NR
Table 305 – Entries in a projection dictionary /Subtype /CS /F /N /FOV /PS /OS /OB
Table 306 – Entries in a 3D background dictionary /Type /Subtype /CS /C /EA
Table 307 – Entries in a render mode dictionary /Type /Subtype /AC /FC /O /CV
Table 309 – Entries in a 3D lighting scheme dictionary /Type /Subtype
Table 311 – Entries in a 3D cross section dictionary /Type /C /O /PO /PC /IV /IC
Table 312 – Entries in a 3D node dictionary /Type /N /O /V /M
Table 313 – Entries in an external data dictionary used to markup 3D annotations /Type /Subtype /MD5 /3DA /3DV
Table 315 – Additional entries in a metadata stream dictionary /Type /Subtype
Table 316 – Additional entry for components having metadata /Metadata
Table 317 – Entries in the document information dictionary /Title /Author /Subject /Keywords /Creator /Producer /CreationDate /ModDate /Trapped
Table 318 – Entries in a page-piece dictionary  
Table 319 – Entries in an data dictionary /LastModified /Private
Table 321 – Entries in the mark information dictionary /Marked /UserProperties /Suspects
Table 322 – Entries in the structure tree root /Type /K /IDTree /ParentTree /ParentTreeNextKey /RoleMap /ClassMap
Table 323 – Entries in a structure element dictionary /Type /S /P /ID /Pg /K /A /C /R /T /Lang /Alt /E /ActualText
Table 324 – Entries in a marked-content reference dictionary /Type /Pg /Stm /StmOwn /MCID
Table 325 – Entries in an object reference dictionary /Type /Pg /Obj
Table 326 – Additional dictionary entries for structure element access /StructParent /StructParents
Table 327 – Entry common to all attribute object dictionaries /O
Table 328 – Additional entries in an attribute object dictionary for user properties /O /P
Table 329 – Entries in a user property dictionary /N /V /F /H
Table 330 – Property list entries for artifacts /Type /BBox /Attached /Subtype
Table 343 – Standard layout attributes common to all standard structure types /Placement /WritingMode /BackgroundColor /BorderColor /BorderStyle /BorderThickness /Padding /Color
Table 344 – Additional standard layout attributes specific to block-level structure elements /SpaceBefore /SpaceAfter /StartIndent /EndIndent /TextIndent /TextAlign /BBox /Width /Height /BlockAlign /InlineAlign /TBorderStyle /TPadding
Table 345 – Standard layout attributes specific to inline-level structure elements /BaselineShift /LineHeight /TextDecorationColor /TextDecorationThickness /TextDecorationType /RubyAlign /RubyPosition /GlyphOrientationVertical
Table 346 – Standard column attributes /ColumnCount /ColumnGap /ColumnWidths
Table 347 – Standard list attribute /ListNumbering
Table 348 – PrintField attributes /Role /checked /Desc
Table 349 – Standard table attributes /RowSpan /ColSpan /Headers /Scope /Summary
Table 350 – Entries in the Web Capture information dictionary /V /C
Table 352 – Entries common to all Web Capture content sets /Type /S /ID /O /SI /CT /TS
Table 353 – Additional entries specific to a Web Capture page set /S /T /TID
Table 354 – Additional entries specific to a Web Capture image set /S /R
Table 355 – Entries in a source information dictionary /AU /TS /E /S /C
Table 356 – Entries in a URL alias dictionary /U /C
Table 357 – Entries in a Web Capture command dictionary /URL /L /F /P /CT /H /S
Table 359 – Entries in a Web Capture command settings dictionary /G /C
Table 360 – Entries in a box colour information dictionary /CropBox /BleedBox /TrimBox /ArtBox
Table 361 – Entries in a box style dictionary /C /W /S /D
Table 362 – Additional entries specific to a printer’s mark annotation /Subtype /MN
Table 363 – Additional entries specific to a printer’s mark form dictionary /MarkStyle /Colorants
Table 364 – Entries in a separation dictionary /Pages /DeviceColorant /ColorSpace
Table 365 – Entries in an output intent dictionary /Type /S /OutputCondition /OutputConditionIdentifier /RegistryName /Info /DestOutputProfile
Table 366 – Additional entries specific to a trap network annotation /Subtype /LastModified /Version /AnnotStates /FontFauxing
Table 367 – Additional entries specific to a trap network appearance stream /PCM /SeparationColorNames /TrapRegions /TrapStyles
Table 368 – Entry in an OPI version dictionary /versionNumber

Entry to role mappings

Entry ISO_32000 Roles
/3DA Table 298 – Additional entries specific to a 3D annotation Table 313 – Entries in an external data dictionary used to markup 3D annotations
/3DB Table 298 – Additional entries specific to a 3D annotation
/3DD Table 298 – Additional entries specific to a 3D annotation Table 303 – Entries in a 3D reference dictionary
/3DI Table 298 – Additional entries specific to a 3D annotation
/3DV Table 298 – Additional entries specific to a 3D annotation Table 313 – Entries in an external data dictionary used to markup 3D annotations
/A Table 153 – Entries in an outline item dictionary Table 158 – Entries in a collection sort dictionary Table 173 – Additional entries specific to a link annotation Table 186 – Additional entries specific to a movie annotation Table 187 – Additional entries specific to a screen annotation Table 188 – Additional entries specific to a widget annotation Table 202 – Entries specific to a target dictionary Table 246 – Entries in an FDF field dictionary Table 247 – Entries in an icon fit dictionary Table 262 – Additional entries in a rectilinear measure dictionary Table 268 – Entries in a media criteria dictionary Table 280 – Entries in a media play parameters MH/BE dictionary Table 290 – Entries in a media players dictionary Table 299 – Entries in a 3D activation dictionary Table 323 – Entries in a structure element dictionary
/AA Table 28 – Entries in the catalog dictionary Table 30 – Entries in a page object Table 187 – Additional entries specific to a screen annotation Table 188 – Additional entries specific to a widget annotation Table 220 – Entries common to all field dictionaries Table 246 – Entries in an FDF field dictionary
/AC Table 189 – Entries in an appearance characteristics dictionary Table 307 – Entries in a render mode dictionary
/AIS Table 58 – Entries in a Graphics State Parameter Dictionary Table 299 – Entries in a 3D activation dictionary
/AN Table 214 – Additional entries specific to a rendition action Table 300 – Entries in a 3D stream dictionary
/AP Table 31 – Entries in the name dictionary Table 164 – Entries common to all annotation dictionaries Table 246 – Entries in an FDF field dictionary
/APRef Table 246 – Entries in an FDF field dictionary
/AS Table 101 – Entries in an Optional Content Configuration Dictionary Table 164 – Entries common to all annotation dictionaries
/AU Table 355 – Entries in a source information dictionary
/AccurateScreens Table 130 – Entries in a type 1 halftone dictionary
/AcroForm Table 28 – Entries in the catalog dictionary
/Action Table 233 – Entries in a signature field lock dictionary Table 256 – Entries in the FieldMDP transform parameters dictionary
/ActualText Table 323 – Entries in a structure element dictionary
/AddRevInfo Table 234 – Entries in a signature field seed value dictionary
/After Table 245 – Entries in the JavaScript dictionary
/AfterPermsReady Table 245 – Entries in the JavaScript dictionary
/Alt Table 274 – Additional entries in a media clip data dictionary Table 277 – Additional entries in a media clip section dictionary Table 323 – Entries in a structure element dictionary
/Alternate Table 66 – Additional Entries Specific to an ICC Profile Stream Dictionary
/AlternateImages Table 259 – Entries in a legal attestation dictionary
/AlternatePresentations Table 31 – Entries in the name dictionary
/Alternates Table 89 – Additional Entries Specific to an Image Dictionary
/Angle Table 130 – Entries in a type 1 halftone dictionary
/AnnotStates Table 366 – Additional entries specific to a trap network annotation
/Annotation Table 209 – Additional entries specific to a movie action
/Annotations Table 259 – Entries in a legal attestation dictionary
/Annots Table 30 – Entries in a page object Table 243 – Entries in the FDF dictionary Table 255 – Entries in the UR transform parameters dictionary
/AntiAlias Table 78 – Entries Common to All Shading Dictionaries
/ArtBox Table 30 – Entries in a page object Table 360 – Entries in a box colour information dictionary
/Ascent Table 122 – Entries common to all font descriptors
/Aspect Table 295 – Entries in a movie dictionary
/Attached Table 330 – Property list entries for artifacts
/Attestation Table 259 – Entries in a legal attestation dictionary
/AuthEvent Table 25 – Entries common to all crypt filter dictionaries
/Author Table 317 – Entries in the document information dictionary
/AvgWidth Table 122 – Entries common to all font descriptors
/B Table 30 – Entries in a page object Table 162 – Entries in a transition dictionary Table 205 – Additional entries specific to a thread action Table 278 – Entries in a media clip section MH/BE dictionary Table 283 – Entries in a media screen parameters MH/BE dictionary Table 294 – Additional entries specific to a sound object
/BBox Table 75 – Additional Entries Specific to a Type 1 Pattern Dictionary Table 78 – Entries Common to All Shading Dictionaries Table 95 – Additional Entries Specific to a Type 1 Form Dictionary Table 260 – Entries in a viewport dictionary Table 330 – Property list entries for artifacts Table 344 – Additional standard layout attributes specific to block-level structure elements
/BC Table 144 – Entries in a soft-mask dictionary Table 189 – Entries in an appearance characteristics dictionary
/BE Table 174 – Additional entries specific to a free text annotation Table 177 – Additional entries specific to a square or circle annotation Table 178 – Additional entries specific to a polygon or polyline annotation Table 266 – Entries common to all rendition dictionaries Table 274 – Additional entries in a media clip data dictionary Table 277 – Additional entries in a media clip section dictionary Table 279 – Entries in a media play parameters dictionary Table 282 – Entries in a media screen parameters dictionary Table 291 – Entries in a media player info dictionary
/BG Table 58 – Entries in a Graphics State Parameter Dictionary Table 189 – Entries in an appearance characteristics dictionary Table 304 – Entries in a 3D view dictionary
/BG2 Table 58 – Entries in a Graphics State Parameter Dictionary
/BM Table 58 – Entries in a Graphics State Parameter Dictionary
/BS Table 173 – Additional entries specific to a link annotation Table 174 – Additional entries specific to a free text annotation Table 175 – Additional entries specific to a line annotation Table 177 – Additional entries specific to a square or circle annotation Table 178 – Additional entries specific to a polygon or polyline annotation Table 182 – Additional entries specific to an ink annotation Table 188 – Additional entries specific to a widget annotation
/BU Table 276 – Entries in a media clip data MH/BE dictionary
/Background Table 78 – Entries Common to All Shading Dictionaries
/BackgroundColor Table 343 – Standard layout attributes common to all standard structure types
/Base Table 207 – Entry in a URI dictionary
/BaseEncoding Table 114 – Entries in an encoding dictionary
/BaseFont Table 111 – Entries in a Type 1 font dictionary Table 117 – Entries in a CIDFont dictionary Table 121 – Entries in a Type 0 font dictionary
/BaseState Table 101 – Entries in an Optional Content Configuration Dictionary
/BaseVersion Table 50 – Entries in a developer extensions dictionary
/BaselineShift Table 345 – Standard layout attributes specific to inline-level structure elements
/Before Table 245 – Entries in the JavaScript dictionary
/BitsPerComponent Table 8 – Optional parameters for LZWDecode and FlateDecode filters Table 82 – Additional Entries Specific to a Type 4 Shading Dictionary Table 83 – Additional Entries Specific to a Type 5 Shading Dictionary Table 84 – Additional Entries Specific to a Type 6 Shading Dictionary Table 89 – Additional Entries Specific to an Image Dictionary
/BitsPerCoordinate Table 82 – Additional Entries Specific to a Type 4 Shading Dictionary Table 83 – Additional Entries Specific to a Type 5 Shading Dictionary Table 84 – Additional Entries Specific to a Type 6 Shading Dictionary
/BitsPerFlag Table 82 – Additional Entries Specific to a Type 4 Shading Dictionary Table 84 – Additional Entries Specific to a Type 6 Shading Dictionary
/BitsPerSample Table 39 – Additional entries specific to a type 0 function dictionary
/Bl Table 194 – Entries in an annotation’s additional-actions dictionary
/BlackIs1 Table 11 – Optional parameters for the CCITTFaxDecode filter
/BlackPoint Table 63 – Entries in a CalGray Colour Space Dictionary Table 64 – Entries in a CalRGB Colour Space Dictionary Table 65 – Entries in a Lab Colour Space Dictionary
/BleedBox Table 30 – Entries in a page object Table 360 – Entries in a box colour information dictionary
/BlockAlign Table 344 – Additional standard layout attributes specific to block-level structure elements
/Border Table 164 – Entries common to all annotation dictionaries
/BorderColor Table 343 – Standard layout attributes common to all standard structure types
/BorderStyle Table 343 – Standard layout attributes common to all standard structure types
/BorderThickness Table 343 – Standard layout attributes common to all standard structure types
/Bounds Table 41 – Additional entries specific to a type 3 function dictionary
/BoxColorInfo Table 30 – Entries in a page object
/ByteRange Table 252 – Entries in a signature dictionary
/C Table 153 – Entries in an outline item dictionary Table 164 – Entries common to all annotation dictionaries Table 195 – Entries in a page object’s additional-actions dictionary Table 196 – Entries in a form field’s additional-actions dictionary Table 263 – Entries in a number format dictionary Table 267 – Entries in a rendition MH/BE dictionary Table 268 – Entries in a media criteria dictionary Table 271 – Additional entries in a media rendition dictionary Table 280 – Entries in a media play parameters MH/BE dictionary Table 294 – Additional entries specific to a sound object Table 306 – Entries in a 3D background dictionary Table 311 – Entries in a 3D cross section dictionary Table 323 – Entries in a structure element dictionary Table 350 – Entries in the Web Capture information dictionary Table 355 – Entries in a source information dictionary Table 356 – Entries in a URL alias dictionary Table 359 – Entries in a Web Capture command settings dictionary Table 361 – Entries in a box style dictionary
/C0 Table 40 – Additional entries specific to a type 2 function dictionary
/C1 Table 40 – Additional entries specific to a type 2 function dictionary
/C2W Table 304 – Entries in a 3D view dictionary
/CA Table 58 – Entries in a Graphics State Parameter Dictionary Table 170 – Additional entries specific to markup annotations Table 189 – Entries in an appearance characteristics dictionary
/CF Table 20 – Entries common to all encryption dictionaries
/CFM Table 25 – Entries common to all crypt filter dictionaries
/CI Table 44 – Entries in a file specification dictionary
/CIDSet Table 124 – Additional font descriptor entries for CIDFonts
/CIDSystemInfo Table 117 – Entries in a CIDFont dictionary Table 120 – Additional entries in a CMap stream dictionary
/CIDToGIDMap Table 117 – Entries in a CIDFont dictionary
/CL Table 174 – Additional entries specific to a free text annotation
/CMapName Table 120 – Additional entries in a CMap stream dictionary
/CO Table 175 – Additional entries specific to a line annotation Table 218 – Entries in the interactive form dictionary Table 294 – Additional entries specific to a sound object Table 304 – Entries in a 3D view dictionary
/CP Table 175 – Additional entries specific to a line annotation Table 294 – Additional entries specific to a sound object
/CS Table 147 – Additional entries specific to a transparency group attributes dictionary Table 305 – Entries in a projection dictionary Table 306 – Entries in a 3D background dictionary
/CT Table 274 – Additional entries in a media clip data dictionary Table 352 – Entries common to all Web Capture content sets Table 357 – Entries in a Web Capture command dictionary
/CTM Table 52 – Device-Independent Graphics State Parameters
/CV Table 307 – Entries in a render mode dictionary
/CYX Table 262 – Additional entries in a rectilinear measure dictionary
/Cap Table 175 – Additional entries specific to a line annotation
/CapHeight Table 122 – Entries common to all font descriptors
/Category Table 103 – Entries in a Usage Application Dictionary
/CenterWindow Table 150 – Entries in a viewer preferences dictionary
/Cert Table 234 – Entries in a signature field seed value dictionary Table 252 – Entries in a signature dictionary
/Changes Table 252 – Entries in a signature dictionary
/CharProcs Table 112 – Entries in a Type 3 font dictionary
/CharSet Table 122 – Entries common to all font descriptors
/CheckSum Table 46 – Entries in an embedded file parameter dictionary
/ClassMap Table 322 – Entries in the structure tree root
/ClrF Table 246 – Entries in an FDF field dictionary
/ClrFf Table 246 – Entries in an FDF field dictionary
/ColSpan Table 349 – Standard table attributes
/Collection Table 28 – Entries in the catalog dictionary
/Color Table 343 – Standard layout attributes common to all standard structure types
/ColorSpace Table 33 – Entries in a resource dictionary Table 72 – Entries in a DeviceN Process Dictionary Table 78 – Entries Common to All Shading Dictionaries Table 89 – Additional Entries Specific to an Image Dictionary Table 364 – Entries in a separation dictionary
/ColorTransform Table 13 – Optional parameter for the DCTDecode filter
/Colorants Table 71 – Entries in a DeviceN Colour Space Attributes Dictionary Table 363 – Additional entries specific to a printer’s mark form dictionary
/Colors Table 8 – Optional parameters for LZWDecode and FlateDecode filters
/ColumnCount Table 346 – Standard column attributes
/ColumnGap Table 346 – Standard column attributes
/ColumnWidths Table 346 – Standard column attributes
/Columns Table 8 – Optional parameters for LZWDecode and FlateDecode filters Table 11 – Optional parameters for the CCITTFaxDecode filter
/Components Table 72 – Entries in a DeviceN Process Dictionary
/Configs Table 100 – Entries in the Optional Content Properties Dictionary
/ContactInfo Table 252 – Entries in a signature dictionary
/Contents Table 30 – Entries in a page object Table 164 – Entries common to all annotation dictionaries Table 252 – Entries in a signature dictionary
/Coords Table 80 – Additional Entries Specific to a Type 2 Shading Dictionary Table 81 – Additional Entries Specific to a Type 3 Shading Dictionary
/Count Table 29 – Required entries in a page tree node Table 152 – Entries in the outline dictionary Table 153 – Entries in an outline item dictionary
/CreationDate Table 46 – Entries in an embedded file parameter dictionary Table 170 – Additional entries specific to markup annotations Table 317 – Entries in the document information dictionary
/Creator Table 47 – Entries in a Mac OS file information dictionary Table 101 – Entries in an Optional Content Configuration Dictionary Table 317 – Entries in the document information dictionary
/CreatorInfo Table 102 – Entries in an Optional Content Usage Dictionary
/CropBox Table 30 – Entries in a page object Table 360 – Entries in a box colour information dictionary
/D Table 49 – Entries in a collection subitem dictionary Table 58 – Entries in a Graphics State Parameter Dictionary Table 100 – Entries in the Optional Content Properties Dictionary Table 155 – Entries in a collection dictionary Table 162 – Entries in a transition dictionary Table 166 – Entries in a border style dictionary Table 168 – Entries in an appearance dictionary Table 194 – Entries in an annotation’s additional-actions dictionary Table 199 – Additional entries specific to a go-to action Table 200 – Additional entries specific to a remote go-to action Table 201 – Additional entries specific to an embedded go-to action Table 204 – Entries in a Windows launch parameter dictionary Table 205 – Additional entries specific to a thread action Table 262 – Additional entries in a rectilinear measure dictionary Table 263 – Entries in a number format dictionary Table 268 – Entries in a media criteria dictionary Table 274 – Additional entries in a media clip data dictionary Table 277 – Additional entries in a media clip section dictionary Table 280 – Entries in a media play parameters MH/BE dictionary Table 284 – Entries in a floating window parameters dictionary Table 299 – Entries in a 3D activation dictionary Table 361 – Entries in a box style dictionary
/DA Table 174 – Additional entries specific to a free text annotation Table 192 – Additional entries specific to a redaction annotation Table 218 – Entries in the interactive form dictionary Table 222 – Additional entries common to all fields containing variable text
/DIS Table 299 – Entries in a 3D activation dictionary
/DL Table 5 – Entries common to all stream dictionaries
/DOS Table 44 – Entries in a file specification dictionary
/DP Table 197 – Entries in the document catalog’s additional-actions dictionary
/DR Table 218 – Entries in the interactive form dictionary
/DS Table 174 – Additional entries specific to a free text annotation Table 197 – Entries in the document catalog’s additional-actions dictionary Table 222 – Additional entries common to all fields containing variable text
/DV Table 220 – Entries common to all field dictionaries Table 300 – Entries in a 3D stream dictionary
/DW Table 117 – Entries in a CIDFont dictionary
/DW2 Table 117 – Entries in a CIDFont dictionary
/DamagedRowsBeforeError Table 11 – Optional parameters for the CCITTFaxDecode filter
/Data Table 253 – Entries in a signature reference dictionary
/Decode Table 39 – Additional entries specific to a type 0 function dictionary Table 82 – Additional Entries Specific to a Type 4 Shading Dictionary Table 83 – Additional Entries Specific to a Type 5 Shading Dictionary Table 84 – Additional Entries Specific to a Type 6 Shading Dictionary Table 89 – Additional Entries Specific to an Image Dictionary
/DecodeParms Table 5 – Entries common to all stream dictionaries
/Default Table 134 – Entries in a type 5 halftone dictionary
/DefaultForPrinting Table 91 – Entries in an Alternate Image Dictionary
/Desc Table 44 – Entries in a file specification dictionary Table 348 – PrintField attributes
/DescendantFonts Table 121 – Entries in a Type 0 font dictionary
/Descent Table 122 – Entries common to all font descriptors
/Dest Table 153 – Entries in an outline item dictionary Table 173 – Additional entries specific to a link annotation
/DestOutputProfile Table 365 – Entries in an output intent dictionary
/Dests Table 28 – Entries in the catalog dictionary Table 31 – Entries in the name dictionary
/DevDepGS_BG Table 259 – Entries in a legal attestation dictionary
/DevDepGS_FL Table 259 – Entries in a legal attestation dictionary
/DevDepGS_HT Table 259 – Entries in a legal attestation dictionary
/DevDepGS_OP Table 259 – Entries in a legal attestation dictionary
/DevDepGS_TR Table 259 – Entries in a legal attestation dictionary
/DevDepGS_UCR Table 259 – Entries in a legal attestation dictionary
/DeviceColorant Table 364 – Entries in a separation dictionary
/Di Table 162 – Entries in a transition dictionary
/Differences Table 114 – Entries in an encoding dictionary Table 243 – Entries in the FDF dictionary
/DigestMethod Table 234 – Entries in a signature field seed value dictionary Table 253 – Entries in a signature reference dictionary
/Direction Table 150 – Entries in a viewer preferences dictionary
/DisplayDocTitle Table 150 – Entries in a viewer preferences dictionary
/Dm Table 162 – Entries in a transition dictionary
/Doc Table 245 – Entries in the JavaScript dictionary
/DocMDP Table 258 – Entries in a permissions dictionary
/Document Table 255 – Entries in the UR transform parameters dictionary
/Domain Table 38 – Entries common to all function dictionaries Table 79 – Additional Entries Specific to a Type 1 Shading Dictionary Table 80 – Additional Entries Specific to a Type 2 Shading Dictionary Table 81 – Additional Entries Specific to a Type 3 Shading Dictionary
/DotGain Table 73 – Entries in a DeviceN Mixing Hints Dictionary
/Duplex Table 150 – Entries in a viewer preferences dictionary
/Dur Table 30 – Entries in a page object Table 163 – Entries in a navigation node dictionary
/Duration Table 296 – Entries in a movie activation dictionary
/E Table F.1 – Entries in the linearization parameter dictionary Table 157 – Entries in a collection field dictionary Table 194 – Entries in an annotation’s additional-actions dictionary Table 278 – Entries in a media clip section MH/BE dictionary Table 294 – Additional entries specific to a sound object Table 323 – Entries in a structure element dictionary Table 355 – Entries in a source information dictionary
/EA Table 306 – Entries in a 3D background dictionary
/EF Table 44 – Entries in a file specification dictionary Table 255 – Entries in the UR transform parameters dictionary
/EFF Table 20 – Entries common to all encryption dictionaries
/EarlyChange Table 8 – Optional parameters for LZWDecode and FlateDecode filters
/EmbeddedFDFs Table 243 – Entries in the FDF dictionary
/EmbeddedFiles Table 31 – Entries in the name dictionary
/Encode Table 39 – Additional entries specific to a type 0 function dictionary Table 41 – Additional entries specific to a type 3 function dictionary
/EncodedByteAlign Table 11 – Optional parameters for the CCITTFaxDecode filter
/Encoding Table 111 – Entries in a Type 1 font dictionary Table 112 – Entries in a Type 3 font dictionary Table 121 – Entries in a Type 0 font dictionary Table 243 – Entries in the FDF dictionary
/Encrypt Table 15 – Entries in the file trailer dictionary
/EncryptMetadata Table 21 – Additional encryption dictionary entries for the standard security handler Table 27 – Additional crypt filter dictionary entries for public-key security handlers
/EncryptionRevision Table 244 – Additional entry in an embedded file stream dictionary for an encrypted FDF file
/EndIndent Table 344 – Additional standard layout attributes specific to block-level structure elements
/EndOfBlock Table 11 – Optional parameters for the CCITTFaxDecode filter
/EndOfLine Table 11 – Optional parameters for the CCITTFaxDecode filter
/Event Table 103 – Entries in a Usage Application Dictionary
/ExData Table 170 – Additional entries specific to markup annotations
/Export Table 102 – Entries in an Optional Content Usage Dictionary
/ExtGState Table 33 – Entries in a resource dictionary Table 76 – Entries in a Type 2 Pattern Dictionary
/Extend Table 80 – Additional Entries Specific to a Type 2 Shading Dictionary Table 81 – Additional Entries Specific to a Type 3 Shading Dictionary
/Extends Table 16 – Additional entries specific to an object stream dictionary
/ExtensionLevel Table 50 – Entries in a developer extensions dictionary
/Extensions Table 28 – Entries in the catalog dictionary
/ExternalOPIdicts Table 259 – Entries in a legal attestation dictionary
/ExternalRefXobjects Table 259 – Entries in a legal attestation dictionary
/ExternalStreams Table 259 – Entries in a legal attestation dictionary
/F Table 5 – Entries common to all stream dictionaries Table 44 – Entries in a file specification dictionary Table 97 – Entries in a Reference Dictionary Table 153 – Entries in an outline item dictionary Table 160 – Entries in a thread dictionary Table 164 – Entries common to all annotation dictionaries Table 196 – Entries in a form field’s additional-actions dictionary Table 200 – Additional entries specific to a remote go-to action Table 201 – Additional entries specific to an embedded go-to action Table 203 – Additional entries specific to a launch action Table 204 – Entries in a Windows launch parameter dictionary Table 205 – Additional entries specific to a thread action Table 236 – Additional entries specific to a submit-form action Table 240 – Additional entries specific to an import-data action Table 243 – Entries in the FDF dictionary Table 246 – Entries in an FDF field dictionary Table 250 – Entries in an FDF named page reference dictionary Table 263 – Entries in a number format dictionary Table 280 – Entries in a media play parameters MH/BE dictionary Table 283 – Entries in a media screen parameters MH/BE dictionary Table 287 – Additional entries in a media offset frame dictionary Table 295 – Entries in a movie dictionary Table 305 – Entries in a projection dictionary Table 329 – Entries in a user property dictionary Table 357 – Entries in a Web Capture command dictionary
/FB Table 247 – Entries in an icon fit dictionary
/FC Table 307 – Entries in a render mode dictionary
/FD Table 124 – Additional font descriptor entries for CIDFonts Table 263 – Entries in a number format dictionary
/FDF Table 242 – Entries in the FDF catalog dictionary
/FDecodeParms Table 5 – Entries common to all stream dictionaries
/FFilter Table 5 – Entries common to all stream dictionaries
/FL Table 58 – Entries in a Graphics State Parameter Dictionary
/FOV Table 305 – Entries in a projection dictionary
/FS Table 44 – Entries in a file specification dictionary Table 184 – Additional entries specific to a file attachment annotation
/FT Table 220 – Entries common to all field dictionaries
/FWPosition Table 296 – Entries in a movie activation dictionary
/FWScale Table 296 – Entries in a movie activation dictionary
/Ff Table 220 – Entries common to all field dictionaries Table 234 – Entries in a signature field seed value dictionary Table 235 – Entries in a certificate seed value dictionary Table 246 – Entries in an FDF field dictionary
/Fields Table 218 – Entries in the interactive form dictionary Table 233 – Entries in a signature field lock dictionary Table 236 – Additional entries specific to a submit-form action Table 238 – Additional entries specific to a reset-form action Table 243 – Entries in the FDF dictionary Table 249 – Entries in an FDF template dictionary Table 256 – Entries in the FieldMDP transform parameters dictionary
/Filter Table 5 – Entries common to all stream dictionaries Table 20 – Entries common to all encryption dictionaries Table 234 – Entries in a signature field seed value dictionary Table 252 – Entries in a signature dictionary
/First Table 16 – Additional entries specific to an object stream dictionary Table 152 – Entries in the outline dictionary Table 153 – Entries in an outline item dictionary
/FirstChar Table 111 – Entries in a Type 1 font dictionary Table 112 – Entries in a Type 3 font dictionary
/FitWindow Table 150 – Entries in a viewer preferences dictionary
/FixedPrint Table 190 – Additional entries specific to a watermark annotation
/Flags Table 122 – Entries common to all font descriptors Table 236 – Additional entries specific to a submit-form action Table 238 – Additional entries specific to a reset-form action
/Fo Table 194 – Entries in an annotation’s additional-actions dictionary
/Font Table 33 – Entries in a resource dictionary Table 58 – Entries in a Graphics State Parameter Dictionary
/FontBBox Table 112 – Entries in a Type 3 font dictionary Table 122 – Entries common to all font descriptors
/FontDescriptor Table 111 – Entries in a Type 1 font dictionary Table 112 – Entries in a Type 3 font dictionary Table 117 – Entries in a CIDFont dictionary
/FontFamily Table 122 – Entries common to all font descriptors
/FontFauxing Table 366 – Additional entries specific to a trap network annotation
/FontFile Table 122 – Entries common to all font descriptors Table 126 – Embedded font organization for various font types
/FontFile2 Table 122 – Entries common to all font descriptors Table 126 – Embedded font organization for various font types
/FontFile3 Table 122 – Entries common to all font descriptors Table 126 – Embedded font organization for various font types
/FontMatrix Table 112 – Entries in a Type 3 font dictionary
/FontName Table 122 – Entries common to all font descriptors
/FontStretch Table 122 – Entries common to all font descriptors
/FontWeight Table 122 – Entries common to all font descriptors
/Form Table 255 – Entries in the UR transform parameters dictionary
/FormType Table 95 – Additional Entries Specific to a Type 1 Form Dictionary
/Frequency Table 130 – Entries in a type 1 halftone dictionary
/Function Table 79 – Additional Entries Specific to a Type 1 Shading Dictionary Table 80 – Additional Entries Specific to a Type 2 Shading Dictionary Table 81 – Additional Entries Specific to a Type 3 Shading Dictionary Table 82 – Additional Entries Specific to a Type 4 Shading Dictionary Table 83 – Additional Entries Specific to a Type 5 Shading Dictionary Table 84 – Additional Entries Specific to a Type 6 Shading Dictionary
/FunctionType Table 38 – Entries common to all function dictionaries
/Functions Table 41 – Additional entries specific to a type 3 function dictionary
/G Table 144 – Entries in a soft-mask dictionary Table 359 – Entries in a Web Capture command settings dictionary
/Gamma Table 63 – Entries in a CalGray Colour Space Dictionary Table 64 – Entries in a CalRGB Colour Space Dictionary
/GlyphOrientationVertical Table 345 – Standard layout attributes specific to inline-level structure elements
/GoToRemoteActions Table 259 – Entries in a legal attestation dictionary
/Group Table 30 – Entries in a page object Table 95 – Additional Entries Specific to a Type 1 Form Dictionary
/H Table F.1 – Entries in the linearization parameter dictionary Table 173 – Additional entries specific to a link annotation Table 188 – Additional entries specific to a widget annotation Table 191 – Entries in a fixed print dictionary Table 210 – Additional entries specific to a hide action Table 292 – Entries in a software identifier dictionary Table 329 – Entries in a user property dictionary Table 357 – Entries in a Web Capture command dictionary
/HI Table 292 – Entries in a software identifier dictionary
/HT Table 58 – Entries in a Graphics State Parameter Dictionary
/HalftoneName Table 130 – Entries in a type 1 halftone dictionary Table 131 – Additional entries specific to a type 6 halftone dictionary Table 132 – Additional entries specific to a type 10 halftone dictionary Table 133 – Additional entries specific to a type 16 halftone dictionary Table 134 – Entries in a type 5 halftone dictionary
/HalftoneType Table 130 – Entries in a type 1 halftone dictionary Table 131 – Additional entries specific to a type 6 halftone dictionary Table 132 – Additional entries specific to a type 10 halftone dictionary Table 133 – Additional entries specific to a type 16 halftone dictionary Table 134 – Entries in a type 5 halftone dictionary
/Headers Table 349 – Standard table attributes
/Height Table 89 – Additional Entries Specific to an Image Dictionary Table 131 – Additional entries specific to a type 6 halftone dictionary Table 133 – Additional entries specific to a type 16 halftone dictionary Table 344 – Additional standard layout attributes specific to block-level structure elements
/Height2 Table 133 – Additional entries specific to a type 16 halftone dictionary
/HideAnnotationActions Table 259 – Entries in a legal attestation dictionary
/HideMenubar Table 150 – Entries in a viewer preferences dictionary
/HideToolbar Table 150 – Entries in a viewer preferences dictionary
/HideWindowUI Table 150 – Entries in a viewer preferences dictionary
/I Table 147 – Additional entries specific to a transparency group attributes dictionary Table 160 – Entries in a thread dictionary Table 167 – Entries in a border effect dictionary Table 189 – Entries in an appearance characteristics dictionary Table 231 – Additional entries specific to a choice field
/IC Table 175 – Additional entries specific to a line annotation Table 177 – Additional entries specific to a square or circle annotation Table 178 – Additional entries specific to a polygon or polyline annotation Table 192 – Additional entries specific to a redaction annotation Table 311 – Entries in a 3D cross section dictionary
/ID Table 15 – Entries in the file trailer dictionary Table 30 – Entries in a page object Table 44 – Entries in a file specification dictionary Table 89 – Additional Entries Specific to an Image Dictionary Table 97 – Entries in a Reference Dictionary Table 243 – Entries in the FDF dictionary Table 323 – Entries in a structure element dictionary Table 352 – Entries common to all Web Capture content sets
/IDS Table 31 – Entries in the name dictionary
/IDTree Table 322 – Entries in the structure tree root
/IF Table 189 – Entries in an appearance characteristics dictionary Table 246 – Entries in an FDF field dictionary
/IN Table 304 – Entries in a 3D view dictionary
/IRT Table 170 – Additional entries specific to markup annotations
/IT Table 170 – Additional entries specific to markup annotations Table 174 – Additional entries specific to a free text annotation Table 175 – Additional entries specific to a line annotation Table 178 – Additional entries specific to a polygon or polyline annotation
/IV Table 311 – Entries in a 3D cross section dictionary
/IX Table 189 – Entries in an appearance characteristics dictionary
/Image Table 91 – Entries in an Alternate Image Dictionary
/ImageMask Table 89 – Additional Entries Specific to an Image Dictionary
/Index Table 17 – Additional entries specific to a cross-reference stream dictionary
/Info Table 15 – Entries in the file trailer dictionary Table 248 – Entries in an FDF page dictionary Table 365 – Entries in an output intent dictionary
/InkList Table 182 – Additional entries specific to an ink annotation
/InlineAlign Table 344 – Additional standard layout attributes specific to block-level structure elements
/Intent Table 89 – Additional Entries Specific to an Image Dictionary Table 98 – Entries in an Optional Content Group Dictionary Table 101 – Entries in an Optional Content Configuration Dictionary
/Interpolate Table 89 – Additional Entries Specific to an Image Dictionary
/IsMap Table 206 – Additional entries specific to a URI action
/Issuer Table 235 – Entries in a certificate seed value dictionary
/ItalicAngle Table 122 – Entries common to all font descriptors
/JBIG2Globals Table 12 – Optional parameter for the JBIG2Decode filter
/JS Table 214 – Additional entries specific to a rendition action Table 217 – Additional entries specific to a JavaScript action
/JavaScript Table 31 – Entries in the name dictionary Table 243 – Entries in the FDF dictionary
/JavaScriptActions Table 259 – Entries in a legal attestation dictionary
/K Table 11 – Optional parameters for the CCITTFaxDecode filter Table 147 – Additional entries specific to a transparency group attributes dictionary Table 196 – Entries in a form field’s additional-actions dictionary Table 322 – Entries in the structure tree root Table 323 – Entries in a structure element dictionary
/KeyUsage Table 235 – Entries in a certificate seed value dictionary
/Keywords Table 317 – Entries in the document information dictionary
/Kids Table 29 – Required entries in a page tree node Table 36 – Entries in a name tree node dictionary Table 37 – Entries in a number tree node dictionary Table 220 – Entries common to all field dictionaries Table 246 – Entries in an FDF field dictionary
/L Table F.1 – Entries in the linearization parameter dictionary Table 175 – Additional entries specific to a line annotation Table 268 – Entries in a media criteria dictionary Table 292 – Entries in a software identifier dictionary Table 357 – Entries in a Web Capture command dictionary
/LC Table 58 – Entries in a Graphics State Parameter Dictionary
/LE Table 174 – Additional entries specific to a free text annotation Table 175 – Additional entries specific to a line annotation Table 178 – Additional entries specific to a polygon or polyline annotation
/LI Table 292 – Entries in a software identifier dictionary
/LJ Table 58 – Entries in a Graphics State Parameter Dictionary
/LL Table 175 – Additional entries specific to a line annotation
/LLE Table 175 – Additional entries specific to a line annotation
/LLO Table 175 – Additional entries specific to a line annotation
/LS Table 304 – Entries in a 3D view dictionary
/LW Table 58 – Entries in a Graphics State Parameter Dictionary
/Lang Table 28 – Entries in the catalog dictionary Table 124 – Additional font descriptor entries for CIDFonts Table 323 – Entries in a structure element dictionary
/Language Table 102 – Entries in an Optional Content Usage Dictionary
/Last Table 152 – Entries in the outline dictionary Table 153 – Entries in an outline item dictionary
/LastChar Table 111 – Entries in a Type 1 font dictionary Table 112 – Entries in a Type 3 font dictionary
/LastModified Table 30 – Entries in a page object Table 95 – Additional Entries Specific to a Type 1 Form Dictionary Table 319 – Entries in an data dictionary Table 366 – Additional entries specific to a trap network annotation
/LaunchActions Table 259 – Entries in a legal attestation dictionary
/Leading Table 122 – Entries common to all font descriptors
/Legal Table 28 – Entries in the catalog dictionary
/LegalAttestation Table 234 – Entries in a signature field seed value dictionary
/Length Table 5 – Entries common to all stream dictionaries Table 20 – Entries common to all encryption dictionaries Table 25 – Entries common to all crypt filter dictionaries
/Length1 Table 127 – Additional entries in an embedded font stream dictionary
/Length2 Table 127 – Additional entries in an embedded font stream dictionary
/Length3 Table 127 – Additional entries in an embedded font stream dictionary
/Level1 Table 88 – Additional Entries Specific to a PostScript XObject Dictionary
/Limits Table 36 – Entries in a name tree node dictionary Table 37 – Entries in a number tree node dictionary
/LineHeight Table 345 – Standard layout attributes specific to inline-level structure elements
/Linearized Table F.1 – Entries in the linearization parameter dictionary
/ListMode Table 101 – Entries in an Optional Content Configuration Dictionary
/ListNumbering Table 347 – Standard list attribute
/Location Table 252 – Entries in a signature dictionary
/Lock Table 232 – Additional entries specific to a signature field
/Locked Table 101 – Entries in an Optional Content Configuration Dictionary
/M Table 162 – Entries in a transition dictionary Table 164 – Entries common to all annotation dictionaries Table 252 – Entries in a signature dictionary Table 269 – Entries in a minimum bit depth dictionary Table 270 – Entries in a minimum screen size dictionary Table 283 – Entries in a media screen parameters MH/BE dictionary Table 288 – Additional entries in a media offset marker dictionary Table 312 – Entries in a 3D node dictionary
/MCID Table 324 – Entries in a marked-content reference dictionary
/MD5 Table 313 – Entries in an external data dictionary used to markup 3D annotations
/MDP Table 234 – Entries in a signature field seed value dictionary
/MH Table 266 – Entries common to all rendition dictionaries Table 274 – Additional entries in a media clip data dictionary Table 277 – Additional entries in a media clip section dictionary Table 279 – Entries in a media play parameters dictionary Table 282 – Entries in a media screen parameters dictionary Table 291 – Entries in a media player info dictionary
/MK Table 187 – Additional entries specific to a screen annotation Table 188 – Additional entries specific to a widget annotation
/ML Table 58 – Entries in a Graphics State Parameter Dictionary
/MN Table 362 – Additional entries specific to a printer’s mark annotation
/MS Table 304 – Entries in a 3D view dictionary
/MU Table 290 – Entries in a media players dictionary
/Mac Table 44 – Entries in a file specification dictionary Table 46 – Entries in an embedded file parameter dictionary Table 203 – Additional entries specific to a launch action
/MarkInfo Table 28 – Entries in the catalog dictionary
/MarkStyle Table 363 – Additional entries specific to a printer’s mark form dictionary
/Marked Table 321 – Entries in the mark information dictionary
/Mask Table 89 – Additional Entries Specific to an Image Dictionary
/Matrix Table 64 – Entries in a CalRGB Colour Space Dictionary Table 75 – Additional Entries Specific to a Type 1 Pattern Dictionary Table 76 – Entries in a Type 2 Pattern Dictionary Table 79 – Additional Entries Specific to a Type 1 Shading Dictionary Table 95 – Additional Entries Specific to a Type 1 Form Dictionary Table 191 – Entries in a fixed print dictionary
/Matte Table 146 – Additional entry in a soft-mask image dictionary
/MaxLen Table 229 – Additional entry specific to a text field
/MaxWidth Table 122 – Entries common to all font descriptors
/Measure Table 175 – Additional entries specific to a line annotation Table 178 – Additional entries specific to a polygon or polyline annotation Table 260 – Entries in a viewport dictionary
/MediaBox Table 30 – Entries in a page object
/Metadata Table 28 – Entries in the catalog dictionary Table 30 – Entries in a page object Table 66 – Additional Entries Specific to an ICC Profile Stream Dictionary Table 89 – Additional Entries Specific to an Image Dictionary Table 95 – Additional Entries Specific to a Type 1 Form Dictionary Table 127 – Additional entries in an embedded font stream dictionary Table 316 – Additional entry for components having metadata
/MissingWidth Table 122 – Entries common to all font descriptors
/Mix Table 208 – Additional entries specific to a sound action
/MixingHints Table 71 – Entries in a DeviceN Colour Space Attributes Dictionary
/ModDate Table 46 – Entries in an embedded file parameter dictionary Table 317 – Entries in the document information dictionary
/Mode Table 296 – Entries in a movie activation dictionary
/Movie Table 186 – Additional entries specific to a movie annotation
/MovieActions Table 259 – Entries in a legal attestation dictionary
/Msg Table 255 – Entries in the UR transform parameters dictionary
/N Table F.1 – Entries in the linearization parameter dictionary Table 16 – Additional entries specific to an object stream dictionary Table 40 – Additional entries specific to a type 2 function dictionary Table 66 – Additional Entries Specific to an ICC Profile Stream Dictionary Table 157 – Entries in a collection field dictionary Table 161 – Entries in a bead dictionary Table 168 – Entries in an appearance dictionary Table 202 – Entries specific to a target dictionary Table 212 – Additional entries specific to named actions Table 266 – Entries common to all rendition dictionaries Table 273 – Entries common to all media clip dictionaries Table 305 – Entries in a projection dictionary Table 312 – Entries in a 3D node dictionary Table 329 – Entries in a user property dictionary
/NA Table 163 – Entries in a navigation node dictionary Table 304 – Entries in a 3D view dictionary
/NM Table 164 – Entries common to all annotation dictionaries
/NP Table 299 – Entries in a 3D activation dictionary
/NR Table 304 – Entries in a 3D view dictionary
/NU Table 290 – Entries in a media players dictionary
/Name Table 14 – Optional parameters for Crypt filters Table 89 – Additional Entries Specific to an Image Dictionary Table 95 – Additional Entries Specific to a Type 1 Form Dictionary Table 98 – Entries in an Optional Content Group Dictionary Table 101 – Entries in an Optional Content Configuration Dictionary Table 111 – Entries in a Type 1 font dictionary Table 112 – Entries in a Type 3 font dictionary Table 172 – Additional entries specific to a text annotation Table 181 – Additional entries specific to a rubber stamp annotation Table 184 – Additional entries specific to a file attachment annotation Table 185 – Additional entries specific to a sound annotation Table 250 – Entries in an FDF named page reference dictionary Table 252 – Entries in a signature dictionary Table 260 – Entries in a viewport dictionary
/Names Table 28 – Entries in the catalog dictionary Table 36 – Entries in a name tree node dictionary
/NeedAppearances Table 218 – Entries in the interactive form dictionary
/NeedsRendering Table 28 – Entries in the catalog dictionary
/NewWindow Table 200 – Additional entries specific to a remote go-to action Table 201 – Additional entries specific to an embedded go-to action Table 203 – Additional entries specific to a launch action
/Next Table 153 – Entries in an outline item dictionary Table 163 – Entries in a navigation node dictionary Table 193 – Entries common to all action dictionaries
/NonEmbeddedFonts Table 259 – Entries in a legal attestation dictionary
/NonFullScreenPageMode Table 150 – Entries in a viewer preferences dictionary
/NumCopies Table 150 – Entries in a viewer preferences dictionary
/Nums Table 37 – Entries in a number tree node dictionary
/O Table F.1 – Entries in the linearization parameter dictionary Table 21 – Additional encryption dictionary entries for the standard security handler Table 157 – Entries in a collection field dictionary Table 195 – Entries in a page object’s additional-actions dictionary Table 204 – Entries in a Windows launch parameter dictionary Table 262 – Additional entries in a rectilinear measure dictionary Table 263 – Entries in a number format dictionary Table 268 – Entries in a media criteria dictionary Table 283 – Entries in a media screen parameters MH/BE dictionary Table 284 – Entries in a floating window parameters dictionary Table 304 – Entries in a 3D view dictionary Table 307 – Entries in a render mode dictionary Table 311 – Entries in a 3D cross section dictionary Table 312 – Entries in a 3D node dictionary Table 327 – Entry common to all attribute object dictionaries Table 328 – Additional entries in an attribute object dictionary for user properties Table 352 – Entries common to all Web Capture content sets
/OB Table 305 – Entries in a projection dictionary
/OC Table 89 – Additional Entries Specific to an Image Dictionary Table 91 – Entries in an Alternate Image Dictionary Table 95 – Additional Entries Specific to a Type 1 Form Dictionary Table 164 – Entries common to all annotation dictionaries
/OCGs Table 99 – Entries in an Optional Content Membership Dictionary Table 100 – Entries in the Optional Content Properties Dictionary Table 103 – Entries in a Usage Application Dictionary
/OCProperties Table 28 – Entries in the catalog dictionary
/OFF Table 101 – Entries in an Optional Content Configuration Dictionary
/OID Table 235 – Entries in a certificate seed value dictionary
/ON Table 101 – Entries in an Optional Content Configuration Dictionary
/OP Table 58 – Entries in a Graphics State Parameter Dictionary Table 214 – Additional entries specific to a rendition action
/OPI Table 89 – Additional Entries Specific to an Image Dictionary Table 95 – Additional Entries Specific to a Type 1 Form Dictionary
/OPM Table 58 – Entries in a Graphics State Parameter Dictionary
/OS Table 292 – Entries in a software identifier dictionary Table 305 – Entries in a projection dictionary
/Obj Table 325 – Entries in an object reference dictionary
/OnInstantiate Table 300 – Entries in a 3D stream dictionary
/Open Table 172 – Additional entries specific to a text annotation Table 183 – Additional entries specific to a pop-up annotation
/OpenAction Table 28 – Entries in the catalog dictionary
/Operation Table 209 – Additional entries specific to a movie action
/Opt Table 227 – Additional entry specific to check box and radio button fields Table 231 – Additional entries specific to a choice field Table 246 – Entries in an FDF field dictionary
/OptionalContent Table 259 – Entries in a legal attestation dictionary
/Order Table 39 – Additional entries specific to a type 0 function dictionary Table 101 – Entries in an Optional Content Configuration Dictionary
/Ordering Table 116 – Entries in a CIDSystemInfo dictionary
/Outlines Table 28 – Entries in the catalog dictionary
/OutputCondition Table 365 – Entries in an output intent dictionary
/OutputConditionIdentifier Table 365 – Entries in an output intent dictionary
/OutputIntents Table 28 – Entries in the catalog dictionary
/OverlayText Table 192 – Additional entries specific to a redaction annotation
/P Table F.1 – Entries in the linearization parameter dictionary Table 21 – Additional encryption dictionary entries for the standard security handler Table 23 – Additional encryption dictionary entries for public-key security handlers Table 49 – Entries in a collection subitem dictionary Table 99 – Entries in an Optional Content Membership Dictionary Table 159 – Entries in a page label dictionary Table 161 – Entries in a bead dictionary Table 164 – Entries common to all annotation dictionaries Table 202 – Entries specific to a target dictionary Table 204 – Entries in a Windows launch parameter dictionary Table 254 – Entries in the DocMDP transform parameters dictionary Table 255 – Entries in the UR transform parameters dictionary Table 268 – Entries in a media criteria dictionary Table 271 – Additional entries in a media rendition dictionary Table 274 – Additional entries in a media clip data dictionary Table 284 – Entries in a floating window parameters dictionary Table 304 – Entries in a 3D view dictionary Table 323 – Entries in a structure element dictionary Table 328 – Additional entries in an attribute object dictionary for user properties Table 357 – Entries in a Web Capture command dictionary
/PA Table 163 – Entries in a navigation node dictionary Table 173 – Additional entries specific to a link annotation
/PC Table 194 – Entries in an annotation’s additional-actions dictionary Table 301 – Entries in an 3D animation style dictionary Table 311 – Entries in a 3D cross section dictionary
/PCM Table 367 – Additional entries specific to a trap network appearance stream
/PI Table 194 – Entries in an annotation’s additional-actions dictionary
/PID Table 291 – Entries in a media player info dictionary
/PL Table 274 – Additional entries in a media clip data dictionary Table 279 – Entries in a media play parameters dictionary
/PO Table 194 – Entries in an annotation’s additional-actions dictionary Table 311 – Entries in a 3D cross section dictionary
/PS Table 263 – Entries in a number format dictionary Table 305 – Entries in a projection dictionary
/PV Table 194 – Entries in an annotation’s additional-actions dictionary
/PZ Table 30 – Entries in a page object
/Padding Table 343 – Standard layout attributes common to all standard structure types
/Page Table 97 – Entries in a Reference Dictionary Table 251 – Additional entry for annotation dictionaries in an FDF file
/PageElement Table 102 – Entries in an Optional Content Usage Dictionary
/PageLabels Table 28 – Entries in the catalog dictionary
/PageLayout Table 28 – Entries in the catalog dictionary
/PageMode Table 28 – Entries in the catalog dictionary
/Pages Table 28 – Entries in the catalog dictionary Table 31 – Entries in the name dictionary Table 243 – Entries in the FDF dictionary Table 364 – Entries in a separation dictionary
/PaintType Table 75 – Additional Entries Specific to a Type 1 Pattern Dictionary
/Params Table 45 – Additional entries in an embedded file stream dictionary
/Parent Table 29 – Required entries in a page tree node Table 30 – Entries in a page object Table 153 – Entries in an outline item dictionary Table 183 – Additional entries specific to a pop-up annotation Table 188 – Additional entries specific to a widget annotation Table 220 – Entries common to all field dictionaries
/ParentTree Table 322 – Entries in the structure tree root
/ParentTreeNextKey Table 322 – Entries in the structure tree root
/Pattern Table 33 – Entries in a resource dictionary
/PatternType Table 75 – Additional Entries Specific to a Type 1 Pattern Dictionary Table 76 – Entries in a Type 2 Pattern Dictionary
/Perms Table 28 – Entries in the catalog dictionary
/Pg Table 323 – Entries in a structure element dictionary Table 324 – Entries in a marked-content reference dictionary Table 325 – Entries in an object reference dictionary
/PickTrayByPDFSize Table 150 – Entries in a viewer preferences dictionary
/PieceInfo Table 28 – Entries in the catalog dictionary Table 30 – Entries in a page object Table 95 – Additional Entries Specific to a Type 1 Form Dictionary
/Placement Table 343 – Standard layout attributes common to all standard structure types
/Popup Table 170 – Additional entries specific to markup annotations
/Poster Table 295 – Entries in a movie dictionary
/Predictor Table 8 – Optional parameters for LZWDecode and FlateDecode filters
/PresSteps Table 30 – Entries in a page object
/PreserveRB Table 213 – Additional entries specific to a set-OCG-state action
/Prev Table 15 – Entries in the file trailer dictionary Table 17 – Additional entries specific to a cross-reference stream dictionary Table 153 – Entries in an outline item dictionary Table 163 – Entries in a navigation node dictionary
/Print Table 102 – Entries in an Optional Content Usage Dictionary
/PrintArea Table 150 – Entries in a viewer preferences dictionary
/PrintClip Table 150 – Entries in a viewer preferences dictionary
/PrintPageRange Table 150 – Entries in a viewer preferences dictionary
/PrintScaling Table 150 – Entries in a viewer preferences dictionary
/PrintingOrder Table 73 – Entries in a DeviceN Mixing Hints Dictionary
/Private Table 319 – Entries in an data dictionary
/ProcSet Table 33 – Entries in a resource dictionary
/Process Table 71 – Entries in a DeviceN Colour Space Attributes Dictionary
/Producer Table 317 – Entries in the document information dictionary
/Prop_AuthTime Table 252 – Entries in a signature dictionary
/Prop_AuthType Table 252 – Entries in a signature dictionary
/Prop_Build Table 252 – Entries in a signature dictionary
/Properties Table 33 – Entries in a resource dictionary
/Q Table 174 – Additional entries specific to a free text annotation Table 192 – Additional entries specific to a redaction annotation Table 218 – Entries in the interactive form dictionary Table 222 – Additional entries common to all fields containing variable text
/QuadPoints Table 173 – Additional entries specific to a link annotation Table 179 – Additional entries specific to text markup annotations Table 192 – Additional entries specific to a redaction annotation
/R Table 21 – Additional encryption dictionary entries for the standard security handler Table 161 – Entries in a bead dictionary Table 168 – Entries in an appearance dictionary Table 189 – Entries in an appearance characteristics dictionary Table 202 – Entries specific to a target dictionary Table 214 – Additional entries specific to a rendition action Table 252 – Entries in a signature dictionary Table 262 – Additional entries in a rectilinear measure dictionary Table 268 – Entries in a media criteria dictionary Table 272 – Additional entries specific to a selector rendition dictionary Table 284 – Entries in a floating window parameters dictionary Table 294 – Additional entries specific to a sound object Table 323 – Entries in a structure element dictionary Table 354 – Additional entries specific to a Web Capture image set
/RBGroups Table 101 – Entries in an Optional Content Configuration Dictionary
/RC Table 170 – Additional entries specific to markup annotations Table 174 – Additional entries specific to a free text annotation Table 189 – Entries in an appearance characteristics dictionary Table 280 – Entries in a media play parameters MH/BE dictionary
/RD Table 174 – Additional entries specific to a free text annotation Table 177 – Additional entries specific to a square or circle annotation Table 180 – Additional entries specific to a caret annotation Table 263 – Entries in a number format dictionary
/RF Table 44 – Entries in a file specification dictionary
/RH Table 264 – Entries common to all requirement dictionaries
/RI Table 58 – Entries in a Graphics State Parameter Dictionary Table 189 – Entries in an appearance characteristics dictionary
/RM Table 304 – Entries in a 3D view dictionary
/RO Table 192 – Additional entries specific to a redaction annotation
/RT Table 170 – Additional entries specific to markup annotations Table 263 – Entries in a number format dictionary Table 284 – Entries in a floating window parameters dictionary
/RV Table 222 – Additional entries common to all fields containing variable text Table 246 – Entries in an FDF field dictionary
/Range Table 38 – Entries common to all function dictionaries Table 65 – Entries in a Lab Colour Space Dictionary Table 66 – Additional Entries Specific to an ICC Profile Stream Dictionary
/Rate Table 296 – Entries in a movie activation dictionary
/Reason Table 252 – Entries in a signature dictionary
/Reasons Table 234 – Entries in a signature field seed value dictionary
/Recipients Table 23 – Additional encryption dictionary entries for public-key security handlers Table 27 – Additional crypt filter dictionary entries for public-key security handlers
/Rect Table 164 – Entries common to all annotation dictionaries
/Ref Table 95 – Additional Entries Specific to a Type 1 Form Dictionary
/Reference Table 252 – Entries in a signature dictionary
/Registry Table 116 – Entries in a CIDSystemInfo dictionary
/RegistryName Table 365 – Entries in an output intent dictionary
/Rename Table 249 – Entries in an FDF template dictionary
/Renditions Table 31 – Entries in the name dictionary
/Repeat Table 192 – Additional entries specific to a redaction annotation Table 208 – Additional entries specific to a sound action
/Requirements Table 28 – Entries in the catalog dictionary
/ResFork Table 47 – Entries in a Mac OS file information dictionary
/Resources Table 30 – Entries in a page object Table 75 – Additional Entries Specific to a Type 1 Pattern Dictionary Table 95 – Additional Entries Specific to a Type 1 Form Dictionary Table 112 – Entries in a Type 3 font dictionary Table 297 – Entries in a slideshow dictionary Table 300 – Entries in a 3D stream dictionary
/Role Table 348 – PrintField attributes
/RoleMap Table 322 – Entries in the structure tree root
/Root Table 15 – Entries in the file trailer dictionary Table 241 – Entry in the FDF trailer dictionary
/Rotate Table 30 – Entries in a page object Table 295 – Entries in a movie dictionary
/RowSpan Table 349 – Standard table attributes
/Rows Table 11 – Optional parameters for the CCITTFaxDecode filter
/RubyAlign Table 345 – Standard layout attributes specific to inline-level structure elements
/RubyPosition Table 345 – Standard layout attributes specific to inline-level structure elements
/S Table 96 – Entries Common to all Group Attributes Dictionaries Table 144 – Entries in a soft-mask dictionary Table 147 – Additional entries specific to a transparency group attributes dictionary Table 158 – Entries in a collection sort dictionary Table 159 – Entries in a page label dictionary Table 162 – Entries in a transition dictionary Table 166 – Entries in a border style dictionary Table 167 – Entries in a border effect dictionary Table 193 – Entries common to all action dictionaries Table 199 – Additional entries specific to a go-to action Table 200 – Additional entries specific to a remote go-to action Table 201 – Additional entries specific to an embedded go-to action Table 203 – Additional entries specific to a launch action Table 205 – Additional entries specific to a thread action Table 206 – Additional entries specific to a URI action Table 208 – Additional entries specific to a sound action Table 209 – Additional entries specific to a movie action Table 210 – Additional entries specific to a hide action Table 212 – Additional entries specific to named actions Table 213 – Additional entries specific to a set-OCG-state action Table 214 – Additional entries specific to a rendition action Table 215 – Additional entries specific to a transition action Table 216 – Additional entries specific to a go-to-3D-view action Table 217 – Additional entries specific to a JavaScript action Table 236 – Additional entries specific to a submit-form action Table 238 – Additional entries specific to a reset-form action Table 240 – Additional entries specific to an import-data action Table 247 – Entries in an icon fit dictionary Table 262 – Additional entries in a rectilinear measure dictionary Table 264 – Entries common to all requirement dictionaries Table 265 – Entries in a requirement handler dictionary Table 266 – Entries common to all rendition dictionaries Table 268 – Entries in a media criteria dictionary Table 273 – Entries common to all media clip dictionaries Table 281 – Entries in a media duration dictionary Table 285 – Entries common to all media offset dictionaries Table 289 – Entries in a timespan dictionary Table 323 – Entries in a structure element dictionary Table 352 – Entries common to all Web Capture content sets Table 353 – Additional entries specific to a Web Capture page set Table 354 – Additional entries specific to a Web Capture image set Table 355 – Entries in a source information dictionary Table 357 – Entries in a Web Capture command dictionary Table 361 – Entries in a box style dictionary Table 365 – Entries in an output intent dictionary
/SA Table 58 – Entries in a Graphics State Parameter Dictionary Table 304 – Entries in a 3D view dictionary
/SE Table 153 – Entries in an outline item dictionary
/SI Table 352 – Entries common to all Web Capture content sets
/SM Table 58 – Entries in a Graphics State Parameter Dictionary
/SMask Table 58 – Entries in a Graphics State Parameter Dictionary Table 89 – Additional Entries Specific to an Image Dictionary
/SMaskInData Table 89 – Additional Entries Specific to an Image Dictionary
/SP Table 271 – Additional entries in a media rendition dictionary
/SS Table 162 – Entries in a transition dictionary Table 263 – Entries in a number format dictionary
/SV Table 232 – Additional entries specific to a signature field
/SW Table 247 – Entries in an icon fit dictionary
/Schema Table 155 – Entries in a collection dictionary
/Scope Table 349 – Standard table attributes
/Script Table 265 – Entries in a requirement handler dictionary
/SeparationColorNames Table 367 – Additional entries specific to a trap network appearance stream
/SeparationInfo Table 30 – Entries in a page object
/SetF Table 246 – Entries in an FDF field dictionary
/SetFf Table 246 – Entries in an FDF field dictionary
/Shading Table 33 – Entries in a resource dictionary Table 76 – Entries in a Type 2 Pattern Dictionary
/ShadingType Table 78 – Entries Common to All Shading Dictionaries
/ShowControls Table 296 – Entries in a movie activation dictionary
/SigFlags Table 218 – Entries in the interactive form dictionary
/Signature Table 255 – Entries in the UR transform parameters dictionary
/Size Table 15 – Entries in the file trailer dictionary Table 17 – Additional entries specific to a cross-reference stream dictionary Table 39 – Additional entries specific to a type 0 function dictionary Table 46 – Entries in an embedded file parameter dictionary
/Solidities Table 73 – Entries in a DeviceN Mixing Hints Dictionary
/Sort Table 155 – Entries in a collection dictionary
/Sound Table 185 – Additional entries specific to a sound annotation Table 208 – Additional entries specific to a sound action
/SoundActions Table 259 – Entries in a legal attestation dictionary
/SpaceAfter Table 344 – Additional standard layout attributes specific to block-level structure elements
/SpaceBefore Table 344 – Additional standard layout attributes specific to block-level structure elements
/SpiderInfo Table 28 – Entries in the catalog dictionary
/SpotFunction Table 130 – Entries in a type 1 halftone dictionary
/St Table 159 – Entries in a page label dictionary
/Start Table 296 – Entries in a movie activation dictionary
/StartIndent Table 344 – Additional standard layout attributes specific to block-level structure elements
/StartResource Table 297 – Entries in a slideshow dictionary
/State Table 172 – Additional entries specific to a text annotation Table 213 – Additional entries specific to a set-OCG-state action
/StateModel Table 172 – Additional entries specific to a text annotation
/Status Table 243 – Entries in the FDF dictionary
/StemH Table 122 – Entries common to all font descriptors
/StemV Table 122 – Entries common to all font descriptors
/Stm Table 324 – Entries in a marked-content reference dictionary
/StmF Table 20 – Entries common to all encryption dictionaries
/StmOwn Table 324 – Entries in a marked-content reference dictionary
/StrF Table 20 – Entries common to all encryption dictionaries
/StructParent Table 89 – Additional Entries Specific to an Image Dictionary Table 95 – Additional Entries Specific to a Type 1 Form Dictionary Table 164 – Entries common to all annotation dictionaries Table 326 – Additional dictionary entries for structure element access
/StructParents Table 30 – Entries in a page object Table 95 – Additional Entries Specific to a Type 1 Form Dictionary Table 326 – Additional dictionary entries for structure element access
/StructTreeRoot Table 28 – Entries in the catalog dictionary
/Style Table 124 – Additional font descriptor entries for CIDFonts
/SubFilter Table 20 – Entries common to all encryption dictionaries Table 234 – Entries in a signature field seed value dictionary Table 252 – Entries in a signature dictionary
/Subj Table 170 – Additional entries specific to markup annotations
/Subject Table 235 – Entries in a certificate seed value dictionary Table 317 – Entries in the document information dictionary
/SubjectDN Table 235 – Entries in a certificate seed value dictionary
/Subtype Table 45 – Additional entries in an embedded file stream dictionary Table 47 – Entries in a Mac OS file information dictionary Table 71 – Entries in a DeviceN Colour Space Attributes Dictionary Table 88 – Additional Entries Specific to a PostScript XObject Dictionary Table 89 – Additional Entries Specific to an Image Dictionary Table 95 – Additional Entries Specific to a Type 1 Form Dictionary Table 111 – Entries in a Type 1 font dictionary Table 112 – Entries in a Type 3 font dictionary Table 117 – Entries in a CIDFont dictionary Table 121 – Entries in a Type 0 font dictionary Table 127 – Additional entries in an embedded font stream dictionary Table 157 – Entries in a collection field dictionary Table 164 – Entries common to all annotation dictionaries Table 172 – Additional entries specific to a text annotation Table 173 – Additional entries specific to a link annotation Table 174 – Additional entries specific to a free text annotation Table 175 – Additional entries specific to a line annotation Table 177 – Additional entries specific to a square or circle annotation Table 178 – Additional entries specific to a polygon or polyline annotation Table 179 – Additional entries specific to text markup annotations Table 180 – Additional entries specific to a caret annotation Table 181 – Additional entries specific to a rubber stamp annotation Table 182 – Additional entries specific to an ink annotation Table 183 – Additional entries specific to a pop-up annotation Table 184 – Additional entries specific to a file attachment annotation Table 185 – Additional entries specific to a sound annotation Table 186 – Additional entries specific to a movie annotation Table 187 – Additional entries specific to a screen annotation Table 188 – Additional entries specific to a widget annotation Table 190 – Additional entries specific to a watermark annotation Table 192 – Additional entries specific to a redaction annotation Table 261 – Entries in a measure dictionary Table 297 – Entries in a slideshow dictionary Table 298 – Additional entries specific to a 3D annotation Table 300 – Entries in a 3D stream dictionary Table 301 – Entries in an 3D animation style dictionary Table 305 – Entries in a projection dictionary Table 306 – Entries in a 3D background dictionary Table 307 – Entries in a render mode dictionary Table 309 – Entries in a 3D lighting scheme dictionary Table 313 – Entries in an external data dictionary used to markup 3D annotations Table 315 – Additional entries in a metadata stream dictionary Table 330 – Property list entries for artifacts Table 362 – Additional entries specific to a printer’s mark annotation Table 366 – Additional entries specific to a trap network annotation
/Summary Table 349 – Standard table attributes
/Supplement Table 116 – Entries in a CIDSystemInfo dictionary
/Suspects Table 321 – Entries in the mark information dictionary
/Sy Table 180 – Additional entries specific to a caret annotation
/Synchronous Table 208 – Additional entries specific to a sound action Table 296 – Entries in a movie activation dictionary
/T Table F.1 – Entries in the linearization parameter dictionary Table 161 – Entries in a bead dictionary Table 170 – Additional entries specific to markup annotations Table 186 – Additional entries specific to a movie annotation Table 187 – Additional entries specific to a screen annotation Table 201 – Additional entries specific to an embedded go-to action Table 202 – Entries specific to a target dictionary Table 209 – Additional entries specific to a movie action Table 210 – Additional entries specific to a hide action Table 220 – Entries common to all field dictionaries Table 246 – Entries in an FDF field dictionary Table 262 – Additional entries in a rectilinear measure dictionary Table 281 – Entries in a media duration dictionary Table 284 – Entries in a floating window parameters dictionary Table 286 – Additional entries in a media offset time dictionary Table 323 – Entries in a structure element dictionary Table 353 – Additional entries specific to a Web Capture page set
/TA Table 216 – Additional entries specific to a go-to-3D-view action
/TB Table 299 – Entries in a 3D activation dictionary
/TBorderStyle Table 344 – Additional standard layout attributes specific to block-level structure elements
/TF Table 275 – Entries in a media permissions dictionary
/TI Table 231 – Additional entries specific to a choice field
/TID Table 353 – Additional entries specific to a Web Capture page set
/TK Table 58 – Entries in a Graphics State Parameter Dictionary
/TM Table 220 – Entries common to all field dictionaries Table 301 – Entries in an 3D animation style dictionary
/TP Table 189 – Entries in an appearance characteristics dictionary
/TPadding Table 344 – Additional standard layout attributes specific to block-level structure elements
/TR Table 58 – Entries in a Graphics State Parameter Dictionary Table 144 – Entries in a soft-mask dictionary
/TR2 Table 58 – Entries in a Graphics State Parameter Dictionary
/TRef Table 249 – Entries in an FDF template dictionary
/TS Table 352 – Entries common to all Web Capture content sets Table 355 – Entries in a source information dictionary
/TT Table 284 – Entries in a floating window parameters dictionary
/TU Table 220 – Entries common to all field dictionaries
/Tabs Table 30 – Entries in a page object
/Target Table 243 – Entries in the FDF dictionary
/TemplateInstantiated Table 30 – Entries in a page object
/Templates Table 31 – Entries in the name dictionary Table 248 – Entries in an FDF page dictionary
/TextAlign Table 344 – Additional standard layout attributes specific to block-level structure elements
/TextDecorationColor Table 345 – Standard layout attributes specific to inline-level structure elements
/TextDecorationThickness Table 345 – Standard layout attributes specific to inline-level structure elements
/TextDecorationType Table 345 – Standard layout attributes specific to inline-level structure elements
/TextIndent Table 344 – Additional standard layout attributes specific to block-level structure elements
/Threads Table 28 – Entries in the catalog dictionary
/Thumb Table 30 – Entries in a page object
/TilingType Table 75 – Additional Entries Specific to a Type 1 Pattern Dictionary
/TimeStamp Table 234 – Entries in a signature field seed value dictionary
/Title Table 153 – Entries in an outline item dictionary Table 317 – Entries in the document information dictionary
/ToUnicode Table 111 – Entries in a Type 1 font dictionary Table 112 – Entries in a Type 3 font dictionary Table 121 – Entries in a Type 0 font dictionary
/Trans Table 30 – Entries in a page object Table 215 – Additional entries specific to a transition action
/TransferFunction Table 130 – Entries in a type 1 halftone dictionary Table 131 – Additional entries specific to a type 6 halftone dictionary Table 132 – Additional entries specific to a type 10 halftone dictionary Table 133 – Additional entries specific to a type 16 halftone dictionary
/TransformMethod Table 253 – Entries in a signature reference dictionary
/TransformParams Table 253 – Entries in a signature reference dictionary
/TrapRegions Table 367 – Additional entries specific to a trap network appearance stream
/TrapStyles Table 367 – Additional entries specific to a trap network appearance stream
/Trapped Table 317 – Entries in the document information dictionary
/TrimBox Table 30 – Entries in a page object Table 360 – Entries in a box colour information dictionary
/TrueTypeFonts Table 259 – Entries in a legal attestation dictionary
/Type Table 14 – Optional parameters for Crypt filters Table 16 – Additional entries specific to an object stream dictionary Table 17 – Additional entries specific to a cross-reference stream dictionary Table 25 – Entries common to all crypt filter dictionaries Table 28 – Entries in the catalog dictionary Table 29 – Required entries in a page tree node Table 30 – Entries in a page object Table 44 – Entries in a file specification dictionary Table 45 – Additional entries in an embedded file stream dictionary Table 48 – Entries in a collection item dictionary Table 49 – Entries in a collection subitem dictionary Table 50 – Entries in a developer extensions dictionary Table 58 – Entries in a Graphics State Parameter Dictionary Table 75 – Additional Entries Specific to a Type 1 Pattern Dictionary Table 76 – Entries in a Type 2 Pattern Dictionary Table 88 – Additional Entries Specific to a PostScript XObject Dictionary Table 89 – Additional Entries Specific to an Image Dictionary Table 95 – Additional Entries Specific to a Type 1 Form Dictionary Table 96 – Entries Common to all Group Attributes Dictionaries Table 98 – Entries in an Optional Content Group Dictionary Table 99 – Entries in an Optional Content Membership Dictionary Table 111 – Entries in a Type 1 font dictionary Table 112 – Entries in a Type 3 font dictionary Table 114 – Entries in an encoding dictionary Table 117 – Entries in a CIDFont dictionary Table 120 – Additional entries in a CMap stream dictionary Table 121 – Entries in a Type 0 font dictionary Table 122 – Entries common to all font descriptors Table 130 – Entries in a type 1 halftone dictionary Table 131 – Additional entries specific to a type 6 halftone dictionary Table 132 – Additional entries specific to a type 10 halftone dictionary Table 133 – Additional entries specific to a type 16 halftone dictionary Table 134 – Entries in a type 5 halftone dictionary Table 144 – Entries in a soft-mask dictionary Table 152 – Entries in the outline dictionary Table 155 – Entries in a collection dictionary Table 156 – Entries in a collection schema dictionary Table 157 – Entries in a collection field dictionary Table 158 – Entries in a collection sort dictionary Table 159 – Entries in a page label dictionary Table 160 – Entries in a thread dictionary Table 161 – Entries in a bead dictionary Table 162 – Entries in a transition dictionary Table 163 – Entries in a navigation node dictionary Table 164 – Entries common to all annotation dictionaries Table 166 – Entries in a border style dictionary Table 191 – Entries in a fixed print dictionary Table 193 – Entries common to all action dictionaries Table 233 – Entries in a signature field lock dictionary Table 234 – Entries in a signature field seed value dictionary Table 235 – Entries in a certificate seed value dictionary Table 252 – Entries in a signature dictionary Table 253 – Entries in a signature reference dictionary Table 254 – Entries in the DocMDP transform parameters dictionary Table 255 – Entries in the UR transform parameters dictionary Table 256 – Entries in the FieldMDP transform parameters dictionary Table 260 – Entries in a viewport dictionary Table 261 – Entries in a measure dictionary Table 263 – Entries in a number format dictionary Table 264 – Entries common to all requirement dictionaries Table 265 – Entries in a requirement handler dictionary Table 266 – Entries common to all rendition dictionaries Table 268 – Entries in a media criteria dictionary Table 269 – Entries in a minimum bit depth dictionary Table 270 – Entries in a minimum screen size dictionary Table 273 – Entries common to all media clip dictionaries Table 275 – Entries in a media permissions dictionary Table 279 – Entries in a media play parameters dictionary Table 281 – Entries in a media duration dictionary Table 282 – Entries in a media screen parameters dictionary Table 284 – Entries in a floating window parameters dictionary Table 285 – Entries common to all media offset dictionaries Table 289 – Entries in a timespan dictionary Table 290 – Entries in a media players dictionary Table 291 – Entries in a media player info dictionary Table 292 – Entries in a software identifier dictionary Table 294 – Additional entries specific to a sound object Table 297 – Entries in a slideshow dictionary Table 300 – Entries in a 3D stream dictionary Table 301 – Entries in an 3D animation style dictionary Table 303 – Entries in a 3D reference dictionary Table 304 – Entries in a 3D view dictionary Table 306 – Entries in a 3D background dictionary Table 307 – Entries in a render mode dictionary Table 309 – Entries in a 3D lighting scheme dictionary Table 311 – Entries in a 3D cross section dictionary Table 312 – Entries in a 3D node dictionary Table 313 – Entries in an external data dictionary used to markup 3D annotations Table 315 – Additional entries in a metadata stream dictionary Table 322 – Entries in the structure tree root Table 323 – Entries in a structure element dictionary Table 324 – Entries in a marked-content reference dictionary Table 325 – Entries in an object reference dictionary Table 330 – Property list entries for artifacts Table 352 – Entries common to all Web Capture content sets Table 365 – Entries in an output intent dictionary
/U Table 21 – Additional encryption dictionary entries for the standard security handler Table 194 – Entries in an annotation’s additional-actions dictionary Table 263 – Entries in a number format dictionary Table 292 – Entries in a software identifier dictionary Table 356 – Entries in a URL alias dictionary
/U3DPath Table 304 – Entries in a 3D view dictionary
/UC Table 284 – Entries in a floating window parameters dictionary
/UCR Table 58 – Entries in a Graphics State Parameter Dictionary
/UCR2 Table 58 – Entries in a Graphics State Parameter Dictionary
/UF Table 44 – Entries in a file specification dictionary
/UR3 Table 258 – Entries in a permissions dictionary
/URI Table 28 – Entries in the catalog dictionary Table 206 – Additional entries specific to a URI action
/URIActions Table 259 – Entries in a legal attestation dictionary
/URL Table 235 – Entries in a certificate seed value dictionary Table 357 – Entries in a Web Capture command dictionary
/URLS Table 31 – Entries in the name dictionary
/URLType Table 235 – Entries in a certificate seed value dictionary
/Unix Table 44 – Entries in a file specification dictionary Table 203 – Additional entries specific to a launch action
/Usage Table 98 – Entries in an Optional Content Group Dictionary
/UseCMap Table 120 – Additional entries in a CMap stream dictionary
/User Table 102 – Entries in an Optional Content Usage Dictionary
/UserProperties Table 321 – Entries in the mark information dictionary
/UserUnit Table 30 – Entries in a page object
/V Table 20 – Entries common to all encryption dictionaries Table 44 – Entries in a file specification dictionary Table 157 – Entries in a collection field dictionary Table 161 – Entries in a bead dictionary Table 191 – Entries in a fixed print dictionary Table 196 – Entries in a form field’s additional-actions dictionary Table 216 – Additional entries specific to a go-to-3D-view action Table 220 – Entries common to all field dictionaries Table 234 – Entries in a signature field seed value dictionary Table 246 – Entries in an FDF field dictionary Table 252 – Entries in a signature dictionary Table 254 – Entries in the DocMDP transform parameters dictionary Table 255 – Entries in the UR transform parameters dictionary Table 256 – Entries in the FieldMDP transform parameters dictionary Table 268 – Entries in a media criteria dictionary Table 269 – Entries in a minimum bit depth dictionary Table 270 – Entries in a minimum screen size dictionary Table 280 – Entries in a media play parameters MH/BE dictionary Table 289 – Entries in a timespan dictionary Table 312 – Entries in a 3D node dictionary Table 329 – Entries in a user property dictionary Table 350 – Entries in the Web Capture information dictionary
/VA Table 300 – Entries in a 3D stream dictionary
/VE Table 99 – Entries in an Optional Content Membership Dictionary
/VP Table 30 – Entries in a page object
/Version Table 28 – Entries in the catalog dictionary Table 242 – Entries in the FDF catalog dictionary Table 366 – Additional entries specific to a trap network annotation
/Vertices Table 178 – Additional entries specific to a polygon or polyline annotation
/VerticesPerRow Table 83 – Additional Entries Specific to a Type 5 Shading Dictionary
/View Table 102 – Entries in an Optional Content Usage Dictionary Table 155 – Entries in a collection dictionary
/ViewArea Table 150 – Entries in a viewer preferences dictionary
/ViewClip Table 150 – Entries in a viewer preferences dictionary
/ViewerPreferences Table 28 – Entries in the catalog dictionary
/Volume Table 208 – Additional entries specific to a sound action Table 296 – Entries in a movie activation dictionary
/W Table 17 – Additional entries specific to a cross-reference stream dictionary Table 117 – Entries in a CIDFont dictionary Table 166 – Entries in a border style dictionary Table 283 – Entries in a media screen parameters MH/BE dictionary Table 361 – Entries in a box style dictionary
/W2 Table 117 – Entries in a CIDFont dictionary
/WC Table 197 – Entries in the document catalog’s additional-actions dictionary
/WMode Table 120 – Additional entries in a CMap stream dictionary
/WP Table 197 – Entries in the document catalog’s additional-actions dictionary
/WS Table 197 – Entries in the document catalog’s additional-actions dictionary
/WhitePoint Table 63 – Entries in a CalGray Colour Space Dictionary Table 64 – Entries in a CalRGB Colour Space Dictionary Table 65 – Entries in a Lab Colour Space Dictionary
/Width Table 89 – Additional Entries Specific to an Image Dictionary Table 131 – Additional entries specific to a type 6 halftone dictionary Table 133 – Additional entries specific to a type 16 halftone dictionary Table 344 – Additional standard layout attributes specific to block-level structure elements
/Width2 Table 133 – Additional entries specific to a type 16 halftone dictionary
/Widths Table 111 – Entries in a Type 1 font dictionary Table 112 – Entries in a Type 3 font dictionary
/Win Table 203 – Additional entries specific to a launch action
/WritingMode Table 343 – Standard layout attributes common to all standard structure types
/X Table 194 – Entries in an annotation’s additional-actions dictionary Table 262 – Additional entries in a rectilinear measure dictionary
/XFA Table 218 – Entries in the interactive form dictionary
/XHeight Table 122 – Entries common to all font descriptors
/XN Table 304 – Entries in a 3D view dictionary
/XObject Table 33 – Entries in a resource dictionary
/XRefStm Table 19 – Additional entries in a hybrid-reference file’s trailer dictionary
/XStep Table 75 – Additional Entries Specific to a Type 1 Pattern Dictionary
/Xsquare Table 132 – Additional entries specific to a type 10 halftone dictionary
/Y Table 262 – Additional entries in a rectilinear measure dictionary
/YStep Table 75 – Additional Entries Specific to a Type 1 Pattern Dictionary
/Ysquare Table 132 – Additional entries specific to a type 10 halftone dictionary
/Z Table 268 – Entries in a media criteria dictionary
/Zoom Table 102 – Entries in an Optional Content Usage Dictionary
/alphaConstant Table 52 – Device-Independent Graphics State Parameters
/alphaSource Table 52 – Device-Independent Graphics State Parameters
/blackGeneration Table 53 – Device-Dependent Graphics State Parameters
/blendMode Table 52 – Device-Independent Graphics State Parameters
/ca Table 58 – Entries in a Graphics State Parameter Dictionary
/checked Table 348 – PrintField attributes
/clippingPath Table 52 – Device-Independent Graphics State Parameters
/color Table 52 – Device-Independent Graphics State Parameters
/colorSpace Table 52 – Device-Independent Graphics State Parameters
/dashPattern Table 52 – Device-Independent Graphics State Parameters
/flatness Table 53 – Device-Dependent Graphics State Parameters
/halftone Table 53 – Device-Dependent Graphics State Parameters
/lineCap Table 52 – Device-Independent Graphics State Parameters
/lineJoin Table 52 – Device-Independent Graphics State Parameters
/lineWidth Table 52 – Device-Independent Graphics State Parameters
/miterLimit Table 52 – Device-Independent Graphics State Parameters
/op Table 58 – Entries in a Graphics State Parameter Dictionary
/overprint Table 53 – Device-Dependent Graphics State Parameters
/overprintMode Table 53 – Device-Dependent Graphics State Parameters
/renderingIntent Table 52 – Device-Independent Graphics State Parameters
/smoothness Table 53 – Device-Dependent Graphics State Parameters
/softMask Table 52 – Device-Independent Graphics State Parameters
/strokeAdjustment Table 52 – Device-Independent Graphics State Parameters
/textState Table 52 – Device-Independent Graphics State Parameters
/transfer Table 53 – Device-Dependent Graphics State Parameters
/undercolorRemoval Table 53 – Device-Dependent Graphics State Parameters
/versionNumber Table 368 – Entry in an OPI version dictionary