내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards.
해결됨

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

 

주제

토픽은 커뮤니티 콘텐츠를 분류하여 관련성 있는 콘텐츠를 찾는 데 도움이 됩니다.

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
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.

원본 게시물의 솔루션 보기

3 답변 개

Avatar

Level 6

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

Level 2

Hi @sschnelbach Thanks for the update.

Avatar

정확한 답변 작성자:
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.