Expand my Community achievements bar.

SOLVED

footnote cross reference

Avatar

Level 2

Hi,

How to refer the same footnote multiple times in topics and need to display footnote-marker once at the bottom.

Want to achieve like below screenshot.

Kiruthika_r_0-1707326293025.png

 

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Employee

Hi @Kiruthika_r @sschnelbach 

This feature is available in the latest version (On-prem release 4.4 and cloud release 2310) of AEM Guides. In order to use this feature, follow the steps given below -

  1. Add a footnote
  2. Generate an ID for it (Right Click -> Generate IDs)
  3. Insert an conref to the above footnote where you want to refer to it
  4. Add type attribute to the above conref and set it's value to "fn"
  5. Generate the PDF output

Generated PDF should have the same footnote number for all the footnotes which are referring to same footnote.

 

Additional step for NativePDF: If you want to hide the original footnote (one with ID) then you can add the CSS style given below in the content.css file of your PDF template

 

 

 

.fn[id]::footnote-call {
  display: none;
}

 

 

 

Please have a look at documentation for more details here.

View solution in original post

3 Replies

Avatar

Level 5

I have also filed this request. According to Adobe's tech team, the use-by-reference footnote doesn't work yet in AEM Guides. They are supposed to be working on it.

Avatar

Correct answer by
Employee

Hi @Kiruthika_r @sschnelbach 

This feature is available in the latest version (On-prem release 4.4 and cloud release 2310) of AEM Guides. In order to use this feature, follow the steps given below -

  1. Add a footnote
  2. Generate an ID for it (Right Click -> Generate IDs)
  3. Insert an conref to the above footnote where you want to refer to it
  4. Add type attribute to the above conref and set it's value to "fn"
  5. Generate the PDF output

Generated PDF should have the same footnote number for all the footnotes which are referring to same footnote.

 

Additional step for NativePDF: If you want to hide the original footnote (one with ID) then you can add the CSS style given below in the content.css file of your PDF template

 

 

 

.fn[id]::footnote-call {
  display: none;
}

 

 

 

Please have a look at documentation for more details here.