I am trying to get cross-references working for images linked via xlink. The ":after" attribute is working, because I've been able to make it insert static text, but I can't get it to insert the referenced page number.
Here's the relevant code:
XML
========================================
<abstractText>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
<pictureLink xlink:type="simple" xlink:href="#apple" xlink:show="new">This is an apple</pictureLink>
</abstractText>
<picture id="apple" link="apple.jpg" />
=========================================
CSS
=========================================
picture {content: attr("link", url);}
pictureLink { display: inline; margin-top: 0px; margin-bottom: 0px; text-decoration: underline; color: blue;
margin-right: 2pt;}
pictureLink:after {
content: target-counter(attr(href), page);
}
=========================================
I've also tried, to no avail:
pictureLink:after {
content: target-counter(attr(xlink:href), page);
Any ideas?
Just to make sure my goal is understood: I am trying to get a reference such as (See page 5) to show up after a link that points to a <picture> on page 5.
Here's the relevant code:
XML
========================================
<abstractText>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
<pictureLink xlink:type="simple" xlink:href="#apple" xlink:show="new">This is an apple</pictureLink>
</abstractText>
<picture id="apple" link="apple.jpg" />
=========================================
CSS
=========================================
picture {content: attr("link", url);}
pictureLink { display: inline; margin-top: 0px; margin-bottom: 0px; text-decoration: underline; color: blue;
margin-right: 2pt;}
pictureLink:after {
content: target-counter(attr(href), page);
}
=========================================
I've also tried, to no avail:
pictureLink:after {
content: target-counter(attr(xlink:href), page);
Any ideas?
Just to make sure my goal is understood: I am trying to get a reference such as (See page 5) to show up after a link that points to a <picture> on page 5.