SlideShare une entreprise Scribd logo
1  sur  39
Télécharger pour lire hors ligne
Developing DITA Maps


                  Jen Linton
                  Senior Consultant
                  Comtech Services, Inc.
                  jennifer.linton@comtech-serv.com

© 2006 Comtech Services, Inc.
Agenda
•   Purpose of DITA maps
•   DITA map structure and elements
•   DITA map attributes
•   Extra DITA map features
•   Relationship tables
•   Questions




               © 2006 Comtech Services, Inc.   2
DITA map purpose
• DITA maps provide a mechanism for ordering
  topics and creating a topic hierarchy.
• Because DITA maps consist of lists of
  references to topics, you can reorganize the
  content in a deliverable simply by changing
  the order of the topic references.
• You can create different maps referencing
  the same source topics to create two
  deliverables to meet different users needs.


               © 2006 Comtech Services, Inc.     3
You can use DITA maps to
• plan your project
  • Create a DITA map before you begin writing to help plan
    the topics you need for your deliverable.
• build your deliverable
  • Referencing topics into a hierarchy, you can create a
    deliverable to produce to different media.
• build sections of your deliverable
  • Referencing topics in smaller maps, and using the smaller
    map in a master map allows you to build sections of your
    deliverable.
• customize your deliverable
  • Using metadata attributes in your DITA map allows you to
    create special deliverables for different users and different
    media.


                    © 2006 Comtech Services, Inc.                   4
What is a DITA map?


                       Topics




 Quick Reference
       Map
                                         User Guide Map


               © 2006 Comtech Services, Inc.              5
A DITA map is …
 • an XML file created to
   build your deliverable
   hierarchy
 • Because you can
   nest the topic folders
   to any level, you
   should position the
   map in a higher level
   folder that contains all
   the topics. This folder                          Uses a
   organization ensures
                                                   .ditamap
   that processing runs
   without errors.                                 extension


                   © 2006 Comtech Services, Inc.        6
A DITA map …
• consists of references to topics organized
  into hierarchies and tables
                            DITA map
                                  topic reference
                                         topic reference
                                                topic reference
                                         topic reference
                                  topic reference
                                         topic reference
                                  topic reference
                                  topic reference

               © 2006 Comtech Services, Inc.               7
Map structure and elements
• Because a DITA map
  is an XML file, it starts     <?xml version="1.0" encoding="utf-8"?>
  with an XML                   <!DOCTYPE map PUBLIC "-//OASIS//DTD
                                DITA Map//EN"
  declaration and a DTD         "../../dtd/map.dtd">
  declaration                   <map>

• Start with the basic                     <topicref></topicref>

  map structure using                      <topicref></topicref>

  the <map> and                            <topicref></topicref>
  <topicref> elements           </map>




                   © 2006 Comtech Services, Inc.                    8
Adding map element attributes
• Add a DITA map title and ID attribute

 <map title=“DITA User Guide” id=“DITAuserguide”>
          <topicref></topicref>
          <topicref></topicref>
          <topicref></topicref>
 </map>




                       © 2006 Comtech Services, Inc.   9
Adding the href attribute
• The href attribute is the most important part of a
  DITA map. The href attribute points to your
  topics you want to reference. They can include
  DITA topics, XML files, HTML files, PDFs, and
  more.
• Add an href attribute to each topicref element
   <map title=“DITA User Guide” id=“DITAuserguide”>
            <topicref href=“topics/aboutDITAtopics.dita”> </topicref>
            <topicref href=“processing/usingDITAtoolkit.xml”></topicref>
   </map>



                       © 2006 Comtech Services, Inc.                       10
Building the hierarchy
• Nest <topicref> elements within each other to
  create the hierarchy for your deliverable
 <map title=“DITA User Guide” id=“DITAuserguide”>
          <topicref href=“topics/aboutDITAtopics.dita”>
                    <topicref href=“processing/usingDITAtoolkit.xml”>
                    </topicref>
          </topicref>
 </map>




                     © 2006 Comtech Services, Inc.                      11
DITA map attributes
•   Type attribute
•   Format attribute
•   Scope attribute
•   Collection-type attribute
•   Linking attribute
•   Processing attributes (toc, print)




                  © 2006 Comtech Services, Inc.   12
Type attribute
• The type attribute allows you to indicate what
  type of topic you are referencing.
• The values you can use are concept, task,
  reference, topic, figure, table, other, and more.
  <map title=“DITA User Guide” id=“DITAuserguide”>
           <topicref href=“topics/aboutDITAtopics.dita” type=“concept”>
                     <topicref href=“processing/usingDITAtoolkit.xml”
                         type=“task”>
                     </topicref>
           </topicref>
  </map>




                       © 2006 Comtech Services, Inc.                      13
Format attribute
• The format attribute allows you to indicate what
  the format is of your topic reference.
• The values you can use are dita, html, xml, pdf,
  zip, and any other file format you may reference.
 <map title=“DITA User Guide” id=“DITAuserguide”>
          <topicref href=“topics/aboutDITAtopics.dita” type=“concept”
             format=“dita”>
                    <topicref href=“processing/usingDITAtoolkit.xml”
                        type=“task” format=“xml”>
                    </topicref>
          </topicref>
          <topicref href=“http://www.comtech-serv.com”
             format=“html”></topicref>
 </map>

                      © 2006 Comtech Services, Inc.                     14
Scope attribute
• The scope attribute
  allows you to indicate         <map title=“DITA User Guide”
  where the file is located       id=“DITAuserguide”>
  that you are referencing.        <topicref href=“topics/aboutDITAtopics.dita”
                                      type=“concept” format=“dita” scope=“local”>
  Use the scope attribute                 <topicref
  if you have common                        href=“processing/usingDITAtoolkit.xml”
                                            type=“task” format=“xml” scope=“peer”>
  topics used in many                       </topicref>
  deliverables such as             </topicref>
                                   <topicref href=“http://www.comtech-serv.com”
  boiler plate information.           format=“html” scope=“external”></topicref>
                                 </map>
• The values you can use
  are local, peer, or
  external.

                    © 2006 Comtech Services, Inc.                             15
Collection-type attribute
• Use the collection-type
                                <map title=“DITA User Guide”
  attribute to create            id=“DITAuserguide”>
  relationships among             <topicref href=“topics/aboutDITAtopics.dita”
  topics that are closely            type=“concept” format=“dita” scope=“local”
  associated.                        collection-type=“family”>
                                         <topicref
                                           href=“processing/usingDITAtoolkit.xml”
• The values you can use                   type=“task” format=“xml” scope=“peer”>
  are family, sequence,                    </topicref>
  unordered, or choice.                 <topicref
                                           href=“processing/processingDITA.dita”
• In this example, the                     type=“task” format=“dita”
  usingDITAtoolkit.xml                     scope=“local”>
  topic links to the                       </topicref>
                                  </topicref>
  processingDITA.dita             <topicref href=“http://www.comtech-serv.com”
  topic.                             format=“html” scope=“external”></topicref>
                                </map>


                   © 2006 Comtech Services, Inc.                             16
Collection-type family
 • If you set the attribute collection-type=“family”, sibling
   topics will link to other siblings.




                    © 2006 Comtech Services, Inc.               17
Collection-type sequence
• If you set the attribute collection-type=“sequence”,
  siblings topics will link to previous and next topics.




                  © 2006 Comtech Services, Inc.            18
Collection-type sequence
• Using the collection-type=“sequence” also arranges links
  to children topic in order in the parent topic.




                 © 2006 Comtech Services, Inc.           19
Linking attribute
• Use the linking attribute to
  control how links perform            <map title=“DITA User Guide”
  among topics. You can                  id=“DITAuserguide”>
                                         <topicref href=“topics/aboutDITAtopics.dita”
  create one-way links using                type=“concept” format=“dita” scope=“local”
  the linking attribute.                    collection-type=“family”>
                                                <topicref
•   The values you can use are                    href=“processing/usingDITAtoolkit.xml”
    targetonly, sourceonly,                       type=“task” format=“xml” scope=“peer”>
    normal, or none.                              </topicref>
•   In this example, the                      <topicref
    processingDITA.dita topic                     href=“processing/processingDITA.dita”
                                                  type=“task” format=“dita”
    can only be linked to by                      scope=“local” linking=“targetonly”>
    usingDITAtoolkit.xml and                      </topicref>
    doesn’t contain a link to the        </topicref>
    usingDITAtoolkit.xml.                <topicref href=“http://www.comtech-serv.com”
                                            format=“html” scope=“external”></topicref>
                                       </map>


                          © 2006 Comtech Services, Inc.                             20
Processing attributes
•   Use the toc and print attribute     <map title=“DITA User Guide”
    to control what topics you want       id=“DITAuserguide”>
    to include in the table of            <topicref href=“topics/aboutDITAtopics.dita”
    contents and what topics you             type=“concept” format=“dita” scope=“local”
    want to deliver to a print or            collection-type=“family” print=“yes”>
    PDF media.
                                                 <topicref
•   The values you can use for                     href=“processing/usingDITAtoolkit.xml”
    each are yes or no.                            type=“task” format=“xml” scope=“peer”>
                                                   </topicref>
•   In this example, the
    www.comtech-serv.com topic                 <topicref
    reference will not be included                 href=“processing/processingDITA.dita”
    in the table of contents and the               type=“task” format=“dita”
    first three topic references will              scope=“local” linking=“targetonly”>
    be used in the print output                    </topicref>
    also. The first three topic           </topicref>
    references are assigned the           <topicref href=“http://www.comtech-serv.com”
    print attribute because you set          format=“html” scope=“external”
    on the parent allowing the child         toc=“no”></topicref>
    attributes to inherit the value.    </map>

                           © 2006 Comtech Services, Inc.                             21
Adding a topicgroup element
• Add a <topicgroup> element to create a
  collection of topic references that you want to
  inherit a particular attribute value.
• In this example, neither the aboutDITAtopics.dita
  topic nor the usingDITAtoolkit.xml topic will be
  included in the table of contents.
 <map title=“DITA User Guide” id=“DITAuserguide”>
      <topicgroup toc=“no”>
           <topicref href=“topics/aboutDITAtopics.dita”></topicref>
           <topicref href=“processing/usingDITAtoolkit.xml”></topicref>
      </topicgroup>
 </map>




                         © 2006 Comtech Services, Inc.                    22
Adding a topichead element
• Add a <topichead> element to provide a heading to a group of
  topic references without needing to reference an entire topic.
• A topic heading element doesn’t require an href attribute.
• A topic heading element does require a navtitle attribute.
• You can also use the locktitle attribute to ensure the navtitle is
  used in your table of contents. You can use navtitle and
  locktitle on each topic reference to create an alternative title to
  the one provided in your topic.
  <map title=“DITA User Guide” id=“DITAuserguide”>
       <topichead navtitle=“Introduction to DITA” locktitle=“yes”>
            <topicref href=“topics/aboutDITAtopics.dita”></topicref>
            <topicref href=“processing/usingDITAtoolkit.xml”></topicref>
       </topichead>
  </map>


                          © 2006 Comtech Services, Inc.                    23
What is a relationship table?
• Using columns and rows, a relationship table
  outlines the relationships or links among topics

• Relationship tables define links among topics
  that are not related by hierarchical, sequential,
  or family links in the hierarchical part of the DITA
  map




                © 2006 Comtech Services, Inc.        24
Relationship table specifics
• Relationship tables are created in DITA maps
• Each row represents a relationship, each cell
  represents a participant in the relationship




               © 2006 Comtech Services, Inc.      25
A visual representation
• Each topic reference in a cell links to the topic
  references in all the other cells in the same row

   CONCEPT                            TASK               REFERENCE
  aboutDITAtopics.dita                                       glossary.dita


    aboutDITA.dita              processingDITA.dita          glossary.dita
                                                              errors.dita

                                usingDITAtoolkit.dita        errors.dita
                                                         www.comtech-serv.dita




                         © 2006 Comtech Services, Inc.                       26
Starting a relationship table
• Add a reltable element to a DITA map
• Each reltable must have at least one row


           <map>
                 <reltable>
                            <relrow>
                            </relrow>
                 </reltable>
           </map>

               © 2006 Comtech Services, Inc.   27
Add the table header elements
• Add the relheader and relcolspec elements to
  assign column headings
• The relheader element contains relcolspec
  elements that define a column for each
  information type <reltable>
                                  <relheader>
                                               <relcolspec>
                                               </relcolspec>
                                  </relheader>
                       </reltable>

               © 2006 Comtech Services, Inc.                   28
Add the table header values
• Set the type attribute on the relcolspec elements
  to identify the column subject

       <relheader>
             <relcolspec type=“concept”>
             </relcolspec>
             <relcolspec type=“task”>
             </relcolspec>
             <relcolspec type=“reference”>
             </relcolspec>
       </relheader>

                © 2006 Comtech Services, Inc.     29
Add table rows
• In the first relrow
  element, add three                  <relrow>
  relcell elements. The                      <relcell>
  three element                              </relcell>
  containers define the                      <relcell>
  next single row of the                     </relcell>
  table.                                     <relcell>
                                             </relcell>
                                      </relrow>




                © 2006 Comtech Services, Inc.             30
Add topic references
• Relcell – add topics to each relcell. Topic references
  may include tasks, concepts, references, or other types
  of topics.
• Add concept topic references (<topicref>) inside the first
  relcell element. Tasks go in the second relcell element,
  and references go in the third relcell element.

 <relrow>
        <relcell>topicref concepts </relcell>
        <relcell>topicref tasks </relcell>
        <relcell>topicref references </relcell>
 </relrow>

                   © 2006 Comtech Services, Inc.           31
More rows = more relationships
• Create additional <relrow> elements with
  <relcell> and <topicref>s to show more
  relationships among topics
           <relrow>
                   <relcell>topicref concepts </relcell>
                   <relcell>topicref tasks </relcell>
                   <relcell>topicref references </relcell>
           </relrow>
           <relrow>
                   <relcell>topicref concepts </relcell>
                   <relcell>topicref tasks </relcell>
                   <relcell>topicref references </relcell>
           </relrow>

                 © 2006 Comtech Services, Inc.               32
Merging rows
  • If there are tasks that share the same related concepts
    and related reference topics, they can be considered
    part of the same pattern and stored in a single row

                                                      task1 and task2
<relrow>                                              both link to this
                                                      concept and this
       <relcell>topicref concept </relcell>           reference

       <relcell>     topicref task1
                     topicref task2
       </relcell>
       <relcell>topicref reference </relcell>
</relrow>

                      © 2006 Comtech Services, Inc.                 33
Simple relationship table
<map>
<reltable>
    <relheader>                                        A
            <relcolspec type="concept"/>
            <relcolspec type="task"/>
                                                               links to B, C1, C2
            <relcolspec type="reference"/>
    </relheader>                                       B
    <relrow>                                                   links to A, C1, C2
            <relcell>
                       <topicref href="A.dita"/>
            </relcell>
                                                       C1, C2
            <relcell>                                      link to A, B
                       <topicref href="B.dita"/>
            </relcell>
            <relcell>                                     concept         task      reference
                       <topicref href="C1.dita"/>
                       <topicref href="C2.dita"/>
            </relcell>                                A               B             C1
    </relrow>                                                                       C2
</reltable>
</map>


                               © 2006 Comtech Services, Inc.                              34
Grouping topics
   • Add a topicgroup element to apply relationships among
     topics in the same cell.
   • If you want to show a relationship between two topics in
     the same column, use the topicgroup element and set its
     collection-type=“family”
<relrow>
                                                         These two tasks link
        <relcell>topicref concept </relcell>             to each other.
        <relcell><topicgroup collection-type=“family”>
        <topicref href=“settingupdependencies.dita”></topicref><topicref
        href=“modifyingdependencies.dita”></topicref></topicgroup>
        </relcell>
        <relcell>topicref reference </relcell>
</relrow>

                         © 2006 Comtech Services, Inc.                     35
One-way relationships
• Add the linking attribute to topic references you
  want to have only one-way linking
• Set the linking=“sourceonly” or
  linking=“targetonly” to customize your topic
  linking relationships                          projectplanning links
                                                         to glossary, but
                                                         glossary does not
    <relrow>                                             link back to
            <relcell></relcell>                          projectplanning
            <relcell><topicref href=“projectplanning.dita”
            linking=“sourceonly”></topicref></relcell>
            <relcell>
                    <topicref href=“glossary.dita”></topicref>
            </relcell>
    </relrow>

                         © 2006 Comtech Services, Inc.                 36
DITA map benefits
• In DITA, your deliverable isn’t tied to the structure you author the
  topics in. You can
  • place topics in more than one position in a DITA map. For
     example, a task can occur in more than one place in a task flow.
  • create solutions-oriented maps that answer the question "how do
     these products work together?" You can also create task-oriented
     maps to answer the question "how do I accomplish my goals?"
     And, you can create feature-oriented maps to answer the question
     "what does this product do?"
  • create maps to deliver information to specific audiences
  • create hierarchies of topics depending on the way you format your
     output
  • include topics in your navigation from different information sets,
     such as external web sites and other content your staff or another
     department may have created


                      © 2006 Comtech Services, Inc.                 37
Helpful resources
•   www.comtech-serv.com
    • Order the DITA User Guide
    • DITA map articles
    • Additional articles and links
•   dita.xml.org
    • Collections of resources
    • Ideas to help you get started
    • Places for you to add your own DITA ideas
•   xml.coverpages.org/dita.html
•   sourceforge.net/projects/dita-ot
•   www-128.ibm.com/developerworks/xml/library/x-dita1/
•   www.oasis-
    open.org/committees/tc_home.php?wg_abbrev=dita



                      © 2006 Comtech Services, Inc.       38
Questions




        © 2006 Comtech Services, Inc.   39

Contenu connexe

En vedette

Case Study: Serving Authors' Needs in a Brave New DITA World
Case Study: Serving Authors' Needs in a Brave New DITA WorldCase Study: Serving Authors' Needs in a Brave New DITA World
Case Study: Serving Authors' Needs in a Brave New DITA WorldJulie Atkins
 
Driving DITA off the Map
Driving DITA off the MapDriving DITA off the Map
Driving DITA off the MapJang F.M. Graat
 
Two to Tango - Agile Meets DITA
Two to Tango - Agile Meets DITATwo to Tango - Agile Meets DITA
Two to Tango - Agile Meets DITANabayan Roy
 
Short Descriptions Shouldn't Be a Tall Order: Writing Effective Short Descrip...
Short Descriptions Shouldn't Be a Tall Order: Writing Effective Short Descrip...Short Descriptions Shouldn't Be a Tall Order: Writing Effective Short Descrip...
Short Descriptions Shouldn't Be a Tall Order: Writing Effective Short Descrip...IXIASOFT
 
Beyond the Book and the Class: Using DITA for Training & Support
Beyond the Book and the Class: Using DITA for Training & SupportBeyond the Book and the Class: Using DITA for Training & Support
Beyond the Book and the Class: Using DITA for Training & SupportLasselle-Ramsay
 
English Parts Of Speech
English Parts Of SpeechEnglish Parts Of Speech
English Parts Of Speechguesta684c8b
 

En vedette (7)

Case Study: Serving Authors' Needs in a Brave New DITA World
Case Study: Serving Authors' Needs in a Brave New DITA WorldCase Study: Serving Authors' Needs in a Brave New DITA World
Case Study: Serving Authors' Needs in a Brave New DITA World
 
Driving DITA off the Map
Driving DITA off the MapDriving DITA off the Map
Driving DITA off the Map
 
Two to Tango - Agile Meets DITA
Two to Tango - Agile Meets DITATwo to Tango - Agile Meets DITA
Two to Tango - Agile Meets DITA
 
Short Descriptions Shouldn't Be a Tall Order: Writing Effective Short Descrip...
Short Descriptions Shouldn't Be a Tall Order: Writing Effective Short Descrip...Short Descriptions Shouldn't Be a Tall Order: Writing Effective Short Descrip...
Short Descriptions Shouldn't Be a Tall Order: Writing Effective Short Descrip...
 
Beyond the Book and the Class: Using DITA for Training & Support
Beyond the Book and the Class: Using DITA for Training & SupportBeyond the Book and the Class: Using DITA for Training & Support
Beyond the Book and the Class: Using DITA for Training & Support
 
Brain Anatomy
Brain AnatomyBrain Anatomy
Brain Anatomy
 
English Parts Of Speech
English Parts Of SpeechEnglish Parts Of Speech
English Parts Of Speech
 

Similaire à Developing dita maps

Introduction To Information Modeling With DITA
Introduction To Information Modeling With DITAIntroduction To Information Modeling With DITA
Introduction To Information Modeling With DITAScott Abel
 
How DITA Got Her Groove Back: Going Mapless with Don Day
How DITA Got Her Groove Back: Going Mapless with Don DayHow DITA Got Her Groove Back: Going Mapless with Don Day
How DITA Got Her Groove Back: Going Mapless with Don DayInformation Development World
 
RELAX NG to DTD and XSD Using the Open Toolkit
RELAX NG to DTD and XSD Using the Open ToolkitRELAX NG to DTD and XSD Using the Open Toolkit
RELAX NG to DTD and XSD Using the Open ToolkitContrext Solutions
 
Optimizing Content Reuse with DITA - LavaCon Webinar with Keith Schengili-Rob...
Optimizing Content Reuse with DITA - LavaCon Webinar with Keith Schengili-Rob...Optimizing Content Reuse with DITA - LavaCon Webinar with Keith Schengili-Rob...
Optimizing Content Reuse with DITA - LavaCon Webinar with Keith Schengili-Rob...IXIASOFT
 
DITA-Workshop on Saturday 5 May 2018 at Pune
DITA-Workshop on Saturday 5 May 2018 at PuneDITA-Workshop on Saturday 5 May 2018 at Pune
DITA-Workshop on Saturday 5 May 2018 at PuneAmit Siddhartha
 
Reports and DITA Metrics IXIASOFT User Conference 2016
Reports and DITA Metrics IXIASOFT User Conference 2016Reports and DITA Metrics IXIASOFT User Conference 2016
Reports and DITA Metrics IXIASOFT User Conference 2016IXIASOFT
 
TC Dojo Open Session: Are You Getting the Most Out of DITA Content Reuse?
TC Dojo Open Session: Are You Getting the Most Out of DITA Content Reuse? TC Dojo Open Session: Are You Getting the Most Out of DITA Content Reuse?
TC Dojo Open Session: Are You Getting the Most Out of DITA Content Reuse? IXIASOFT
 
DITA Quick Start for Authors - Part I
DITA Quick Start for Authors - Part IDITA Quick Start for Authors - Part I
DITA Quick Start for Authors - Part ISuite Solutions
 
Atlanta Drupal User Group (ADUG)
Atlanta Drupal User Group (ADUG) Atlanta Drupal User Group (ADUG)
Atlanta Drupal User Group (ADUG) Mediacurrent
 
Optimizing Content Reuse with DITA
Optimizing Content Reuse with DITAOptimizing Content Reuse with DITA
Optimizing Content Reuse with DITAIXIASOFT
 
How to write in DITA
How to write in DITAHow to write in DITA
How to write in DITAAnindita Basu
 
PSD to Drupal - Introductory Drupal Theming
PSD to Drupal - Introductory Drupal ThemingPSD to Drupal - Introductory Drupal Theming
PSD to Drupal - Introductory Drupal Themingsheenadonnelly
 
Improving the mobile learning experience using DITA
Improving the mobile learning experience using DITAImproving the mobile learning experience using DITA
Improving the mobile learning experience using DITAMark Poston
 
DITA 1.3: What's New and Different
DITA 1.3: What's New and DifferentDITA 1.3: What's New and Different
DITA 1.3: What's New and Differentdclsocialmedia
 
What “Model” DITA Specializations Can Teach About Information Modelinc
What “Model” DITA Specializations Can Teach About Information ModelincWhat “Model” DITA Specializations Can Teach About Information Modelinc
What “Model” DITA Specializations Can Teach About Information ModelincDon Day
 
Managing Deliverable-Specific Link Anchors: New Suggested Best Practice for Keys
Managing Deliverable-Specific Link Anchors: New Suggested Best Practice for KeysManaging Deliverable-Specific Link Anchors: New Suggested Best Practice for Keys
Managing Deliverable-Specific Link Anchors: New Suggested Best Practice for Keysdclsocialmedia
 
Let's dig into the Omega Theme!
Let's dig into the Omega Theme!Let's dig into the Omega Theme!
Let's dig into the Omega Theme!Mediacurrent
 
Software Development: Beyond Training wheels
Software Development: Beyond Training wheelsSoftware Development: Beyond Training wheels
Software Development: Beyond Training wheelsNaveenkumar Muguda
 

Similaire à Developing dita maps (20)

Introduction To Information Modeling With DITA
Introduction To Information Modeling With DITAIntroduction To Information Modeling With DITA
Introduction To Information Modeling With DITA
 
How DITA Got Her Groove Back: Going Mapless with Don Day
How DITA Got Her Groove Back: Going Mapless with Don DayHow DITA Got Her Groove Back: Going Mapless with Don Day
How DITA Got Her Groove Back: Going Mapless with Don Day
 
RELAX NG to DTD and XSD Using the Open Toolkit
RELAX NG to DTD and XSD Using the Open ToolkitRELAX NG to DTD and XSD Using the Open Toolkit
RELAX NG to DTD and XSD Using the Open Toolkit
 
Optimizing Content Reuse with DITA - LavaCon Webinar with Keith Schengili-Rob...
Optimizing Content Reuse with DITA - LavaCon Webinar with Keith Schengili-Rob...Optimizing Content Reuse with DITA - LavaCon Webinar with Keith Schengili-Rob...
Optimizing Content Reuse with DITA - LavaCon Webinar with Keith Schengili-Rob...
 
DITA-Workshop on Saturday 5 May 2018 at Pune
DITA-Workshop on Saturday 5 May 2018 at PuneDITA-Workshop on Saturday 5 May 2018 at Pune
DITA-Workshop on Saturday 5 May 2018 at Pune
 
Reports and DITA Metrics IXIASOFT User Conference 2016
Reports and DITA Metrics IXIASOFT User Conference 2016Reports and DITA Metrics IXIASOFT User Conference 2016
Reports and DITA Metrics IXIASOFT User Conference 2016
 
TC Dojo Open Session: Are You Getting the Most Out of DITA Content Reuse?
TC Dojo Open Session: Are You Getting the Most Out of DITA Content Reuse? TC Dojo Open Session: Are You Getting the Most Out of DITA Content Reuse?
TC Dojo Open Session: Are You Getting the Most Out of DITA Content Reuse?
 
DITA Quick Start for Authors - Part I
DITA Quick Start for Authors - Part IDITA Quick Start for Authors - Part I
DITA Quick Start for Authors - Part I
 
Atlanta Drupal User Group (ADUG)
Atlanta Drupal User Group (ADUG) Atlanta Drupal User Group (ADUG)
Atlanta Drupal User Group (ADUG)
 
Optimizing Content Reuse with DITA
Optimizing Content Reuse with DITAOptimizing Content Reuse with DITA
Optimizing Content Reuse with DITA
 
How to write in DITA
How to write in DITAHow to write in DITA
How to write in DITA
 
PSD to Drupal - Introductory Drupal Theming
PSD to Drupal - Introductory Drupal ThemingPSD to Drupal - Introductory Drupal Theming
PSD to Drupal - Introductory Drupal Theming
 
Introduction to DITA
Introduction to DITAIntroduction to DITA
Introduction to DITA
 
Improving the mobile learning experience using DITA
Improving the mobile learning experience using DITAImproving the mobile learning experience using DITA
Improving the mobile learning experience using DITA
 
TWC 545 Presentation-DITA
TWC 545 Presentation-DITATWC 545 Presentation-DITA
TWC 545 Presentation-DITA
 
DITA 1.3: What's New and Different
DITA 1.3: What's New and DifferentDITA 1.3: What's New and Different
DITA 1.3: What's New and Different
 
What “Model” DITA Specializations Can Teach About Information Modelinc
What “Model” DITA Specializations Can Teach About Information ModelincWhat “Model” DITA Specializations Can Teach About Information Modelinc
What “Model” DITA Specializations Can Teach About Information Modelinc
 
Managing Deliverable-Specific Link Anchors: New Suggested Best Practice for Keys
Managing Deliverable-Specific Link Anchors: New Suggested Best Practice for KeysManaging Deliverable-Specific Link Anchors: New Suggested Best Practice for Keys
Managing Deliverable-Specific Link Anchors: New Suggested Best Practice for Keys
 
Let's dig into the Omega Theme!
Let's dig into the Omega Theme!Let's dig into the Omega Theme!
Let's dig into the Omega Theme!
 
Software Development: Beyond Training wheels
Software Development: Beyond Training wheelsSoftware Development: Beyond Training wheels
Software Development: Beyond Training wheels
 

Dernier

SIKP311 Sikolohiyang Pilipino - Ginhawa.pptx
SIKP311 Sikolohiyang Pilipino - Ginhawa.pptxSIKP311 Sikolohiyang Pilipino - Ginhawa.pptx
SIKP311 Sikolohiyang Pilipino - Ginhawa.pptxStephenMino
 
Call Girls In Mumbai Just Genuine Call ☎ 7738596112✅ Call Girl Andheri East G...
Call Girls In Mumbai Just Genuine Call ☎ 7738596112✅ Call Girl Andheri East G...Call Girls In Mumbai Just Genuine Call ☎ 7738596112✅ Call Girl Andheri East G...
Call Girls In Mumbai Just Genuine Call ☎ 7738596112✅ Call Girl Andheri East G...mitaliverma221
 
WOMEN EMPOWERMENT women empowerment.pptx
WOMEN EMPOWERMENT women empowerment.pptxWOMEN EMPOWERMENT women empowerment.pptx
WOMEN EMPOWERMENT women empowerment.pptxpadhand000
 
February 2024 Recommendations for newsletter
February 2024 Recommendations for newsletterFebruary 2024 Recommendations for newsletter
February 2024 Recommendations for newsletterssuserdfec6a
 
March 2023 Recommendations for newsletter
March 2023 Recommendations for newsletterMarch 2023 Recommendations for newsletter
March 2023 Recommendations for newsletterssuserdfec6a
 
the Husband rolesBrown Aesthetic Cute Group Project Presentation
the Husband rolesBrown Aesthetic Cute Group Project Presentationthe Husband rolesBrown Aesthetic Cute Group Project Presentation
the Husband rolesBrown Aesthetic Cute Group Project Presentationbrynpueblos04
 
KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...
KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...
KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...Cara Menggugurkan Kandungan 087776558899
 
Pokemon Go... Unraveling the Conspiracy Theory
Pokemon Go... Unraveling the Conspiracy TheoryPokemon Go... Unraveling the Conspiracy Theory
Pokemon Go... Unraveling the Conspiracy Theorydrae5
 
2023 - Between Philosophy and Practice: Introducing Yoga
2023 - Between Philosophy and Practice: Introducing Yoga2023 - Between Philosophy and Practice: Introducing Yoga
2023 - Between Philosophy and Practice: Introducing YogaRaphaël Semeteys
 
Dadar West Escorts 🥰 8617370543 Call Girls Offer VIP Hot Girls
Dadar West Escorts 🥰 8617370543 Call Girls Offer VIP Hot GirlsDadar West Escorts 🥰 8617370543 Call Girls Offer VIP Hot Girls
Dadar West Escorts 🥰 8617370543 Call Girls Offer VIP Hot GirlsDeepika Singh
 

Dernier (10)

SIKP311 Sikolohiyang Pilipino - Ginhawa.pptx
SIKP311 Sikolohiyang Pilipino - Ginhawa.pptxSIKP311 Sikolohiyang Pilipino - Ginhawa.pptx
SIKP311 Sikolohiyang Pilipino - Ginhawa.pptx
 
Call Girls In Mumbai Just Genuine Call ☎ 7738596112✅ Call Girl Andheri East G...
Call Girls In Mumbai Just Genuine Call ☎ 7738596112✅ Call Girl Andheri East G...Call Girls In Mumbai Just Genuine Call ☎ 7738596112✅ Call Girl Andheri East G...
Call Girls In Mumbai Just Genuine Call ☎ 7738596112✅ Call Girl Andheri East G...
 
WOMEN EMPOWERMENT women empowerment.pptx
WOMEN EMPOWERMENT women empowerment.pptxWOMEN EMPOWERMENT women empowerment.pptx
WOMEN EMPOWERMENT women empowerment.pptx
 
February 2024 Recommendations for newsletter
February 2024 Recommendations for newsletterFebruary 2024 Recommendations for newsletter
February 2024 Recommendations for newsletter
 
March 2023 Recommendations for newsletter
March 2023 Recommendations for newsletterMarch 2023 Recommendations for newsletter
March 2023 Recommendations for newsletter
 
the Husband rolesBrown Aesthetic Cute Group Project Presentation
the Husband rolesBrown Aesthetic Cute Group Project Presentationthe Husband rolesBrown Aesthetic Cute Group Project Presentation
the Husband rolesBrown Aesthetic Cute Group Project Presentation
 
KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...
KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...
KLINIK BATA Jual obat penggugur kandungan 087776558899 ABORSI JANIN KEHAMILAN...
 
Pokemon Go... Unraveling the Conspiracy Theory
Pokemon Go... Unraveling the Conspiracy TheoryPokemon Go... Unraveling the Conspiracy Theory
Pokemon Go... Unraveling the Conspiracy Theory
 
2023 - Between Philosophy and Practice: Introducing Yoga
2023 - Between Philosophy and Practice: Introducing Yoga2023 - Between Philosophy and Practice: Introducing Yoga
2023 - Between Philosophy and Practice: Introducing Yoga
 
Dadar West Escorts 🥰 8617370543 Call Girls Offer VIP Hot Girls
Dadar West Escorts 🥰 8617370543 Call Girls Offer VIP Hot GirlsDadar West Escorts 🥰 8617370543 Call Girls Offer VIP Hot Girls
Dadar West Escorts 🥰 8617370543 Call Girls Offer VIP Hot Girls
 

Developing dita maps

  • 1. Developing DITA Maps Jen Linton Senior Consultant Comtech Services, Inc. jennifer.linton@comtech-serv.com © 2006 Comtech Services, Inc.
  • 2. Agenda • Purpose of DITA maps • DITA map structure and elements • DITA map attributes • Extra DITA map features • Relationship tables • Questions © 2006 Comtech Services, Inc. 2
  • 3. DITA map purpose • DITA maps provide a mechanism for ordering topics and creating a topic hierarchy. • Because DITA maps consist of lists of references to topics, you can reorganize the content in a deliverable simply by changing the order of the topic references. • You can create different maps referencing the same source topics to create two deliverables to meet different users needs. © 2006 Comtech Services, Inc. 3
  • 4. You can use DITA maps to • plan your project • Create a DITA map before you begin writing to help plan the topics you need for your deliverable. • build your deliverable • Referencing topics into a hierarchy, you can create a deliverable to produce to different media. • build sections of your deliverable • Referencing topics in smaller maps, and using the smaller map in a master map allows you to build sections of your deliverable. • customize your deliverable • Using metadata attributes in your DITA map allows you to create special deliverables for different users and different media. © 2006 Comtech Services, Inc. 4
  • 5. What is a DITA map? Topics Quick Reference Map User Guide Map © 2006 Comtech Services, Inc. 5
  • 6. A DITA map is … • an XML file created to build your deliverable hierarchy • Because you can nest the topic folders to any level, you should position the map in a higher level folder that contains all the topics. This folder Uses a organization ensures .ditamap that processing runs without errors. extension © 2006 Comtech Services, Inc. 6
  • 7. A DITA map … • consists of references to topics organized into hierarchies and tables DITA map topic reference topic reference topic reference topic reference topic reference topic reference topic reference topic reference © 2006 Comtech Services, Inc. 7
  • 8. Map structure and elements • Because a DITA map is an XML file, it starts <?xml version="1.0" encoding="utf-8"?> with an XML <!DOCTYPE map PUBLIC "-//OASIS//DTD DITA Map//EN" declaration and a DTD "../../dtd/map.dtd"> declaration <map> • Start with the basic <topicref></topicref> map structure using <topicref></topicref> the <map> and <topicref></topicref> <topicref> elements </map> © 2006 Comtech Services, Inc. 8
  • 9. Adding map element attributes • Add a DITA map title and ID attribute <map title=“DITA User Guide” id=“DITAuserguide”> <topicref></topicref> <topicref></topicref> <topicref></topicref> </map> © 2006 Comtech Services, Inc. 9
  • 10. Adding the href attribute • The href attribute is the most important part of a DITA map. The href attribute points to your topics you want to reference. They can include DITA topics, XML files, HTML files, PDFs, and more. • Add an href attribute to each topicref element <map title=“DITA User Guide” id=“DITAuserguide”> <topicref href=“topics/aboutDITAtopics.dita”> </topicref> <topicref href=“processing/usingDITAtoolkit.xml”></topicref> </map> © 2006 Comtech Services, Inc. 10
  • 11. Building the hierarchy • Nest <topicref> elements within each other to create the hierarchy for your deliverable <map title=“DITA User Guide” id=“DITAuserguide”> <topicref href=“topics/aboutDITAtopics.dita”> <topicref href=“processing/usingDITAtoolkit.xml”> </topicref> </topicref> </map> © 2006 Comtech Services, Inc. 11
  • 12. DITA map attributes • Type attribute • Format attribute • Scope attribute • Collection-type attribute • Linking attribute • Processing attributes (toc, print) © 2006 Comtech Services, Inc. 12
  • 13. Type attribute • The type attribute allows you to indicate what type of topic you are referencing. • The values you can use are concept, task, reference, topic, figure, table, other, and more. <map title=“DITA User Guide” id=“DITAuserguide”> <topicref href=“topics/aboutDITAtopics.dita” type=“concept”> <topicref href=“processing/usingDITAtoolkit.xml” type=“task”> </topicref> </topicref> </map> © 2006 Comtech Services, Inc. 13
  • 14. Format attribute • The format attribute allows you to indicate what the format is of your topic reference. • The values you can use are dita, html, xml, pdf, zip, and any other file format you may reference. <map title=“DITA User Guide” id=“DITAuserguide”> <topicref href=“topics/aboutDITAtopics.dita” type=“concept” format=“dita”> <topicref href=“processing/usingDITAtoolkit.xml” type=“task” format=“xml”> </topicref> </topicref> <topicref href=“http://www.comtech-serv.com” format=“html”></topicref> </map> © 2006 Comtech Services, Inc. 14
  • 15. Scope attribute • The scope attribute allows you to indicate <map title=“DITA User Guide” where the file is located id=“DITAuserguide”> that you are referencing. <topicref href=“topics/aboutDITAtopics.dita” type=“concept” format=“dita” scope=“local”> Use the scope attribute <topicref if you have common href=“processing/usingDITAtoolkit.xml” type=“task” format=“xml” scope=“peer”> topics used in many </topicref> deliverables such as </topicref> <topicref href=“http://www.comtech-serv.com” boiler plate information. format=“html” scope=“external”></topicref> </map> • The values you can use are local, peer, or external. © 2006 Comtech Services, Inc. 15
  • 16. Collection-type attribute • Use the collection-type <map title=“DITA User Guide” attribute to create id=“DITAuserguide”> relationships among <topicref href=“topics/aboutDITAtopics.dita” topics that are closely type=“concept” format=“dita” scope=“local” associated. collection-type=“family”> <topicref href=“processing/usingDITAtoolkit.xml” • The values you can use type=“task” format=“xml” scope=“peer”> are family, sequence, </topicref> unordered, or choice. <topicref href=“processing/processingDITA.dita” • In this example, the type=“task” format=“dita” usingDITAtoolkit.xml scope=“local”> topic links to the </topicref> </topicref> processingDITA.dita <topicref href=“http://www.comtech-serv.com” topic. format=“html” scope=“external”></topicref> </map> © 2006 Comtech Services, Inc. 16
  • 17. Collection-type family • If you set the attribute collection-type=“family”, sibling topics will link to other siblings. © 2006 Comtech Services, Inc. 17
  • 18. Collection-type sequence • If you set the attribute collection-type=“sequence”, siblings topics will link to previous and next topics. © 2006 Comtech Services, Inc. 18
  • 19. Collection-type sequence • Using the collection-type=“sequence” also arranges links to children topic in order in the parent topic. © 2006 Comtech Services, Inc. 19
  • 20. Linking attribute • Use the linking attribute to control how links perform <map title=“DITA User Guide” among topics. You can id=“DITAuserguide”> <topicref href=“topics/aboutDITAtopics.dita” create one-way links using type=“concept” format=“dita” scope=“local” the linking attribute. collection-type=“family”> <topicref • The values you can use are href=“processing/usingDITAtoolkit.xml” targetonly, sourceonly, type=“task” format=“xml” scope=“peer”> normal, or none. </topicref> • In this example, the <topicref processingDITA.dita topic href=“processing/processingDITA.dita” type=“task” format=“dita” can only be linked to by scope=“local” linking=“targetonly”> usingDITAtoolkit.xml and </topicref> doesn’t contain a link to the </topicref> usingDITAtoolkit.xml. <topicref href=“http://www.comtech-serv.com” format=“html” scope=“external”></topicref> </map> © 2006 Comtech Services, Inc. 20
  • 21. Processing attributes • Use the toc and print attribute <map title=“DITA User Guide” to control what topics you want id=“DITAuserguide”> to include in the table of <topicref href=“topics/aboutDITAtopics.dita” contents and what topics you type=“concept” format=“dita” scope=“local” want to deliver to a print or collection-type=“family” print=“yes”> PDF media. <topicref • The values you can use for href=“processing/usingDITAtoolkit.xml” each are yes or no. type=“task” format=“xml” scope=“peer”> </topicref> • In this example, the www.comtech-serv.com topic <topicref reference will not be included href=“processing/processingDITA.dita” in the table of contents and the type=“task” format=“dita” first three topic references will scope=“local” linking=“targetonly”> be used in the print output </topicref> also. The first three topic </topicref> references are assigned the <topicref href=“http://www.comtech-serv.com” print attribute because you set format=“html” scope=“external” on the parent allowing the child toc=“no”></topicref> attributes to inherit the value. </map> © 2006 Comtech Services, Inc. 21
  • 22. Adding a topicgroup element • Add a <topicgroup> element to create a collection of topic references that you want to inherit a particular attribute value. • In this example, neither the aboutDITAtopics.dita topic nor the usingDITAtoolkit.xml topic will be included in the table of contents. <map title=“DITA User Guide” id=“DITAuserguide”> <topicgroup toc=“no”> <topicref href=“topics/aboutDITAtopics.dita”></topicref> <topicref href=“processing/usingDITAtoolkit.xml”></topicref> </topicgroup> </map> © 2006 Comtech Services, Inc. 22
  • 23. Adding a topichead element • Add a <topichead> element to provide a heading to a group of topic references without needing to reference an entire topic. • A topic heading element doesn’t require an href attribute. • A topic heading element does require a navtitle attribute. • You can also use the locktitle attribute to ensure the navtitle is used in your table of contents. You can use navtitle and locktitle on each topic reference to create an alternative title to the one provided in your topic. <map title=“DITA User Guide” id=“DITAuserguide”> <topichead navtitle=“Introduction to DITA” locktitle=“yes”> <topicref href=“topics/aboutDITAtopics.dita”></topicref> <topicref href=“processing/usingDITAtoolkit.xml”></topicref> </topichead> </map> © 2006 Comtech Services, Inc. 23
  • 24. What is a relationship table? • Using columns and rows, a relationship table outlines the relationships or links among topics • Relationship tables define links among topics that are not related by hierarchical, sequential, or family links in the hierarchical part of the DITA map © 2006 Comtech Services, Inc. 24
  • 25. Relationship table specifics • Relationship tables are created in DITA maps • Each row represents a relationship, each cell represents a participant in the relationship © 2006 Comtech Services, Inc. 25
  • 26. A visual representation • Each topic reference in a cell links to the topic references in all the other cells in the same row CONCEPT TASK REFERENCE aboutDITAtopics.dita glossary.dita aboutDITA.dita processingDITA.dita glossary.dita errors.dita usingDITAtoolkit.dita errors.dita www.comtech-serv.dita © 2006 Comtech Services, Inc. 26
  • 27. Starting a relationship table • Add a reltable element to a DITA map • Each reltable must have at least one row <map> <reltable> <relrow> </relrow> </reltable> </map> © 2006 Comtech Services, Inc. 27
  • 28. Add the table header elements • Add the relheader and relcolspec elements to assign column headings • The relheader element contains relcolspec elements that define a column for each information type <reltable> <relheader> <relcolspec> </relcolspec> </relheader> </reltable> © 2006 Comtech Services, Inc. 28
  • 29. Add the table header values • Set the type attribute on the relcolspec elements to identify the column subject <relheader> <relcolspec type=“concept”> </relcolspec> <relcolspec type=“task”> </relcolspec> <relcolspec type=“reference”> </relcolspec> </relheader> © 2006 Comtech Services, Inc. 29
  • 30. Add table rows • In the first relrow element, add three <relrow> relcell elements. The <relcell> three element </relcell> containers define the <relcell> next single row of the </relcell> table. <relcell> </relcell> </relrow> © 2006 Comtech Services, Inc. 30
  • 31. Add topic references • Relcell – add topics to each relcell. Topic references may include tasks, concepts, references, or other types of topics. • Add concept topic references (<topicref>) inside the first relcell element. Tasks go in the second relcell element, and references go in the third relcell element. <relrow> <relcell>topicref concepts </relcell> <relcell>topicref tasks </relcell> <relcell>topicref references </relcell> </relrow> © 2006 Comtech Services, Inc. 31
  • 32. More rows = more relationships • Create additional <relrow> elements with <relcell> and <topicref>s to show more relationships among topics <relrow> <relcell>topicref concepts </relcell> <relcell>topicref tasks </relcell> <relcell>topicref references </relcell> </relrow> <relrow> <relcell>topicref concepts </relcell> <relcell>topicref tasks </relcell> <relcell>topicref references </relcell> </relrow> © 2006 Comtech Services, Inc. 32
  • 33. Merging rows • If there are tasks that share the same related concepts and related reference topics, they can be considered part of the same pattern and stored in a single row task1 and task2 <relrow> both link to this concept and this <relcell>topicref concept </relcell> reference <relcell> topicref task1 topicref task2 </relcell> <relcell>topicref reference </relcell> </relrow> © 2006 Comtech Services, Inc. 33
  • 34. Simple relationship table <map> <reltable> <relheader> A <relcolspec type="concept"/> <relcolspec type="task"/> links to B, C1, C2 <relcolspec type="reference"/> </relheader> B <relrow> links to A, C1, C2 <relcell> <topicref href="A.dita"/> </relcell> C1, C2 <relcell> link to A, B <topicref href="B.dita"/> </relcell> <relcell> concept task reference <topicref href="C1.dita"/> <topicref href="C2.dita"/> </relcell> A B C1 </relrow> C2 </reltable> </map> © 2006 Comtech Services, Inc. 34
  • 35. Grouping topics • Add a topicgroup element to apply relationships among topics in the same cell. • If you want to show a relationship between two topics in the same column, use the topicgroup element and set its collection-type=“family” <relrow> These two tasks link <relcell>topicref concept </relcell> to each other. <relcell><topicgroup collection-type=“family”> <topicref href=“settingupdependencies.dita”></topicref><topicref href=“modifyingdependencies.dita”></topicref></topicgroup> </relcell> <relcell>topicref reference </relcell> </relrow> © 2006 Comtech Services, Inc. 35
  • 36. One-way relationships • Add the linking attribute to topic references you want to have only one-way linking • Set the linking=“sourceonly” or linking=“targetonly” to customize your topic linking relationships projectplanning links to glossary, but glossary does not <relrow> link back to <relcell></relcell> projectplanning <relcell><topicref href=“projectplanning.dita” linking=“sourceonly”></topicref></relcell> <relcell> <topicref href=“glossary.dita”></topicref> </relcell> </relrow> © 2006 Comtech Services, Inc. 36
  • 37. DITA map benefits • In DITA, your deliverable isn’t tied to the structure you author the topics in. You can • place topics in more than one position in a DITA map. For example, a task can occur in more than one place in a task flow. • create solutions-oriented maps that answer the question "how do these products work together?" You can also create task-oriented maps to answer the question "how do I accomplish my goals?" And, you can create feature-oriented maps to answer the question "what does this product do?" • create maps to deliver information to specific audiences • create hierarchies of topics depending on the way you format your output • include topics in your navigation from different information sets, such as external web sites and other content your staff or another department may have created © 2006 Comtech Services, Inc. 37
  • 38. Helpful resources • www.comtech-serv.com • Order the DITA User Guide • DITA map articles • Additional articles and links • dita.xml.org • Collections of resources • Ideas to help you get started • Places for you to add your own DITA ideas • xml.coverpages.org/dita.html • sourceforge.net/projects/dita-ot • www-128.ibm.com/developerworks/xml/library/x-dita1/ • www.oasis- open.org/committees/tc_home.php?wg_abbrev=dita © 2006 Comtech Services, Inc. 38
  • 39. Questions © 2006 Comtech Services, Inc. 39