Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X
Hello,
Using the link mechanisms (internal PDF link), I create a reference to a tag and display the text of the target tag. I would like to display this text without the link (non-clickable text). Is it possible ?
Kind regards
David
Solved! Go to Solution.
Hope this helps!
Suzanne
Would you please provide the existing code?
Thanks!
Suzanne
Hello Suzanne,
Thanks for your help.
The code:
<!-- SGML DTD fragment -->
<!ELEMENT refint - - (#PCDATA) >
<!ATTLIST refint
reftype CDATA #REQUIRED
refid IDREF #REQUIRED >
<!-- DCF fragment -->
<Specials>
<Link element="refint" idref="refid"/>
...
</Specials>
<!-- SGML fragment -->
<para><refint reftype="pgblk" refid="pgblk-44-10-01-1001-1"></refint>...</para>
...
<pgblk chapnbr="44" sectnbr="10" subjnbr="01" pgblknbr="1001" chg="n" key="pgblk-44-10-01-1001-1" >
<title>TESTING AND FAULT ISOLATION</title>
...
</pgblk>
<!-- FOSI fragment -->
<e-i-c gi="title" context="pgblk">
<charlist>
...
</charlist>
<att>
<fillval attname="key" attloc="pgblk" fillcat="savetext" fillchar="textid">
<charsubset>
<savetext textid="pgblk-title.txt" conrule="#CONTENT">
</charsubset>
</att>
...
</e-i-c>
<e-i-c gi="refint" context="* pgblk">
<charlist>
...
</charlist>
<!--ref to pgblk-->
<att>
<specval attname="reftype" attval="pgblk">
<charsubset>
<usetext source="\Refer to \" placemnt="before">
<subchars charsubsetref="inline">
<highlt inherit="0" scoring="1" fontclr="blue" scorespc="1">
</subchars>
</usetext>
</charsubset>
</att>
...
</e-i-c>
<!-- Print view -->
Refer to TESTING AND FAULT ISOLATION
<!-- The text id generated by the link but I would like only display the text without the clickable area -->
Delete <Link element="refint" idref="refid"/> in the DCF.
Suzanne
Hello Suzanne,
Thanks for your response.
But I would like delete the clickable area in some contexts not in all cases where I use the <refint> tag.
David
I assume the key attribute on pgblk is an ID?
Hello Suzanne,
Yes, the key attribute on pgblk is an ID.
David
Hope this helps!
Suzanne
Hello Suzanne,
Thank for your help.
David