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

Myanmar font issue

Community Beginner ,
Nov 16, 2023 Nov 16, 2023

Copy link to clipboard

Copied

We are preparing a book in Myanmar (Burmese) using InDesign. We have an issue with Myanmar font after we placed the text from our MS Word document. We use Noto Sans Myanmar font. It is OK on Word, but it does not appear correctly for some strokes on InDesign (please see below).

Thank you, Chit

Chit33673432hhub_0-1700182081671.pngexpand image

 

TOPICS
Type

Views

2.7K
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 ,
Nov 16, 2023 Nov 16, 2023

Copy link to clipboard

Copied

Next time, could you please use forum's Search, before posting your question - it should save you a lot of time:

 

https://community.adobe.com/t5/forums/searchpage/tab/message?advanced=false&allow_punctuation=false&...

 

Or Google... 

 

Votes

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 ,
Nov 16, 2023 Nov 16, 2023

Copy link to clipboard

Copied

There are always a number of issues when working with extended-alphabet languages, but first... is the file from MS Word or from an alternate app such as Pages or Google Docs, and exported or saved to Word format? InDesign is very fussy and does not always import Word-clone files correctly. (The simple solution is to open and re-save such files from a copy of Word itself.)

Votes

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 Beginner ,
Nov 16, 2023 Nov 16, 2023

Copy link to clipboard

Copied

The imported file is an original MS word file. We opened/resaved it on MS word again and tried to place it into InDesign. InDesign rendered it the same way as before. We are stuck and don’t know how to proceed. We use the Apple Mac system. Thank you very much for your reply.

Votes

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 ,
Nov 17, 2023 Nov 17, 2023

Copy link to clipboard

Copied

Well, that's sometimes the simple answer.

 

I suggest you look into the link provided above to see if it addresses issues with the language/alphabet/font you're using. It's outside my direct experience, but I know there are specific issues with extended alphabets, and solutions for them.

Votes

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 Beginner ,
Nov 24, 2023 Nov 24, 2023

Copy link to clipboard

Copied

I found a way to import Myanmar font correctly into InDesign. I set the Paragraph Style as "Body", Character Language as Burmese (Myanmar Burma) and set the composer as "Adobe World-Ready Single-Line Composer” in advance Type / Preference. Myanmar font shows up correctly as it appears on MS Word. However, I haven't used InDesign in a very long time and I’m like a novice user now, and not too sure if my fix is the correct way. So I did not share it with the InDesign community. I still cannot figure out how to automatically insert page numbers in Myanmar font. It only works with Roman fonts. Thank you very much, Chit

Votes

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 ,
Nov 25, 2023 Nov 25, 2023

Copy link to clipboard

Copied

Your fix is the correct way, more or less - it doesn't matter how you apply the World-Ready Composer to your text, and it doesn't matter that much whether you choose the single-line or paragraph composer. (Try them both on a paragraph to see the difference; it's sometimes important in Burmese to use the multi-line as InDesign isn't very good at Burmese line-breaks, and typically the paragraph composer is a little bit better.)

 

The fix for Burmese page numbers is a bit more complex. InDesign's text layout engine has support for Burmese digits, but there's no real support in the interface. If you know how to install and run a script, this one will create a paragraph style that has Burmese digits turned on.

 

/*
	Add Paragraph style with Burmese numbering by Joel Cherney
	Based on "Khmer Page Numbering.jsx"	version: 1.1 by Thomas Silkjær
	
*/

var my_document = app.documents.item(0).paragraphStyles.add({
	name:"BurmeseDigitsSupport",
	characterDirection:CharacterDirectionOptions.LEFT_TO_RIGHT_DIRECTION,
	composer:"Adobe World-Ready Paragraph Composer",
	digitsType:DigitsTypeOptions.BURMESE_DIGITS,
	paragraphDirection:ParagraphDirectionOptions.LEFT_TO_RIGHT_DIRECTION,
});

This will create a paragraph style that will number in Burmese digits. You'd need to edit the resulting "BurmeseDigitsSupport" paragraph style to add a font that supports Burmese. 

 

Here's a screenshot of the paragraph style definition; note that InDesign can't tell us what digits are being used, as the UI and localized menu names don't have a string for Burmese digits.

 

burm.pngexpand image

 

Votes

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 ,
Nov 25, 2023 Nov 25, 2023

Copy link to clipboard

Copied

Whoops! And, if you don't know how to install a script, here are some instructions. And, at the bottom of those instructions, there's a handy link to an explanation regarding what to do if you don't know how to turn some random internet person's posting of a JS snippet into an installable script

Votes

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 Beginner ,
Nov 25, 2023 Nov 25, 2023

Copy link to clipboard

Copied

Thank you very much, will try it out!

Votes

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 Beginner ,
Dec 06, 2023 Dec 06, 2023

Copy link to clipboard

Copied

LATEST

Dear Joel, your script works, now I can insert page numbers in Myanmar font automatically in InDesign. Thank you so much, Chit

Votes

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