Times_i

Post general font related questions (e.g. how to install, convert and use fonts) and requests (looking for fonts, designers etc.) here.
Post Reply
stalin
Posts: 1
Joined: Thu Nov 26, 2009 1:31 pm

Times_i

Post by stalin »

I have been sent a Word document from an author in America. It contains some words in a font that my vesion of Word calls Times_i.

I do not have this font and can find no trace of it using Google.

It is used for word with unusual diacritic characters (arabic transliterations) however it does not display correctly and (as I do not have this font) I cannot discover what the correct characters are supposed to be.

Has anyone heard of this font. Can I get hold of it so I can, at least, see what the correct characters should be?

After I've solved this problem my next problem will be how to convert this font into a unicode-compliant font but one thing at a time.
Dick Pape
Top Typographer
Top Typographer
Posts: 1360
Joined: Wed Oct 01, 2003 1:19 pm
Location: North Dallas, Texas

Re: Times_i

Post by Dick Pape »

This is probably not the right forum for "what is this font" questions, but I have one whose file name is timesi.ttf. Its font name is Times New Roman Italic and has 933 Unicode characters so could contain your characters. This is likely to be included in Windows o/s fonts.

Selecting any large open type font should show the characters even if not aligned or spaced properly unless the author did not use standard character mapping.
Bhikkhu Pesala
Top Typographer
Top Typographer
Posts: 9876
Joined: Tue Oct 29, 2002 5:28 am
Location: Seven Kings, London UK
Contact:

Re: Times_i

Post by Bhikkhu Pesala »

My best guess is that the font will use the CSX encoding. Try the attached font and see if the text makes sense. The following code is an OpenOffice macro to convert CSX to Unicode. I don't actually use it myself, so make sure that it does work as you want before running it on your documents. Always keep backups of course.

Code: Select all

Sub CSXtoUnicode
oDoc = thisComponent 
aFind = Array("  ", "ò", "ñ", "§", "â","à" ,"ä", "ã" ,"æ","å", "ô", "ó", "ÿ", "þ", "ì", "ë","î", "í", "ý", "ü", "ö", "õ", "¥", "¤", "ð", "ï", "è", "ç", "ê", "é", "ú", "ù", "ø", "÷") 
aReplace = Array(" ", "Ṭ", "ṭ", "ṁ", "Ā", "ā", "Ī", "ī", "Ū", "ū", "Ḍ", "ḍ", "Ḥ", "ḥ", "Ḷ", "ḷ","Ḹ", "ḹ", "Ṃ", "ṃ", "Ṇ", "ṇ", "Ñ", "ñ", "Ṅ", "ṅ", "Ṛ", "ṛ", "Ṝ", "ṝ", "Ṣ", "ṣ", "Ś", "ś")
aRayCount = 0 
FandR = oDoc.createReplaceDescriptor 
FandR.SearchCaseSensitive = true
FandR.SearchRegularExpression = true 
While aRayCount <= uBound(aFind) 
 FandR.setSearchString(aFind(aRayCount)) 
 FandR.setReplaceString(aReplace(aRayCount)) 
 aRayCount = aRayCount + 1 
 oDoc.ReplaceAll(FandR) 
Wend 
End Sub
Attachments
tcpr____.ttf
(91.7 KiB) Downloaded 351 times
My FontsReviews: MainTypeFont CreatorHelpFC15 + MT12.0 @ Win 10 64-bit build 19045.2486
Post Reply