Make author attributions show up in italics at the front of each
chapter/section to match our old way of doing things. Each <author> in an <authorgroup> will be attributed with : "<contrib> by <author>. "
This commit is contained in:
parent
1121738517
commit
0128e1ed79
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=10260
1 changed files with 13 additions and 7 deletions
|
@ -1,4 +1,4 @@
|
|||
<!-- $FreeBSD: doc/share/sgml/freebsd.dsl,v 1.44 2001/08/02 03:24:04 murray Exp $ -->
|
||||
<!-- $FreeBSD: doc/share/sgml/freebsd.dsl,v 1.45 2001/08/09 00:14:42 chern Exp $ -->
|
||||
|
||||
<!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [
|
||||
<!ENTITY % output.html "IGNORE">
|
||||
|
@ -404,23 +404,29 @@
|
|||
(make sequence
|
||||
(process-node-list (select-elements (descendants (current-node))
|
||||
(normalize "contrib")))
|
||||
(literal (author-list-string))))
|
||||
(literal (author-string))
|
||||
(literal ". ")))
|
||||
(element (sect1info authorgroup author)
|
||||
(make sequence
|
||||
(process-node-list (select-elements (descendants (current-node))
|
||||
(normalize "contrib")))
|
||||
(literal (author-list-string))))
|
||||
(literal (author-string))
|
||||
(literal ". ")))
|
||||
(element (sect2info authorgroup author)
|
||||
(make sequence
|
||||
(process-node-list (select-elements (descendants (current-node))
|
||||
(normalize "contrib")))
|
||||
(literal (author-list-string))))
|
||||
(literal (author-string))
|
||||
(literal ". ")))
|
||||
(element (chapterinfo authorgroup)
|
||||
(process-children))
|
||||
($italic-seq$
|
||||
(process-children)))
|
||||
(element (sect1info authorgroup)
|
||||
(process-children))
|
||||
($italic-seq$
|
||||
(process-children)))
|
||||
(element (sect2info authorgroup)
|
||||
(process-children))
|
||||
($italic-seq$
|
||||
(process-children)))
|
||||
|
||||
(element (author contrib)
|
||||
(make sequence
|
||||
|
|
Loading…
Reference in a new issue