DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

HeadlineViewHelperΒΆ

Rendering text using the settings for headlines. It is possible to easily define different default styles and apply them using the type attribute, see chapter Text Types. Text rendered with a HeadlineViewHelper can be added to the table of content automatically by setting plugin.tx_pdfviewhelpers.settings.headline.addToTableOfContent = 1.

Basic Usage

<pdf:headline>Title</pdf:headline>
<pdf:headline text="Alternative syntax"/>

Advanced Usage

<pdf:headline
        trim="0"
        removeDoubleWhitespace="1"
        color="#333"
        fontFamily="arial"
        fontSize="22"
        fontStyle="bold"
        lineHeight="1.5"
        characterSpacing="0.2"
        alignment="right"
        paragraphSpacing="0"
        paragraphLineFeed="1"
        autoHyphenation="1"
        padding="{top: 1, right: 0, bottom: 0, left: 0}"
        width="100"
        addToTableOfContent="0"
        tableOfContentLevel="1"
        >Title</pdf:headline>