TEI template: improve publicationStmt.
Add support for publisher, address, pubPlace, and date variables.
This commit is contained in:
parent
0910e92187
commit
2bc352f305
2 changed files with 17 additions and 3 deletions
|
@ -9,9 +9,23 @@ $for(author)$
|
||||||
$endfor$
|
$endfor$
|
||||||
</titleStmt>
|
</titleStmt>
|
||||||
<publicationStmt>
|
<publicationStmt>
|
||||||
|
$if(publicationStmt)$
|
||||||
<p>$if(publicationStmt)$$publicationStmt$$endif$</p>
|
<p>$if(publicationStmt)$$publicationStmt$$endif$</p>
|
||||||
$if(license)$
|
$endif$
|
||||||
|
$if(license)$
|
||||||
<availability><licence>$license$</licence></availability>
|
<availability><licence>$license$</licence></availability>
|
||||||
|
$endif$
|
||||||
|
$if(publisher)$
|
||||||
|
<publisher>$publisher$</publisher>
|
||||||
|
$endif$
|
||||||
|
$if(pubPlace)$
|
||||||
|
<pubPlace>$pubPlace$</pubPlace>
|
||||||
|
$endif$
|
||||||
|
$if(address)$
|
||||||
|
<address>$address$</address>
|
||||||
|
$endif$
|
||||||
|
$if(date)$
|
||||||
|
<date>$date$</date>
|
||||||
$endif$
|
$endif$
|
||||||
</publicationStmt>
|
</publicationStmt>
|
||||||
<sourceDesc>
|
<sourceDesc>
|
||||||
|
|
|
@ -8,8 +8,8 @@
|
||||||
<author>Anonymous</author>
|
<author>Anonymous</author>
|
||||||
</titleStmt>
|
</titleStmt>
|
||||||
<publicationStmt>
|
<publicationStmt>
|
||||||
<p></p>
|
<date>July 17, 2006</date>
|
||||||
</publicationStmt>
|
</publicationStmt>
|
||||||
<sourceDesc>
|
<sourceDesc>
|
||||||
<p>Produced by pandoc.</p>
|
<p>Produced by pandoc.</p>
|
||||||
</sourceDesc>
|
</sourceDesc>
|
||||||
|
|
Loading…
Add table
Reference in a new issue