SlideShare una empresa de Scribd logo
1 de 53
Descargar para leer sin conexión
Accessibility in Ebooks
It’s not just ALT text
Laura Brady
ebookcraft 2016
Goals
!  Why
!  How
"  From InDesign
"  After export
I would never not do what
Stevie Wonder says to do
The Statistics
15% of the world’s population uses assistive technology because of a disability
85% of the non-disabled market have a situational disability
Who are you missing?
!  Movement
!  Dyslexia
!  Vision
!  Cognitive
http://www.wired.com/2016/03/internet-looks-like-someone-dyslexia/
“Ensuring that content is
accessible to those with vision,
hearing, physical, and cognitive
disorders positions compatibility
with the next great unknown
product development.”
A11y Quick Start Guide
Usability / Accessibility
Usability issues are speed bumps; accessibility issues are road blocks.
Why
!  Value
!  Agile Content
!  Because
Good for business. Really
[E]ven using an accessible device and an
accessible e-reading software platform, a blind
reader attempting to work with a Kindle e-book
that is anything more than a simple novel will
encounter significant accessibility barriers because
Amazon’s proprietary process of converting the e-
book file from ePub3 format to Kindle format has
scrubbed the file of the meta-data needed by the
blind person’s assistive technology.
https://marketbrief.edweek.org/marketplace-
k-12/30_million_amazon_contract_in_ny_city_
schools_held_up_by_accessibility_concerns/
What?
!  Understand reader’s needs
!  Potential of digital publishing
!  Recognizing your influence
!  QA
Four Principle of A11y
!  Perceivable
!  Operable
!  Understandable
!  Robust
http://webaim.org/articles/pour/
BISG Quickstart Guide
1.  Use HTML5
2.  Use HTML5 headings
3.  Structural Semantics
4.  Navigation
5.  Logical reading order
6.  Separate presentation
from content
7.  Live tables
8.  Markup for decorative
images
9.  Image descriptions
10.  Page numbers
11.  Define languages
12.  Use MathML
13.  Alt access to media
14.  Make interactive
content accessible
15.  Metadata
From the tools we use
!  Structure
!  Semantics
!  Navigation
!  Page list
!  Images / figures
!  Tables
!  What ID won’t do
HTML5 and HTML5 headings
<section epub:type="chapter">
<h1>Chapter 1</h1>
<p>....</p>
<section>
<h2>Sub-section</h2>
<p>....</p>
</section>
</section>
HTML top tips
!  Stop meaningless <div> use
!  Don’t use <span> where <em> <i>
<strong> <b> will do.
<section> – body content
<figure> – secondary content
<figcaption>
<aside> – ancillary content
Deep Navigation
!  Key to easy to use ebooks
for all readers
!  Go deep and use hidden as
required
!  List of figures, illustrations,
tables
! important
Logical Reading Order
!  Main content/secondary
content tagged
!  Lists, tables, code tagged as
such
!  Advancing in the content
doesn’t rely on CSS or scripting
<body>
<section>
<h1>Topic Heading</h1>
<p>This is a paragraph of content about my topic</p>
<p>Here is another paragraph of
content about my topic</p>
<aside>
<p>Here is content that exists as
a margin note in my text.</p>
</aside>
<p>Here is the last paragraph of content
about my topic</p>
</section>
</body>
Articles Panel
Structural Semantics
!  Use a full a set of epub:type
markers as possible
!  These semantics are the
equivalent of visual design
cues for the reading system
“Structure is the elements you
use to craft your EPUB content,
and semantics is the
additional meaning you can layer
on top of those structures to
better indicate what they
represent.”–Matt Garrish
http://www.idpf.org/epub/vocab/structure/
Separate visual style
from content
“Typographic conventions had to
convey meaning in print because
that was all that was available,
and are still useful for sighted
readers, but are the wrong place
now to be carrying meaning.”
– Matt Garish
!  Be aware of colour contrast
(webaim.org/resources/contrastchecker/)
!  Avoid declaring font colour
and size in the CSS
!  Sort out <b>/<strong>,
<em>/<i>

http://html5doctor.com/i-b-em-strong-element/
Tables
“Setting tables as an image
addresses a situational disability
(the inability to view an entire
table at once) by creating
another disability (limited visual
access to the content.”
Decorative Images
<img src=”doodad.jpg" 

role="presentation" 

alt="" />
Image Descriptions
So many options…
Where the image is not put in
context by the surrounding text,
add a description.
1. ALT text
<img src=”watermolecule.jpg”
alt=”A water molecule, composed of two
hydrogen atoms and one oxygen atom.” />
2. Figure/figcaption
<figure role=”group”>
<img src=”watermolecule.jpg” alt=”Figure 1″>
<figcaption>A water molecule is made of two
hydrogen atoms and one oxygen atom. The two
hydrogen atoms are positioned on the oxygen
atom and are separated by approximately 105
degrees, as shown in Figure 1.
</figcaption>
</figure>
3. aria-describedby
<img src=“watermolecule.jpg”
aria-describedby=”watermolecule-desc”
alt=”A water molecule.” />
<aside class=“hidden”
id=“watermolecule-desc”>
<p>A water molecule is made of two
hydrogen atoms and one oxygen atom. The
two hydrogen atoms are positioned on the
oxygen atom and are separated by
approximately 105 degrees.</p>
</aside>
Image Descriptions
!  Context is key
!  Consider your audience
!  Be concise
!  Be objective
!  General to specific
!  Tone & Language
Page List
!  Mark print-equivalent page
breaks
!  One more way to navigate into
the content
!  Be sure to declare dc:source in
the metadata
Language
!  Define the language of the
content and of language shifts
in the content
<span xml:lang="fr" lang="fr">rue
Saint-André-des-Arts</span>
<i xml:lang="fr" lang="fr">C'est
vendredi saint!</i>
A few more best practices
!  Consider EPUB for Education
(EDUPUB)
!  Use MathML
!  Provide alt access to media
!  Make interactive content
accessible
Use accessibility metadata
http://www.idpf.org/accessibility/guidelines/
content/meta/onix.php
Use your tools wisely
!  InDesign needs to be nudged
in many ways. Use it well,
understanding where it fails.
QA and Testing
!  Turn text-to-speech on and see
what happens. You will be
amazed/alarmed/surprised at
what comes out.
!  IBM has an accessibility tester
coming: Blue Mix
“Simply put, it’s difficult to
understand what needs to
happen to make content truly
accessible, in a useful way, until
you have an understanding of
the context in which content will
be used and have tried it
yourself.”–Jean Kaplansky
Opening Doors
C.O.P E Puppies
Bookshare’s list of tools
https://www.bookshare.org/
cms/help-center/reading-tools/
member-preferred-tools
BISG’s Quick Start Guide to
Accessible Publishing
https://www.bisg.org/pre-
order-bisg-quick-start-guide-
accessible-publishing
Diagram Center Top EPUB 3 Tips
http://diagramcenter.org/54-9-
tips-for-creating-accessible-
epub-3-files.html
Apple a11y Resources
http://www.apple.com/
accessibility/resources/
The A11Y Project
http://a11yproject.com/
resources.html
Resources
Thanks!
Twitter: @LauraB7
laura@bradytypesetting.com
!  EPUB Zone Resource Page
http://epubzone.org/resources/accessibility-epub-3-
resources-and-guidance
!  Daisy: news on EPUB & a11y
www.daisy.org/daisy-epub-3-developments
!  Arizona State A11y Lab
https://asunow.asu.edu/20160309-solutions-making-
textbooks-accessible-all

Más contenido relacionado

La actualidad más candente

La actualidad más candente (20)

Beyond The Browser - Creating a RESTful Web Service With WordPress
Beyond The Browser - Creating a RESTful Web Service With WordPressBeyond The Browser - Creating a RESTful Web Service With WordPress
Beyond The Browser - Creating a RESTful Web Service With WordPress
 
Epub ppt
Epub pptEpub ppt
Epub ppt
 
Week 6 Lecture
Week 6 LectureWeek 6 Lecture
Week 6 Lecture
 
109 sem 1_-_kasdorf
109 sem 1_-_kasdorf109 sem 1_-_kasdorf
109 sem 1_-_kasdorf
 
Html for beginners
Html for beginnersHtml for beginners
Html for beginners
 
Html lesson1 5
Html lesson1 5Html lesson1 5
Html lesson1 5
 
How the Web Works Using HTML
How the Web Works Using HTMLHow the Web Works Using HTML
How the Web Works Using HTML
 
JavaScript : A trending scripting language
JavaScript : A trending scripting languageJavaScript : A trending scripting language
JavaScript : A trending scripting language
 
uptu web technology unit 2 html
uptu web technology unit 2 htmluptu web technology unit 2 html
uptu web technology unit 2 html
 
Artistic Web Applications - Week3 - Part 1
Artistic Web Applications - Week3 - Part 1Artistic Web Applications - Week3 - Part 1
Artistic Web Applications - Week3 - Part 1
 
EPUB - a workshop for beginners
EPUB - a workshop for beginnersEPUB - a workshop for beginners
EPUB - a workshop for beginners
 
Intro to HTML
Intro to HTMLIntro to HTML
Intro to HTML
 
Khoa dang (kay)
Khoa dang (kay)Khoa dang (kay)
Khoa dang (kay)
 
Web1O1 - Intro to HTML/CSS
Web1O1 - Intro to HTML/CSSWeb1O1 - Intro to HTML/CSS
Web1O1 - Intro to HTML/CSS
 
What is HTML - An Introduction to HTML (Hypertext Markup Language)
What is HTML - An Introduction to HTML (Hypertext Markup Language)What is HTML - An Introduction to HTML (Hypertext Markup Language)
What is HTML - An Introduction to HTML (Hypertext Markup Language)
 
On Again; Off Again - Benjamin Young - ebookcraft 2017
On Again; Off Again - Benjamin Young - ebookcraft 2017On Again; Off Again - Benjamin Young - ebookcraft 2017
On Again; Off Again - Benjamin Young - ebookcraft 2017
 
Html5
Html5Html5
Html5
 
Ebooks without Vendors: Using Open Source Software to Create and Share Meanin...
Ebooks without Vendors: Using Open Source Software to Create and Share Meanin...Ebooks without Vendors: Using Open Source Software to Create and Share Meanin...
Ebooks without Vendors: Using Open Source Software to Create and Share Meanin...
 
Beyond WP-CONTENT | #WCRaleigh
Beyond WP-CONTENT | #WCRaleighBeyond WP-CONTENT | #WCRaleigh
Beyond WP-CONTENT | #WCRaleigh
 
HTML5
HTML5 HTML5
HTML5
 

Similar a Ebook Accessibility: Why, How, and What For - ebookcraft 2016 - Laura Brady

Introduction to the Semantic Web
Introduction to the Semantic WebIntroduction to the Semantic Web
Introduction to the Semantic Web
liddy
 
Getting Started with Drupal
Getting Started with DrupalGetting Started with Drupal
Getting Started with Drupal
Rachel Vacek
 
Getting Started with Drupal
Getting Started with DrupalGetting Started with Drupal
Getting Started with Drupal
Rachel Vacek
 
Library Quick ‘n’ Dirty Transcript Ashford University Libr.docx
Library Quick ‘n’ Dirty Transcript Ashford University Libr.docxLibrary Quick ‘n’ Dirty Transcript Ashford University Libr.docx
Library Quick ‘n’ Dirty Transcript Ashford University Libr.docx
smile790243
 
Surviving the Zombie Apocalpyse of Connected Devices
Surviving the Zombie Apocalpyse of Connected DevicesSurviving the Zombie Apocalpyse of Connected Devices
Surviving the Zombie Apocalpyse of Connected Devices
Gustaf Nilsson Kotte
 
GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1
Heather Rock
 

Similar a Ebook Accessibility: Why, How, and What For - ebookcraft 2016 - Laura Brady (20)

Jan 8 2014 NISO Webinar: Device to Device: Adaptive Interfaces for Content
Jan 8 2014 NISO Webinar: Device to Device: Adaptive Interfaces for ContentJan 8 2014 NISO Webinar: Device to Device: Adaptive Interfaces for Content
Jan 8 2014 NISO Webinar: Device to Device: Adaptive Interfaces for Content
 
What book and journal publishers need to know to get accessibility right
What book and journal publishers need to know to get accessibility rightWhat book and journal publishers need to know to get accessibility right
What book and journal publishers need to know to get accessibility right
 
HTML5 - An introduction
HTML5 - An introductionHTML5 - An introduction
HTML5 - An introduction
 
Introduction to the Semantic Web
Introduction to the Semantic WebIntroduction to the Semantic Web
Introduction to the Semantic Web
 
Getting Started with Drupal
Getting Started with DrupalGetting Started with Drupal
Getting Started with Drupal
 
Content Management for Publishers
Content Management for PublishersContent Management for Publishers
Content Management for Publishers
 
UNC Chapel Hill 2014 CTC Retreat - Creating epub e books
UNC Chapel Hill 2014 CTC Retreat - Creating epub e booksUNC Chapel Hill 2014 CTC Retreat - Creating epub e books
UNC Chapel Hill 2014 CTC Retreat - Creating epub e books
 
EVOLVE'16 | Maximize | Libby Schaper & Gina Petrucceli | Web Accessibility & AEM
EVOLVE'16 | Maximize | Libby Schaper & Gina Petrucceli | Web Accessibility & AEMEVOLVE'16 | Maximize | Libby Schaper & Gina Petrucceli | Web Accessibility & AEM
EVOLVE'16 | Maximize | Libby Schaper & Gina Petrucceli | Web Accessibility & AEM
 
EVOLVE'16 | Maximize | Gina Petruccelli & Libby Schaper | Web Accessibility &...
EVOLVE'16 | Maximize | Gina Petruccelli & Libby Schaper | Web Accessibility &...EVOLVE'16 | Maximize | Gina Petruccelli & Libby Schaper | Web Accessibility &...
EVOLVE'16 | Maximize | Gina Petruccelli & Libby Schaper | Web Accessibility &...
 
Web Accessibility for HigherEd Content Contributors
Web Accessibility for HigherEd Content ContributorsWeb Accessibility for HigherEd Content Contributors
Web Accessibility for HigherEd Content Contributors
 
Getting Started with Drupal
Getting Started with DrupalGetting Started with Drupal
Getting Started with Drupal
 
Getting Started with Drupal
Getting Started with DrupalGetting Started with Drupal
Getting Started with Drupal
 
Library Quick ‘n’ Dirty Transcript Ashford University Libr.docx
Library Quick ‘n’ Dirty Transcript Ashford University Libr.docxLibrary Quick ‘n’ Dirty Transcript Ashford University Libr.docx
Library Quick ‘n’ Dirty Transcript Ashford University Libr.docx
 
Railsgirls: Where did my HTML and CSS go
Railsgirls: Where did my HTML and CSS goRailsgirls: Where did my HTML and CSS go
Railsgirls: Where did my HTML and CSS go
 
Unit 2 (html)
Unit 2  (html)Unit 2  (html)
Unit 2 (html)
 
Writing Great Alt Text
Writing Great Alt TextWriting Great Alt Text
Writing Great Alt Text
 
flyers_infographics.pdf
flyers_infographics.pdfflyers_infographics.pdf
flyers_infographics.pdf
 
Day of code
Day of codeDay of code
Day of code
 
Surviving the Zombie Apocalpyse of Connected Devices
Surviving the Zombie Apocalpyse of Connected DevicesSurviving the Zombie Apocalpyse of Connected Devices
Surviving the Zombie Apocalpyse of Connected Devices
 
GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1
 

Más de BookNet Canada

Más de BookNet Canada (20)

Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Transcript: New from BookNet Canada for 2024: BNC SalesData and LibraryData -...
Transcript: New from BookNet Canada for 2024: BNC SalesData and LibraryData -...Transcript: New from BookNet Canada for 2024: BNC SalesData and LibraryData -...
Transcript: New from BookNet Canada for 2024: BNC SalesData and LibraryData -...
 
Transcript: Green paths: Learning from publishers’ sustainability journeys - ...
Transcript: Green paths: Learning from publishers’ sustainability journeys - ...Transcript: Green paths: Learning from publishers’ sustainability journeys - ...
Transcript: Green paths: Learning from publishers’ sustainability journeys - ...
 
Green paths: Learning from publishers’ sustainability journeys - Tech Forum 2024
Green paths: Learning from publishers’ sustainability journeys - Tech Forum 2024Green paths: Learning from publishers’ sustainability journeys - Tech Forum 2024
Green paths: Learning from publishers’ sustainability journeys - Tech Forum 2024
 
Transcript: Book industry state of the nation 2024 - Tech Forum 2024
Transcript: Book industry state of the nation 2024 - Tech Forum 2024Transcript: Book industry state of the nation 2024 - Tech Forum 2024
Transcript: Book industry state of the nation 2024 - Tech Forum 2024
 
Book industry state of the nation 2024 - Tech Forum 2024
Book industry state of the nation 2024 - Tech Forum 2024Book industry state of the nation 2024 - Tech Forum 2024
Book industry state of the nation 2024 - Tech Forum 2024
 
Trending now: Book subjects on the move in the Canadian market - Tech Forum 2024
Trending now: Book subjects on the move in the Canadian market - Tech Forum 2024Trending now: Book subjects on the move in the Canadian market - Tech Forum 2024
Trending now: Book subjects on the move in the Canadian market - Tech Forum 2024
 
Transcript: Trending now: Book subjects on the move in the Canadian market - ...
Transcript: Trending now: Book subjects on the move in the Canadian market - ...Transcript: Trending now: Book subjects on the move in the Canadian market - ...
Transcript: Trending now: Book subjects on the move in the Canadian market - ...
 
Transcript: New stores, new views: Booksellers adapting engaging and thriving...
Transcript: New stores, new views: Booksellers adapting engaging and thriving...Transcript: New stores, new views: Booksellers adapting engaging and thriving...
Transcript: New stores, new views: Booksellers adapting engaging and thriving...
 
Show and tell: What’s in your tech stack? - Tech Forum 2023
Show and tell: What’s in your tech stack? - Tech Forum 2023Show and tell: What’s in your tech stack? - Tech Forum 2023
Show and tell: What’s in your tech stack? - Tech Forum 2023
 
Transcript: Show and tell: What’s in your tech stack? - Tech Forum 2023
Transcript: Show and tell: What’s in your tech stack? - Tech Forum 2023Transcript: Show and tell: What’s in your tech stack? - Tech Forum 2023
Transcript: Show and tell: What’s in your tech stack? - Tech Forum 2023
 
Transcript: Redefining the book supply chain: A glimpse into the future - Tec...
Transcript: Redefining the book supply chain: A glimpse into the future - Tec...Transcript: Redefining the book supply chain: A glimpse into the future - Tec...
Transcript: Redefining the book supply chain: A glimpse into the future - Tec...
 
Redefining the book supply chain: A glimpse into the future - Tech Forum 2023
Redefining the book supply chain: A glimpse into the future - Tech Forum 2023Redefining the book supply chain: A glimpse into the future - Tech Forum 2023
Redefining the book supply chain: A glimpse into the future - Tech Forum 2023
 

Último

Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
KarakKing
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdfVishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
ssuserdda66b
 

Último (20)

How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Dyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptxDyslexia AI Workshop for Slideshare.pptx
Dyslexia AI Workshop for Slideshare.pptx
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdfVishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 

Ebook Accessibility: Why, How, and What For - ebookcraft 2016 - Laura Brady

  • 1. Accessibility in Ebooks It’s not just ALT text Laura Brady ebookcraft 2016
  • 2. Goals !  Why !  How "  From InDesign "  After export
  • 3. I would never not do what Stevie Wonder says to do
  • 4. The Statistics 15% of the world’s population uses assistive technology because of a disability 85% of the non-disabled market have a situational disability
  • 5.
  • 6. Who are you missing? !  Movement !  Dyslexia !  Vision !  Cognitive
  • 8. “Ensuring that content is accessible to those with vision, hearing, physical, and cognitive disorders positions compatibility with the next great unknown product development.” A11y Quick Start Guide
  • 9. Usability / Accessibility Usability issues are speed bumps; accessibility issues are road blocks.
  • 10. Why !  Value !  Agile Content !  Because
  • 11.
  • 12. Good for business. Really [E]ven using an accessible device and an accessible e-reading software platform, a blind reader attempting to work with a Kindle e-book that is anything more than a simple novel will encounter significant accessibility barriers because Amazon’s proprietary process of converting the e- book file from ePub3 format to Kindle format has scrubbed the file of the meta-data needed by the blind person’s assistive technology. https://marketbrief.edweek.org/marketplace- k-12/30_million_amazon_contract_in_ny_city_ schools_held_up_by_accessibility_concerns/
  • 13. What? !  Understand reader’s needs !  Potential of digital publishing !  Recognizing your influence !  QA
  • 14. Four Principle of A11y !  Perceivable !  Operable !  Understandable !  Robust http://webaim.org/articles/pour/
  • 15. BISG Quickstart Guide 1.  Use HTML5 2.  Use HTML5 headings 3.  Structural Semantics 4.  Navigation 5.  Logical reading order 6.  Separate presentation from content 7.  Live tables 8.  Markup for decorative images 9.  Image descriptions 10.  Page numbers 11.  Define languages 12.  Use MathML 13.  Alt access to media 14.  Make interactive content accessible 15.  Metadata
  • 16. From the tools we use !  Structure !  Semantics !  Navigation !  Page list !  Images / figures !  Tables !  What ID won’t do
  • 17. HTML5 and HTML5 headings <section epub:type="chapter"> <h1>Chapter 1</h1> <p>....</p> <section> <h2>Sub-section</h2> <p>....</p> </section> </section>
  • 18. HTML top tips !  Stop meaningless <div> use !  Don’t use <span> where <em> <i> <strong> <b> will do. <section> – body content <figure> – secondary content <figcaption> <aside> – ancillary content
  • 19.
  • 20. Deep Navigation !  Key to easy to use ebooks for all readers !  Go deep and use hidden as required !  List of figures, illustrations, tables ! important
  • 21.
  • 22.
  • 23. Logical Reading Order !  Main content/secondary content tagged !  Lists, tables, code tagged as such !  Advancing in the content doesn’t rely on CSS or scripting
  • 24. <body> <section> <h1>Topic Heading</h1> <p>This is a paragraph of content about my topic</p> <p>Here is another paragraph of content about my topic</p> <aside> <p>Here is content that exists as a margin note in my text.</p> </aside> <p>Here is the last paragraph of content about my topic</p> </section> </body>
  • 25.
  • 27. Structural Semantics !  Use a full a set of epub:type markers as possible !  These semantics are the equivalent of visual design cues for the reading system
  • 28. “Structure is the elements you use to craft your EPUB content, and semantics is the additional meaning you can layer on top of those structures to better indicate what they represent.”–Matt Garrish
  • 30.
  • 31. Separate visual style from content “Typographic conventions had to convey meaning in print because that was all that was available, and are still useful for sighted readers, but are the wrong place now to be carrying meaning.” – Matt Garish
  • 32. !  Be aware of colour contrast (webaim.org/resources/contrastchecker/) !  Avoid declaring font colour and size in the CSS !  Sort out <b>/<strong>, <em>/<i>
 http://html5doctor.com/i-b-em-strong-element/
  • 33. Tables “Setting tables as an image addresses a situational disability (the inability to view an entire table at once) by creating another disability (limited visual access to the content.”
  • 34. Decorative Images <img src=”doodad.jpg" 
 role="presentation" 
 alt="" />
  • 36. So many options… Where the image is not put in context by the surrounding text, add a description.
  • 37. 1. ALT text <img src=”watermolecule.jpg” alt=”A water molecule, composed of two hydrogen atoms and one oxygen atom.” />
  • 38. 2. Figure/figcaption <figure role=”group”> <img src=”watermolecule.jpg” alt=”Figure 1″> <figcaption>A water molecule is made of two hydrogen atoms and one oxygen atom. The two hydrogen atoms are positioned on the oxygen atom and are separated by approximately 105 degrees, as shown in Figure 1. </figcaption> </figure>
  • 39. 3. aria-describedby <img src=“watermolecule.jpg” aria-describedby=”watermolecule-desc” alt=”A water molecule.” /> <aside class=“hidden” id=“watermolecule-desc”> <p>A water molecule is made of two hydrogen atoms and one oxygen atom. The two hydrogen atoms are positioned on the oxygen atom and are separated by approximately 105 degrees.</p> </aside>
  • 40. Image Descriptions !  Context is key !  Consider your audience !  Be concise !  Be objective !  General to specific !  Tone & Language
  • 41. Page List !  Mark print-equivalent page breaks !  One more way to navigate into the content !  Be sure to declare dc:source in the metadata
  • 42.
  • 43. Language !  Define the language of the content and of language shifts in the content <span xml:lang="fr" lang="fr">rue Saint-André-des-Arts</span> <i xml:lang="fr" lang="fr">C'est vendredi saint!</i>
  • 44. A few more best practices !  Consider EPUB for Education (EDUPUB) !  Use MathML !  Provide alt access to media !  Make interactive content accessible
  • 46. Use your tools wisely !  InDesign needs to be nudged in many ways. Use it well, understanding where it fails.
  • 47. QA and Testing !  Turn text-to-speech on and see what happens. You will be amazed/alarmed/surprised at what comes out. !  IBM has an accessibility tester coming: Blue Mix
  • 48. “Simply put, it’s difficult to understand what needs to happen to make content truly accessible, in a useful way, until you have an understanding of the context in which content will be used and have tried it yourself.”–Jean Kaplansky
  • 49.
  • 51.
  • 52. Bookshare’s list of tools https://www.bookshare.org/ cms/help-center/reading-tools/ member-preferred-tools BISG’s Quick Start Guide to Accessible Publishing https://www.bisg.org/pre- order-bisg-quick-start-guide- accessible-publishing Diagram Center Top EPUB 3 Tips http://diagramcenter.org/54-9- tips-for-creating-accessible- epub-3-files.html Apple a11y Resources http://www.apple.com/ accessibility/resources/ The A11Y Project http://a11yproject.com/ resources.html Resources
  • 53. Thanks! Twitter: @LauraB7 laura@bradytypesetting.com !  EPUB Zone Resource Page http://epubzone.org/resources/accessibility-epub-3- resources-and-guidance !  Daisy: news on EPUB & a11y www.daisy.org/daisy-epub-3-developments !  Arizona State A11y Lab https://asunow.asu.edu/20160309-solutions-making- textbooks-accessible-all