Devanagari Font Support For Linux

Slides:



Advertisements
Similar presentations
Unicode Mark Davis Unicode Consortium President IBM Chief SW Globalization Architect
Advertisements


Poster Title 95 point, Arial font Primary heading Xx xxx x xx xxxxx xx xxxx xxx xx xx x x xxxxx xxxx xx xxxxx xx xxxxxx xxx xx. X xx xxxx xxxxx xx xxxx.
MATH 310, FALL 2003 (Combinatorial Problem Solving) Lecture 16, Monday, October 6.
THIS IS THE TITLE OF MY POSTER. THIS IS THE TITLE OF MY POSTER NAMES, NAMES, & NAMES This is my abstract. This is my abstract. This is my abstract. This.
MATH 310, FALL 2003 (Combinatorial Problem Solving) Lecture 34, Friday, November 21.
Firstname Lastname Nationality: XXXXXXX • Address
15 September How Computers Work: Other Forms of Data.
TRABAJOS DE FOTOGRAFIA
MULTIPLES OF 2 By Preston, Lincoln and Blake. 2 X 1 =2 XX 2X1=2 1+1=2.
Exponents 3² Mrs. 3 × Mrs. 3 3 × 3 3².
Unicode & W3C Jataayu Software C. Kumar January 2007.
Localizing OpenClinica Hiroaki Honshuku: SQA 1. © What is Character Encoding?  Morse Code (1840) → Latin Alphabet  ASCII (1963)  The American Standard.
Unicode (and Java) Brice Giesbrecht.
Encoding and fonts Edward Garrett Software Developer, ELAR.
1 herbert van de sompel CS 502 Computing Methods for Digital Libraries Cornell University – Computer Science Herbert Van de Sompel
Chapter 3 Representing Numbers and Text in Binary Information Technology in Theory By Pelin Aksoy and Laura DeNardis.
October 2005CSA3180: Text Processing I1 CSA3180: Natural Language Processing Text Processing 1 Language Encoding Issues Common Corpora Handling Large Document.
News On The Go! How NewsHunt reached 1 Crore Downloads ? INDIAN LANGUAGES!!
1 An ICU Library Supporting the Display of Complex Text Eric Mader Globalization Center of Competency, Cupertino, CA.
Building digital libraries in Indian languages: case studies with Hindi and Kannada B.S. Shivaram Trainee ( ) National Center for Science Information.
INFOCODING BASICS & EXAMPLES OF CURRENT USE Introduction to Computer Science Using Ruby (c) 2010 Gideon Frieder.
Binary, Decimal and Hexadecimal Numbers Svetlin Nakov Telerik Corporation
Lesson #3- Exponent Laws
Divide by 8 page – groups of 8 Division Sentence 0 ÷ 8 = 0.
Lecture # 3 Regular Expressions 1. Introduction In computing, a regular expression provides a concise and flexible means to "match" (specify and recognize)
SEC (1.4) Representing Information as bit patterns.
2015 Great Plains ASLA Awards Category here Project Name: xxxxxxxxxxxxxxxxxxxxx Project Name: Project Location: Project Purpose: To xxxxxx xxxxxx xxxx.
2015 ASLA Awards Program Category here Project Name: xxxxxxxxxxxxxxxxxxxxx Project Name: Project Location: Project Purpose: To xxxxxx xxxxxx xxxx xxxxx.
2013 Central States ASLA Awards Category here Project Name: xxxxxxxxxxxxxxxxxxxxx Project Name: Project Location: Project Purpose: To xxxxxx xxxxxx xxxx.
Lis508 lecture 2: characters to textual documents Thomas Krichel
6.1 - Polynomials. Monomial Monomial – 1 term Monomial – 1 term; a variable.
Characters CS240.
Character representation in the computers Home Assignment 1 Assigned. Deadline 2016 January 24th, Sunday.
CEC 220 Digital Circuit Design Decoders, Encoders, & ROM Wed, February 19 CEC 220 Digital Circuit Design Slide 1 of 18.
Unicode WTF is UTF? (for Secondary School Students) Jan Zidek Tieto Czech s.r.o. ☺ U+263A.
Basics of Unicode (base upon a presentation by NRSI, SIL International)
HTML is about making documents. Simple Code for Simple Layout My Document This is an example HTML document First paragraph Second paragraph This is the.
Machine level representation of data Character representation
The Title of the Paper, in Bold Letters
The Title of the Paper in Bold Letters
Presenter (First name and Last Name)
2017 Central States ASLA Awards Category here
2017 Great Plains ASLA Awards Category here
2017 Iowa Chapter ASLA Fall Conference Awards Category here
Binary, Decimal and Hexadecimal Numbers
Representing Information as bit patterns
Simplify 2m( 3 2 m+1)+3( 5 3 m-2) A.)3m2+5m-1 B.) 3 4 m m-6 C.) 3m2+7m-6 D.) 3 4 m m-1.
Strings.
Lecture 2 Data representation
The Title of the Paper in Bold Letters
To ensure that the UNITED WE FIGHT. UNITED WE WIN
Gamma Theta Upsilon Recent GTU Initiates
©2009 – Not to be sold/Free to use
©2009 – Not to be sold/Free to use
Presenter Name Presentation/event title xxxxx
Instructions and Examples Version 1.5
Clinical Implications Differential Diagnosis
Title—48 pt. Arial Bold (use two lines of text if necessary)
2018 Central States ASLA Awards Category here
OF YOUR PRESENTATION HERE
Tutorial 1.3 Using Element Attributes
Understanding Hex “I hope you have the worst headache of your life, then you will begin to understand” ~unknown.
INFOCODING BASICS & EXAMPLES OF CURRENT USE
Title—48 pt. Arial Bold (use two lines of text if necessary)
2014 Central States ASLA Awards Category here
Warm up (12x2 + 8x – 6) – (9x2 – 2x + 5) Find the area and perimeter
Introduction to UNICODE (ஒருங்குறி)
Replace This Text With Your Title
Presentation transcript:

Devanagari Font Support For Linux Dipali B. Choudhary Center For Indian Language Technologies 12 June 2002

Center For Indian Language Technologies Objective Give devanagari font support on linux Unicode devanagari font. 12 June 2002 Center For Indian Language Technologies

Center For Indian Language Technologies Arambh Font Arambh font uses ASCII encoding i.e. iso8859 Added extra characters required in Damle Grammer . 12 June 2002 Center For Indian Language Technologies

Center For Indian Language Technologies Why Unicode? To avoid mutually incompatible ASCII extensions. Write different scripts in one document. 12 June 2002 Center For Indian Language Technologies

Center For Indian Language Technologies Encoding Formats Sequence of characters are represented in different encoding formats. UTF-32 UTF-16 UTF-8 12 June 2002 Center For Indian Language Technologies

Center For Indian Language Technologies UTF-8 U-00000000 - U-0000007F 0xxxxxxx U-00000080 - U-000007FF 110xxxxx 10xxxxxx U-00000800 - U-0000FFFF 1110xxxx 10xxxxxx 10xxxxxx U-00010000 - U-001FFFFF 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx U-00200000 - U-03FFFFFF 111110xx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx U-04000000 - U-7FFFFFFF 1111110x 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx Ex. character U+2260 = 0010 0010 0110 0000 (not equal to) is encoded as: 11100010 10001001 10100000 = 0xE2 0x89 0xA0 12 June 2002 Center For Indian Language Technologies

Center For Indian Language Technologies Conclusion Activating UTF-8 require locale machanism. Support for Indic text formatting algorithms. 12 June 2002 Center For Indian Language Technologies

Center For Indian Language Technologies Thank You. 12 June 2002 Center For Indian Language Technologies