hi,
New to Prince,
I would to format my xrefs so that depending on the outputclass the links are styled differently.
Couple of issues:
How do you style the css to only show the figure or table number of the link?
How to do prevent a chapter number being included even though the h1 style does not include numbering?
I can get styles for links working for different outputclasses, for example:
Result:
a link with outputclass "paratext_short"
My Topic Title (Page 34)
a link with outputclass "paratext_long"
My Topic Title on page 34
But some of the paratext_long are coming out with "Chapter 4: My Topic Title on page 34"
I also need paranum_fig and paranum_tab for
Figure 34 shows this....
Table 34 list that....
New to Prince,
I would to format my xrefs so that depending on the outputclass the links are styled differently.
Couple of issues:
How do you style the css to only show the figure or table number of the link?
How to do prevent a chapter number being included even though the h1 style does not include numbering?
I can get styles for links working for different outputclasses, for example:
a {text-decoration: none;}
a.paratext_short::after {
content: " (Page " target-counter(attr(href), page) ")";
}
a.paratext_long::after {
content: " on page " target-counter(attr(href), page) ;
}
Result:
a link with outputclass "paratext_short"
My Topic Title (Page 34)
a link with outputclass "paratext_long"
My Topic Title on page 34
But some of the paratext_long are coming out with "Chapter 4: My Topic Title on page 34"
I also need paranum_fig and paranum_tab for
Figure 34 shows this....
Table 34 list that....