And, can I print Booklet in NWP (not brochure)? and how?
TIA
This isn't actually currently possible, sorry. We have it on our list of features to add, but I can't say when you'll see it exactly.GMT+3:00 wrote:How can I put the footnotes number (in the text and footnotes) between two parentheses?
Not directly no, but I believe there are utilities out there that will allow one to print/convert any PDF (eg: as saved by NWP) into a booklet.And, can I print Booklet in NWP (not brochure)? and how?
It's actually just the menu command name itself, ie:GMT+3:00 wrote:What is the statement to superscript the parentheses in the main body of the doc?
Code: Select all
SuperscriptCode: Select all
Menu ":Format:Baseline:Superscript"Code: Select all
Menu ":Format:Character Style:Note Reference"I'm not sure I understand exactly what you're asking. Do you want to remove the parentheses?And how can I jump (as a statement in the macro) to the footnotes and rerun the macro, and deselect all?
The separator line will align itself with the direction of your document section. So if you change your section to be "Right to Left", the divider line will be right aligned. Note that changing your section direction changes other things, like in which direction columns snake.Another Q: How can I align the sparater Footnotes line to the rghit?
The macro parenthesize only the number of the footnotes reference, and not the number of the footnotes text at the bottom!I'm not sure I understand exactly what you're asking. Do you want to remove the parentheses?
That's correct, it is not possible for the macro to parenthesize the reference numbers in the note area at the bottom/end, sorry.GMT+3:00 wrote:The macro parenthesize only the number of the footnotes reference, and not the number of the footnotes text at the bottom!
That's not difficult. You'll want to use the "Select End" command, which places the insertion point at the end of the selection. Although, it sounds like you don't care to see the inserted parentheses at all, so let's restore something like the original selection by changing the final bit of macro code to:And after the macro finishes I'd like it to deselect the footnotes!
Code: Select all
# select inserted characters
If $inserted.count > 0
$doc.setSelection($inserted)
Menu ":Format:Character Style:Note Reference"
End
$doc.setSelection($startingSelection)Don't worry, the macro works on both footnotes and endnotes.(Sorry, I'm working with Endnotes and not Footnotes), I think it does not matter in my case! correct?
Perhaps.. do you mean that you want the parentheses added when you insert a new endnote?Is it possible to do the initiation and the parenthesize of each endnote in one macro? (on the go!)
Yes. Only for each inserted Endnote at a time! I mean, have the command of inserting Endnote inside the macro and let the macro parenthesize this Endnote only not the whole doc, so when I wont to add a new Endnote I just need to run the macromartin wrote:Perhaps.. do you mean that you want the parentheses added when you insert a new endnote?
Yes, and thnx a lot.martin wrote:I think this macro will do what you want. Just run it instead of inserting an endnote as normal.