You can export documents to a PDF file for sharing and printing. Optionally, you can add a digital signature to the exported PDF file.
Note: PDF export is not available in the WebApp. Please use the native application for Windows, Linux or Mac to use this feature.
To export a PDF file, click File, mouseover Export and click PDF File. In the Export PDF dialog, choose exported documents and other options. After confirmation of the dialog, select a destination for storing the exported PDF file.
Documents:
Layout:
Options:
exportParam
helper (for Custom layout)Page Settings:
Note: Page settings must be set in the template for Custom layout, see PDF Template.
Note: Navigation between exported PDF files using links is not supported due to limitations of Adobe Acrobat.
Example: Export a Software Requirements Specification (SRS) into a PDF file using the default title page, table of contents, headers, footers and paragraph styles:
You can export ReqView documents to PDF files using reqview export pdf
command, see Command Line > Export Documents.
You can customize the title page, document order, header and footer, table of contents, or paragraph styles using HTML export templates, see Custom Export Using Templates. To specify page layout, use paged media CSS properties in <style>
tag of HTML templates. ReqView exports PDF files using Paged.js library, for more information about styling see Paged.js Documentation.
Example: Set page size to A4, page orientation to portrait, a custom margin and output page counters in the page footer.
@media print { @page { size: A4 portrait; margin: 25mm; @bottom-right { content: counter(page); } }}
You can download sample PDF templates from the Export Using Custom Templates > Download Export Templates.
Example: Download and customize PDFBookTemplate.html to generate PDF files with a book layout.
Note: Remove the page break below the table of contents if you you wish to place a page break before each <h1>
heading. For instance, delete #toc { page: toc; }
from the <style>
element of the example template above.
You can digitally sign exported PDF files using a PKCS#12 certificate file stored at your local file system:
To add a digital signature, check Add digital signature option in the Export Options dialog, then browse for a certificate file (with .pfx or .p12 extension), and finally type in your password for the certificate.
You can buy a digital certificate from a publicly trusted certification authority (CA), generate it by your company’s CA or generate a self-signed certificate. See Adobe Digital ID guide or OpenSSL Essentials for more information about working with certificates.
Notes:
adbe.pkcs7.detached
signature format. While European Union PAdES (eIDAS) standard requires ETSI.CAdES.detached
signature format.