Skip to main content
Participant
May 25, 2019
질문

Cómo puedo escribir automáticamente todos los símbolos de una fuente?

  • May 25, 2019
  • 1 답변
  • 600 조회

Cómo puedo escribir automáticamente todos los símbolos de una fuente tipográfica?

Me interesa sacar en un párrafo todo el contenido de una fuente específica entera o un grupo de símbolos de una fuente.

    이 주제는 답변이 닫혔습니다.

    1 답변

    Eric Dumas
    Community Expert
    Community Expert
    May 25, 2019

    Hi,

    Can you include the version of your InDesgin and Operating System to help focus our answers. You can also include screenshots to help us understand your question better.

    I think you are looking for Find/Change option where you are searching for the characters you want too locate and replace with nothing. You can also save that search parameters for a quick reuse later.

    siss59028144작성자
    Participant
    May 25, 2019

    La versión de InDesign es CS6, el sistema operativo es OS X 10.11.6.

    No puedo hacer sustitución alfabética mediante Buscar / Cambiar porque se trata de ideogramas chinos.

    Community Expert
    May 25, 2019

    Hi siss59028144 ,

    you could use the unicode values with e.g. a GREP Find/Change action.

    If all or some of the characters are in a range you even could find a range and change it to a different range. Or change with nothing which will remove the found contents.

    To give you an example we need a live sample what exactly you want to find and change.

    Here one example with dummy text in Chinese where I selected one "character" to get its unicode value:

    A GREP pattern to find this would be:

    \x{6C34}

    A range could be done like this ( just an example ):

    [\x{6C34}-\x{901D}]

    All code points from 6C34 to 901D would be found and changed. This is just an example. I don't know what your range of Chinese "characters" is you like to remove. Here the result with the range above where the found "characters" should be colored with Magenta:

    You may consult this page to find your specific range:

    Code Charts

    Regards,
    Uwe


    Do you perhaps need a list of all used characters with their Unicode code points listed in a table?

    Something like I did in this screenshot below where I listed all used characters in a table, no doubles, sorted by their Unicode code points:

    From the results in column two you could build GREP patterns for code point ranges like I did in my reply above.

    Regards,
    Uwe