是的,我有问题。所以我有一个脚本,它将所有脚注放在文档的末尾,并从文本中的小数字到合适的尾注进行交叉引用。现在我想添加一个反向链接,所以当我有一个长文档(书)时,我不必手动向后滚动,而只需单击尾注即可返回。
到目前为止,我已经设法将尾注作为交叉引用来源,但我在交叉引用目标方面遇到了困难
当我使用 footnote.storyOffset 作为目的地时,它会搞砸文本中脚注的编号。例如,第一个脚注从文本中消失,然后出现 1,3,3,4,5,7... 等等。为什么会这样??我只是使用这个插入点作为目的地,突然间它搞砸了一切。
将脚注数字手动放入文本中也足够了,但我不知道如何删除文本中的打乱数字。我也可以使用下一个或上一个字符作为插入点,但我如何到达那里?
我对那个 indesign 脚本的东西很陌生。希望有人能帮助我。
这是源代码的关键部分:
stories[j].insertionPoints[-1].contents = SpecialCharacters.PAGE_BREAK; // add new page for notes
stories[j].insertionPoints[-1].contents = 'Notes';// title
footn = stories[j].footnotes;
for (var i = 0; i < footn.length; i++)
{
stories[j].insertionPoints[-1].contents = '\r';
endnote = footn[i].texts[0].move (LocationOptions.after, stories[j].insertionPoints[-1]);
endnote.applyParagraphStyle (note_styles.first, false);
if (i === 0)
{
endnote.numberingContinue = false;
endnote.numberingStartAt = 1;
}
if (endnote.paragraphs.length > 1)
{
endnote.paragraphs.itemByRange (1,-1).applyParagraphStyle (note_styles.next, false);
}
//var stoff = footn[i].storyOffset;
//stoff.contents = ''+(i+1);
//stoff.applyCharacterStyle(note_styles.char_style_in_text);
//stoff.appliedCharacterStyle.position= Position.superscript;
backlink_destination = doc.paragraphDestinations.add (footn[i].storyOffset); // position of footnote in text
endnote_destination = doc.paragraphDestinations.add (endnote.insertionPoints[0]);
try
{
crb = app.activeDocument.crossReferenceFormats.add({name:'backlink'+i});
crb.appliedCharacterStyle = note_styles.char_style_endnote;
crb.buildingBlocks.add (BuildingBlockTypes.customStringBuildingBlock);
crb.buildingBlocks.anyItem().customText = endnote.contents;
}
catch(_)
{
crb = app.activeDocument.crossReferenceFormats.item ('backlink'+i);
};
backlink_source = doc.crossReferenceSources.add (endnote, crb); // position of note at end of story
endnote_source = doc.crossReferenceSources.add (footn[i].storyOffset, note_styles.cr_format);
doc.hyperlinks.add(backlink_source, backlink_destination, {visible: false}); //add link from notes to text
doc.hyperlinks.add(endnote_source, endnote_destination, {visible: false});
} // for