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

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

Advocate ,
Aug 08, 2024 Aug 08, 2024

Copy link to clipboard

Copied

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

Views

127

Translate

Translate

Report

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]
...

Votes

Translate

Translate
Community Expert ,
Aug 09, 2024 Aug 09, 2024

Copy link to clipboard

Copied

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.

Votes

Translate

Translate

Report

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
Advocate ,
Aug 09, 2024 Aug 09, 2024

Copy link to clipboard

Copied

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

 

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

Yes, it would, wouldn't it?

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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]);
    }
  }

}());

Votes

Translate

Translate

Report

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
Advocate ,
Aug 09, 2024 Aug 09, 2024

Copy link to clipboard

Copied

LATEST

Hi Peter Kahrel

Thank you

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

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

@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. 

 

Votes

Translate

Translate

Report

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