On 17 June 2016 at 19:39, Sabrina Wild
<[email protected]> wrote:
> Hi,
>
> I`m trying to generate a asciidoc book PDF-Document. It works fine except
> one thing won't work:
>
> The document header only accept one line and no mail address.
>
> For Example:
>
> Main Header
> ==========
> Author Name <[email protected]>
> 2016-06-17
>
> My output looks like this:
>
> Main Header
>
> Author Name
>
> How I generate my PDF:
> a2x  - v -a lang=de --doctype=book --format=pdf --fop
> --xsl-file=Template/template.xsl --icons book.adoc

run with -k to keep the docbook xml file and see what is generated, it
should look something like

<bookinfo>
    <title>Main Header</title>
    <date>2016-06-17</date>
    <author>
        <firstname>Author</firstname>
        <surname>Name</surname>
        <email>[email protected]</email>
    </author>
    <authorinitials>AN</authorinitials>
<revhistory><revision><date>2016-06-17</date><authorinitials>AN</authorinitials></revision></revhistory>
</bookinfo>

 (except this is lang=en)

>
> Has anybody an idea where's the mistake?
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "asciidoc" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> Visit this group at https://groups.google.com/group/asciidoc.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"asciidoc" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/asciidoc.
For more options, visit https://groups.google.com/d/optout.

Reply via email to