How to include PDF input source files
Directory Based EHB-CB
In the Directory Based EHB-CB approach, all PDF files need to be added in a directory. During EHANDBOOK Container-Build, the PDF files with the extension *.pdf are picked up.
Tqs (1)
|_ Tqs.adoc (2)
|_ Tqs.slx (3)
|_ Tqs.xslx (4)
|_ Tqs_Calibration_Guide.pdf (5)| 1 | Directory for documentation unit Tqs | 
| 2 | Textual documentation in AsciiDoc format | 
| 3 | Simulink model (source for interactive model) | 
| 4 | Excel file with function interface and label description | 
| 5 | Textual documentation in PDF format | 
ASAM Based EHB-CB
In the ASAM-based EHB-CB approach, an <ABLOCK> with category TOC has to be created.
The 'ABLOCK' then has to reference each PDF file required for the documentation.
<ABLOCK> (1)
    ...
    <AREFS>
        <AREF ID-REF="ID_Tqs" /> (2)
    </AREFS>
    ...
</ABLOCK>
<ABLOCK ID="ID_Tqs"> (3)
    <SHORT-NAME>Tqs</SHORT-NAME>
    <CATEGORY>TDOC</CATEGORY>
    <FILES>
        <FILE TYPE="PDF">Tqs_Calibration_Guide.pdf</FILE> (4)
    </FILES>
</ABLOCK>| 1 | ABLOCK of the documentation unit to which PDF shall be associated | 
| 2 | Reference to the ABLOCK specifying the PDF | 
| 3 | ABLOCK with category TDOC | 
| 4 | PDF file as documentation input |