Skip to main content
Inspiring
June 12, 2018
Answered

changing (1) to endnote

  • June 12, 2018
  • 1 reply
  • 357 views

I have a Word doc which has endnotes entered manually as (1) (2) etc. When I place the Word doc in Indesign is there any way I can find these endnote numbers and replace with subscripted numbers.

Thanks

    This topic has been closed for replies.
    Correct answer winterm

    Subscripted? Isn’t it a typo?

    Find:

    \s*\((\d+)\)

    Change:

    $1

    Change Format:

    Char style Superscript

    You’ll end up with superscripted number, without parenthesis and no space(s) before it.

    1 reply

    winterm
    wintermCorrect answer
    Legend
    June 12, 2018

    Subscripted? Isn’t it a typo?

    Find:

    \s*\((\d+)\)

    Change:

    $1

    Change Format:

    Char style Superscript

    You’ll end up with superscripted number, without parenthesis and no space(s) before it.

    Ian BlogsAuthor
    Inspiring
    June 12, 2018

    Thanks Winterm.Yes, that was a typo I meant superscript.

    It worked like a charm.

    I