Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

If the two text boxes are connected, how does the footnote restart from ①

Guide ,
Aug 08, 2024 Aug 08, 2024

I have a book that needs to be typeset that is single-column and contains footnotes, but the footnotes start at ① for each article.

I don't want to go through and break up each article. I'd like to typeset it in just one text box, but it seems like the footnotes can only be connected.

Is there any solution to this?

669.jpg

TOPICS
Bug , How to , Performance
424
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Aug 09, 2024 Aug 09, 2024

Here's a script I use to break a story on instances of a paragraph style. It assumes that the paragraph is set to start on the next page or frame.

 

To use it, place the cursor in the paragraph style (the one applied to 'New Articles' in your sample) and run the script. As always, keep a copy of the document in a safe place.

 

//DESCRIPTION: Split a story on the selected paragraph style

(function () {

  var styleName = app.selection[0].appliedParagraphStyle.name;
  var story = app.selection[0]
...
Translate
Community Expert ,
Aug 09, 2024 Aug 09, 2024

If you want the footnotes to restart at each chapter you'll have to break the story up so that each chapter is in a different story. To keep everything in one story you need a very messy script.

 

Join the crowds on https://indesign.uservoice.com who've requested more flexibility in InDesign's footnote numbering.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guide ,
Aug 09, 2024 Aug 09, 2024

It would be nice if it could be split by "page breaks(~P)" or "frame breaks(~R)" or "column breaks(~M)".

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 09, 2024 Aug 09, 2024

Yes, it would, wouldn't it?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 09, 2024 Aug 09, 2024

Here's a script I use to break a story on instances of a paragraph style. It assumes that the paragraph is set to start on the next page or frame.

 

To use it, place the cursor in the paragraph style (the one applied to 'New Articles' in your sample) and run the script. As always, keep a copy of the document in a safe place.

 

//DESCRIPTION: Split a story on the selected paragraph style

(function () {

  var styleName = app.selection[0].appliedParagraphStyle.name;
  var story = app.selection[0].parentStory;
  var p = story.paragraphs.everyItem().getElements();
  var frame;

  for (var i = p.length-1; i >= 1; i--) {
    if (p[i].appliedParagraphStyle.name === styleName) {
      frame = p[i].parentTextFrames[0];
      frame.previousTextFrame = null;
      story.insertionPoints.itemByRange (p[i].index, story.length)
        .move (LocationOptions.AFTER, frame.insertionPoints[0]);
    }
  }

}());
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guide ,
Aug 09, 2024 Aug 09, 2024
LATEST

Hi Peter Kahrel

Thank you

You're too good and invincible to think of that.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 09, 2024 Aug 09, 2024

@dublove

 

It's not free and PC only: 

 

https://id-tasker.com/2024/05/12/mixing-auto-custom-footnotes/ 

 

Can be easily adapted to your needs - although I would have to add support for extra characters around the Footnote marker. 

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines