You can export documents with all your image attachments and clickable links within same document to a PDF file for sharing and printing. Optionally, you can add a digital signature to the exported PDF file.
Summary of PDF features:
Note: Export HTML files if you need to browse links between documents or open file attachments by clicking.
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:
Select exported documents:
Table View:
Select a table view defining which attributes or template columns will be exported:
For more information see Table Views.
Layout:
Select layout and styling of exported data:
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 documents to PDF files easily using a shared export configuration storing all export options, see Export Configurations.
You can export 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 Export Using Custom 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.
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.
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); } }}
Note: Templates provided by ReqView scale down large images using their width. Without additional CSS rules, tall images that don’t fit in the page vertically even after the width scaling will be cropped. To ensure that all images fit the page, a fixed max-height
and width: auto
must be added to export template styles. You can also scale images individually using imageSize export helper.
Example: Assuming that PDF page has A3 size and landscape orientation. Set max-height
CSS style for attachments to page height with some space left for margins to prevent overflow.
img.attachment { max-width: 90%; max-height: 25cm; height: auto; width: auto; display: block;}
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.