| Type: | Document Structure |
|---|---|
| Attributes: | |
| See: | body bookmarklist link macrolist meta pdf style |
The head tag defines a pdf document header. The header contains information about the document rather than information to be displayed in the document.
You should put all header information between the <head> and </head> tags, which should precede the body tag, just as in HTML.
The head tag can contain meta, link, style, bookmarklist and macrolist tags.
This simple example shows a complete document with information in the HEAD and BODY
<pdf>
<head>
<meta name="author" value="Joe Bloggs"/>
</head>
<body>
Document body here
</body>
</pdf>