Hi there!
I want my PDF to have internal links to the references at the end of the file.
For example, my XML is:
At the end of my PDF I have the info about each author, tagged as this:
And my CSS:
This does not seem to create the proper links. Any ideas how to do this?
Thanks in advance!
I want my PDF to have internal links to the references at the end of the file.
For example, my XML is:
<xref ref-type="bibr" rid="ref1name">Author name </xref>
At the end of my PDF I have the info about each author, tagged as this:
<ref id="ref1name"> info about the author </ref>
And my CSS:
xref[ref-type="bibr"] {
content:target-content(rid);
}
This does not seem to create the proper links. Any ideas how to do this?
Thanks in advance!