SlideShare a Scribd company logo
1 of 46
WYSIWYG Speak: Improvingyour
Understandingof MarkupLanguages
¡Hi Calvin!
Goals 1
Access markup languages via linguistics:
Lexicon: tags as words
Syntax: combinatorial options
Semantics: what tags do
Goals 2
Learn to distinguish
markup (metalanguage)
text (object language)
Work with marked-up files
Use ML-based translation tools
Intervene in ML vocabulary creation
What is Markup?
Earmarking text with metadata
USE of object language
Goblins are deceiving creatures.
MENTION with metalanguage
“Goblin” comes from a Greek term.
Note the use of quotation marks!!!
Meaning to text for ≠ applications to use
Semiotics
Example
What is Markup?
ASMALLGREENDOTLOSTINTHEVA
STNESSOFTHESOUTHEASTERNPA
CIFICOCEANEASTERISLANDHASL
ONGENCHANTEDARCHAEOLOGIS
TSANDTHEPUBLICHUNDREDSOFG
IANTSTONEFIGURESORMOAITHAT
DECORATETHEVOLCANICISLANDR
EMAINASOURCEOFFASCINATION
A small green dot lost in the
vastness of the southeastern
Pacific Ocean, Easter Island has
long enchanted archaeologists and
the public. Hundreds of giant stone
figures, or Moai, that decorate the
volcanic island remain a source of
fascination.
ML Languages
SGML
Standardized
General Markup
Language
Hypertext
Markup
Language
HTML
XML
eXtensible
Markup
Language
Tim Berners Lee
Charles Goldfarb
> ISO
W3C
WorldWide Web Consortium
A Little History
SGML
1975
Electronic
Publishing
1990
Web
Publishing
HTML
XML
1995
Data
Representation
DocBook
XHTML
MathML
RecipeML
Visual
interpretation
Semantic
interpretation
Preset typographical
operations
Expandable description
of logical structure
Procedural
Language
Semantic
Language
HTML XML
Linguistic Features of a ML
SIGNS :: elements in tags
MEANING :: instructions
SYNTAX :: open/close
nested structure
ML Signs:Tags
< title > Book < / title >
START tag END tag
ELEMENT
text
less than
slash
greater than
Delimiters + Name
Case sensitive (lower case)
ML Meaning: Instructions
Tags organize text
Tags style text
Tags describe text
<b>
<h1>
<lastname>
<p> <li>
<center> <bgcolor>
<ingredient>
ML Syntax: order
Tags open and close: <h1>texto</h1>
Declared attributes: Property=“Value”
Nested in order:
< table width=“100%”/>
<h1>text</h1>
<b><i>text</i></b>
<h1 />
(deprecated)
ML Syntax: compound words
< table width=“100%” > […] < / table>
property
element
value
Attributes
Where’s the translatable text?
[descriptive]
<recipe>Breaded Chicken Breast</recipe>
[procedural]
<li>chicken breast</li>v
<li>breadcrumbs</li>
Marked-up
TranslatebleText
HTML Skeleton
<html>
<head>
<title>
Here goes the title
</title>
</head>
<body>
Here goes the content
</body>
</html>
<html>
<head>
<title>Recipe
</title>
</head>
<body>
<h1>Paella</h1>
<h3>Ingredients</h3>
<p>rice</p>
<p>etc</p>
</body>
</html> Display
according to
instructions
<?xml version="1.0"
encoding=“UTF-8"?>
<recipe>
<type>Paella
</type>
<ingredient>rice
</ingredient>
<ingredient>etc
</ingredient>
</recipe>
HTML Graphic File Instruction
Porta Ludovica
<img src="porta.GIF" width="432" height="216"
align="BOTTOM" alt="Porta Ludovica"><br>
HTML Limitations
Mix of style and structure
Bolding, Centering, Color,
Paragraphs,Tables, etc.
W3C decided to separate:
style instructions
structure instructions
*WorldWideWeb Consortium
HTML Expansion
Structure: <h1>
HTML proper: structural integrity
Style: <font> <color>
CSS: associate the same HTML
document with different styles
CSS: Cascading Style Sheets
XML: eXtensible Markup Language
Extensible: no predetermined set of tags
Platform & application independent
Applicable to very diverse fields
Data representation for
Storage > meaningful fragments
Interaction > searching / sorting
Control > transformation / display within a
browser, PDF, print publishing, etc.
Conveys info on structure and meaning
Tree hierarchy
Validated Syntax
(rules OK?)
XML
XML Components
Declaration
Tags
Elements
Attributes
Comments
Entities
<?xml version="1.0"
encoding=“UTF-8"?>
<patient>
<name>
<prefix>Ms.
</prefix>
<lastname>Camilla
</lastname>
<firstname>Merlo
</firstname>
</name>
<birthday
</patient>
Declaration
Defines XML version and character encoding
Optional
<xml version="1.0" encoding="ISO-8859-1"?>
<recipe>
<type>Paella
</type>
<ingredient>rice
[...]
UTF: UniversalCharacter SetTransformation
Format
<xml version="1.0" encoding=“UTF-8"?>
<recipe>
<type>Paella
</type>
<ingredient>rice
[...]
Tags
Element delimiters
<start tag> :: opens an element
<end tag> :: closes an element
<xml version="1.0" encoding="ISO-8859-1"?>
<recipe>
<name> Paella </name>
<ingredient>rice </ingredient>
[...]
Elements
Building blocks of XML
Root element: mandatory
<xml version="1.0" encoding=“UTF-8"?>
<recipe>
<name> Paella </name>
<ingredient> rice </ingredient>
[...]
Attributes
Additional information about elements
Syntax: <element property=”value”>
<tel type=“cell”>123-456-7890</tel>
<book id=“001” lang=“Italian”>[text]</book>
Comments
Notes or temporary edit-out of code
 Signaled by <!-- comment -->
No visual rendition
Not translated
<xml version="1.0" encoding="ISO-8859-1"?>
<!--this example is based on TEI guidelines-->
<novel>
<title>The Pillars of the Earth</name>
[...]
Referencing
Workaround for entities of object language
Avoid confusions with the metalanguage
Reference Entity
&lt; <
&gt; >
&amp; &
&quot; “
<?xml version="1.0" encoding="utf-8"?>
<catalog>
<book id="bk001" lang="english" trans="">
<author>Nadine Kano</author>
<translator></translator>
<title>Developing International Software</title>
<origtitle></origtitle>
<genre>IT</genre>
<publish_date>1995-12-05</publish_date>
<description>A handbook for international software
design.</description>
</book>
<book id="bk002" lang="italian" trans="">
<author>Enrico Galiano</author>
<translator></translator>
<title>Eppure cadiamo feilici</title>
<origtitle></origtitle>
<genre>Fiction</genre>
<publish_date>2017-04-18</publish_date>
<description>La sotira di una giovvane che non a paura
di ascoltare il rumore della felicità.</description>
</book>
<book id="bk003" lang="english" trans="spanish">
<author>Ken Follet</author>
<translator>Rosalía Vázquez</translator>
<title>Los Pilares de la Tierra</title>
<origtitle>The Pillars of the Earth</origtitle>
<genre>Historical Fiction</genre>
<publish_date>2008-02-01</publish_date>
<description>Durante la construcción de una
catedral gótica, el amor, la muerte y el poder se
entrecruzan mostrando que las relaciones humanas son
siempre complejas.</description>
</book>
</catalog>
elements
root element
Marked-up
translateble text
Browser Display
without Style
• Title
• Author
• Genre
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="books_style.xsl"
type="text/xsl" ?>
<catalog>
<book id="bk001" lang="english" trans="">
<author>Nadine Kano</author>
<translator></translator>
<title>Developing International Software</title>
<origtitle></origtitle>
<genre>IT</genre>
<publish_date>1995-12-05</publish_date>
<description>A handbook for international
software design.</description>
</book>
<book id="bk002" lang="italian" trans="">
Reference to
Stylesheet
Styling XML: XSL
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transf
orm"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs"
version="2.0">
<xsl:template match="/catalog">
<html>
[styling instrucions go here]
</html>
</xsl:template>
</xsl:stylesheet
Xpath query
(recall) to our
desired XML
element
eXtensible
Stylesheet Language
<table border="1">
<tr>
<th>Title</th>
<th>Author</th>
<th>Genre</th>
</tr>
<xsl:for-each select="book">
<tr>
<td><xsl:value-of select="title" /></td>
<td><xsl:value-of select="author" /></td>
<td><xsl:value-of select="genre" /></td>
</tr>
</xsl:for-each>
</table>
table row
table
table division
loop for display
Browser display
with some style
<table border="1">
<tr bgcolor="#9acd32“>
<th>Title</th>
<th>Author</th>
<th>Genre</th>
</tr>
<xsl:for-each select="book">
<xsl:sort select="author" data-type="text"
order="ascending"/>
<tr>
<td><xsl:value-of select="title" /></td>
<td><xsl:value-of select="author" /></td>
<td><xsl:value-of select="genre" /></td>
</tr>
</xsl:for-each>
</table>
table
loop for display
sort
attribute
Browser display
with style & Sort
<author>
<lastname>Galiano</lastname>
<firstname>Enrico</ firstname>
</author>
XMLVocabularies
MML, for medicine
MathML, for mathematics
TML, for literature
SMIL, for multimedia
Synchronized Multimedia Integration
Language
TEI:Text Encoding Initiative
www.tei-c.org
TAPAS Project
ML code text using metalanguage
<recipe> Breaded Chicken Breast </recipe>
<li> chicken breast </li>
<li> breadcrumbs </li>
Marked-upText
<tags>
XML: Evolution? Revolution!
Describe not display
Tags are not predefined
Tree structure
Extensible vocabulary of elements
Validated for well formed syntax
Entities
Thank you!
romina@languagecompass.com
<closing>Questions?</closing>

More Related Content

Similar to Xml for Translators

Compiler Construction | Lecture 6 | Introduction to Static Analysis
Compiler Construction | Lecture 6 | Introduction to Static AnalysisCompiler Construction | Lecture 6 | Introduction to Static Analysis
Compiler Construction | Lecture 6 | Introduction to Static AnalysisEelco Visser
 
Battle for the Body Field (DrupalCon)
Battle for the Body Field (DrupalCon)Battle for the Body Field (DrupalCon)
Battle for the Body Field (DrupalCon)Jeff Eaton
 
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-templateFronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-templateInventis Web Architects
 
Modeling Rich Narrative Content
Modeling Rich Narrative ContentModeling Rich Narrative Content
Modeling Rich Narrative ContentJeff Eaton
 
Web technologies: Lesson 2
Web technologies: Lesson 2Web technologies: Lesson 2
Web technologies: Lesson 2nhepner
 
Content Management for Publishers
Content Management for PublishersContent Management for Publishers
Content Management for PublishersApex CoVantage
 
Introduction to XML, XHTML and CSS
Introduction to XML, XHTML and CSSIntroduction to XML, XHTML and CSS
Introduction to XML, XHTML and CSSJussi Pohjolainen
 
Ebook Accessibility: Why, How, and What For - ebookcraft 2016 - Laura Brady
Ebook Accessibility: Why, How, and What For - ebookcraft 2016 - Laura BradyEbook Accessibility: Why, How, and What For - ebookcraft 2016 - Laura Brady
Ebook Accessibility: Why, How, and What For - ebookcraft 2016 - Laura BradyBookNet Canada
 
ePub 3, HTML 5 & CSS 3 (+ Fixed-Layout)
ePub 3, HTML 5 & CSS 3 (+ Fixed-Layout)ePub 3, HTML 5 & CSS 3 (+ Fixed-Layout)
ePub 3, HTML 5 & CSS 3 (+ Fixed-Layout)Clément Wehrung
 
presentation_html_ppt_1.pptx
presentation_html_ppt_1.pptxpresentation_html_ppt_1.pptx
presentation_html_ppt_1.pptxIrfanRashid36
 
Decoding and developing the online finding aid
Decoding and developing the online finding aidDecoding and developing the online finding aid
Decoding and developing the online finding aidkgerber
 

Similar to Xml for Translators (20)

Compiler Construction | Lecture 6 | Introduction to Static Analysis
Compiler Construction | Lecture 6 | Introduction to Static AnalysisCompiler Construction | Lecture 6 | Introduction to Static Analysis
Compiler Construction | Lecture 6 | Introduction to Static Analysis
 
Battle for the Body Field (DrupalCon)
Battle for the Body Field (DrupalCon)Battle for the Body Field (DrupalCon)
Battle for the Body Field (DrupalCon)
 
Web page concept Basic
Web page concept  BasicWeb page concept  Basic
Web page concept Basic
 
Web page concept final ppt
Web page concept  final pptWeb page concept  final ppt
Web page concept final ppt
 
DITA 101
DITA 101DITA 101
DITA 101
 
Fronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-templateFronttechnieken met HTML5 en de Slice-template
Fronttechnieken met HTML5 en de Slice-template
 
Modeling Rich Narrative Content
Modeling Rich Narrative ContentModeling Rich Narrative Content
Modeling Rich Narrative Content
 
Html
HtmlHtml
Html
 
Web technologies: Lesson 2
Web technologies: Lesson 2Web technologies: Lesson 2
Web technologies: Lesson 2
 
Content Management for Publishers
Content Management for PublishersContent Management for Publishers
Content Management for Publishers
 
Artdm171 Week4 Tags
Artdm171 Week4 TagsArtdm171 Week4 Tags
Artdm171 Week4 Tags
 
Bangla html
Bangla htmlBangla html
Bangla html
 
HTML.ppt
HTML.pptHTML.ppt
HTML.ppt
 
Introduction to XML, XHTML and CSS
Introduction to XML, XHTML and CSSIntroduction to XML, XHTML and CSS
Introduction to XML, XHTML and CSS
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Intro to-html5
Intro to-html5Intro to-html5
Intro to-html5
 
Ebook Accessibility: Why, How, and What For - ebookcraft 2016 - Laura Brady
Ebook Accessibility: Why, How, and What For - ebookcraft 2016 - Laura BradyEbook Accessibility: Why, How, and What For - ebookcraft 2016 - Laura Brady
Ebook Accessibility: Why, How, and What For - ebookcraft 2016 - Laura Brady
 
ePub 3, HTML 5 & CSS 3 (+ Fixed-Layout)
ePub 3, HTML 5 & CSS 3 (+ Fixed-Layout)ePub 3, HTML 5 & CSS 3 (+ Fixed-Layout)
ePub 3, HTML 5 & CSS 3 (+ Fixed-Layout)
 
presentation_html_ppt_1.pptx
presentation_html_ppt_1.pptxpresentation_html_ppt_1.pptx
presentation_html_ppt_1.pptx
 
Decoding and developing the online finding aid
Decoding and developing the online finding aidDecoding and developing the online finding aid
Decoding and developing the online finding aid
 

More from Romina Marazzato Sparano

NCTA Short Version of Machine learning and AI in Plain Language
NCTA Short Version of Machine learning and AI in Plain LanguageNCTA Short Version of Machine learning and AI in Plain Language
NCTA Short Version of Machine learning and AI in Plain LanguageRomina Marazzato Sparano
 
Artificial Intelligence and Machine learning in Plain Language
Artificial Intelligence and Machine learning in Plain LanguageArtificial Intelligence and Machine learning in Plain Language
Artificial Intelligence and Machine learning in Plain LanguageRomina Marazzato Sparano
 
Plain Language 2.0 & Health Literacy: New Strategies for Better Outcomes
Plain Language 2.0 & Health Literacy: New Strategies for Better OutcomesPlain Language 2.0 & Health Literacy: New Strategies for Better Outcomes
Plain Language 2.0 & Health Literacy: New Strategies for Better OutcomesRomina Marazzato Sparano
 
The ATA Certification Exam and Translation Strategies
The ATA Certification Exam and Translation StrategiesThe ATA Certification Exam and Translation Strategies
The ATA Certification Exam and Translation StrategiesRomina Marazzato Sparano
 
Beyond Readability Formulas: The Editor as Advocate of Whole Text and All Rea...
Beyond Readability Formulas: The Editor as Advocate of Whole Text and All Rea...Beyond Readability Formulas: The Editor as Advocate of Whole Text and All Rea...
Beyond Readability Formulas: The Editor as Advocate of Whole Text and All Rea...Romina Marazzato Sparano
 
Plain Language 2.0 for Editing: Clarity with Style
Plain Language 2.0 for Editing: Clarity with StylePlain Language 2.0 for Editing: Clarity with Style
Plain Language 2.0 for Editing: Clarity with StyleRomina Marazzato Sparano
 
Add Style to Your Writing Without Sacrificing Clarity
Add Style to Your Writing Without Sacrificing ClarityAdd Style to Your Writing Without Sacrificing Clarity
Add Style to Your Writing Without Sacrificing ClarityRomina Marazzato Sparano
 
Translating Romance Languages into English
Translating Romance Languages into EnglishTranslating Romance Languages into English
Translating Romance Languages into EnglishRomina Marazzato Sparano
 
Plain language and artificial intelligence
Plain language and artificial intelligencePlain language and artificial intelligence
Plain language and artificial intelligenceRomina Marazzato Sparano
 
Translatability Issues: Source Clarity & Idiosyncrasies
Translatability Issues: Source Clarity & IdiosyncrasiesTranslatability Issues: Source Clarity & Idiosyncrasies
Translatability Issues: Source Clarity & IdiosyncrasiesRomina Marazzato Sparano
 
Teaching The Non-Translation Side of Translation
Teaching The Non-Translation Side of TranslationTeaching The Non-Translation Side of Translation
Teaching The Non-Translation Side of TranslationRomina Marazzato Sparano
 
Idiosynchratic constructions in English and Spanish
Idiosynchratic constructions in English and SpanishIdiosynchratic constructions in English and Spanish
Idiosynchratic constructions in English and SpanishRomina Marazzato Sparano
 

More from Romina Marazzato Sparano (20)

NCTA Short Version of Machine learning and AI in Plain Language
NCTA Short Version of Machine learning and AI in Plain LanguageNCTA Short Version of Machine learning and AI in Plain Language
NCTA Short Version of Machine learning and AI in Plain Language
 
Plain Language and Health Literacy
Plain Language and Health LiteracyPlain Language and Health Literacy
Plain Language and Health Literacy
 
Technical Translation into English
Technical Translation into EnglishTechnical Translation into English
Technical Translation into English
 
Artificial Intelligence and Machine learning in Plain Language
Artificial Intelligence and Machine learning in Plain LanguageArtificial Intelligence and Machine learning in Plain Language
Artificial Intelligence and Machine learning in Plain Language
 
Plain Language is Also for Experts
Plain Language is Also for ExpertsPlain Language is Also for Experts
Plain Language is Also for Experts
 
Plain Language 2.0 & Health Literacy: New Strategies for Better Outcomes
Plain Language 2.0 & Health Literacy: New Strategies for Better OutcomesPlain Language 2.0 & Health Literacy: New Strategies for Better Outcomes
Plain Language 2.0 & Health Literacy: New Strategies for Better Outcomes
 
Ata exam spa
Ata exam spaAta exam spa
Ata exam spa
 
The ATA Certification Exam and Translation Strategies
The ATA Certification Exam and Translation StrategiesThe ATA Certification Exam and Translation Strategies
The ATA Certification Exam and Translation Strategies
 
Beyond Readability Formulas: The Editor as Advocate of Whole Text and All Rea...
Beyond Readability Formulas: The Editor as Advocate of Whole Text and All Rea...Beyond Readability Formulas: The Editor as Advocate of Whole Text and All Rea...
Beyond Readability Formulas: The Editor as Advocate of Whole Text and All Rea...
 
Plain Language 2.0 for Editing: Clarity with Style
Plain Language 2.0 for Editing: Clarity with StylePlain Language 2.0 for Editing: Clarity with Style
Plain Language 2.0 for Editing: Clarity with Style
 
Add Style to Your Writing Without Sacrificing Clarity
Add Style to Your Writing Without Sacrificing ClarityAdd Style to Your Writing Without Sacrificing Clarity
Add Style to Your Writing Without Sacrificing Clarity
 
Translating Romance Languages into English
Translating Romance Languages into EnglishTranslating Romance Languages into English
Translating Romance Languages into English
 
Plain language and artificial intelligence
Plain language and artificial intelligencePlain language and artificial intelligence
Plain language and artificial intelligence
 
Translatability Issues: Source Clarity & Idiosyncrasies
Translatability Issues: Source Clarity & IdiosyncrasiesTranslatability Issues: Source Clarity & Idiosyncrasies
Translatability Issues: Source Clarity & Idiosyncrasies
 
Do You Speak XML? Part 1
Do You Speak XML? Part 1Do You Speak XML? Part 1
Do You Speak XML? Part 1
 
Do You Speak XML? Part 2
Do You Speak XML? Part 2Do You Speak XML? Part 2
Do You Speak XML? Part 2
 
Teaching The Non-Translation Side of Translation
Teaching The Non-Translation Side of TranslationTeaching The Non-Translation Side of Translation
Teaching The Non-Translation Side of Translation
 
Idioms Under the Microscope
Idioms Under the MicroscopeIdioms Under the Microscope
Idioms Under the Microscope
 
Idiosynchratic constructions in English and Spanish
Idiosynchratic constructions in English and SpanishIdiosynchratic constructions in English and Spanish
Idiosynchratic constructions in English and Spanish
 
Plain Language 2.0
Plain Language 2.0Plain Language 2.0
Plain Language 2.0
 

Recently uploaded

Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 

Recently uploaded (20)

Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 

Xml for Translators