idml 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.github/workflows/rake.yml +18 -0
- data/.github/workflows/release.yml +27 -0
- data/.gitignore +27 -0
- data/.rspec +3 -0
- data/.rubocop.yml +21 -0
- data/.rubocop_todo.yml +113 -0
- data/.yardopts +4 -0
- data/CLAUDE.md +305 -0
- data/Gemfile +17 -0
- data/Gemfile.lock +253 -0
- data/README.adoc +4 -0
- data/Rakefile +22 -0
- data/TODO.complete/01-bootstrap.md +52 -0
- data/TODO.complete/02-package-layer.md +48 -0
- data/TODO.complete/03-parts-registry-and-designmap.md +64 -0
- data/TODO.complete/04-spread-and-master-spread.md +57 -0
- data/TODO.complete/05-story-and-backing-story.md +56 -0
- data/TODO.complete/06-resources.md +53 -0
- data/TODO.complete/07-xml-structure.md +32 -0
- data/TODO.complete/08-round-trip-suite.md +44 -0
- data/TODO.complete/09-validation.md +51 -0
- data/TODO.complete/10-composition.md +62 -0
- data/TODO.complete/11-package-accessors.md +41 -0
- data/TODO.complete/12-document-layer.md +44 -0
- data/TODO.complete/13-insert-idml.md +31 -0
- data/TODO.complete/14-geometry.md +33 -0
- data/TODO.complete/15-cli.md +44 -0
- data/TODO.complete/16-cross-version-tolerance.md +40 -0
- data/TODO.complete/17-yard-documentation.md +38 -0
- data/TODO.complete/18-remove-nokogiri.md +38 -0
- data/TODO.complete/19-vendor-fixtures.md +44 -0
- data/TODO.complete/20-round-trip-all-fixtures.md +39 -0
- data/TODO.complete/21-anti-pattern-forbid-nokogiri.md +31 -0
- data/TODO.complete/22-claude-md-no-nokogiri.md +29 -0
- data/TODO.complete/23-lutaml-only-no-rexml.md +60 -0
- data/TODO.complete/24-anti-pattern-forbid-rexml.md +29 -0
- data/TODO.complete/25-claude-md-lutaml-only.md +29 -0
- data/TODO.complete/26-rnc-faithful-models.md +66 -0
- data/TODO.complete/27-geometry-scale-rotate.md +28 -0
- data/TODO.complete/28-designmap-migration.md +33 -0
- data/TODO.complete/29-add-page-from-idml.md +35 -0
- data/TODO.complete/30-import-xml.md +37 -0
- data/TODO.complete/31-export-xml.md +32 -0
- data/TODO.complete/33-element-spec-coverage.md +30 -0
- data/TODO.pdf/01-font-metrics.md +43 -0
- data/TODO.pdf/02-font-resolver.md +42 -0
- data/TODO.pdf/03-text-shaper.md +40 -0
- data/TODO.pdf/04-line-breaker-justifier.md +51 -0
- data/TODO.pdf/05-vertical-layout.md +42 -0
- data/TODO.pdf/06-pdf-color-operators.md +25 -0
- data/TODO.pdf/07-pdf-path-operators.md +29 -0
- data/TODO.pdf/08-pdf-text-operators.md +29 -0
- data/TODO.pdf/09-image-embedding.md +34 -0
- data/TODO.pdf/10-spread-renderer.md +33 -0
- data/TODO.pdf/11-font-embedding.md +38 -0
- data/TODO.pdf/12-idml-to-pdf-pipeline.md +41 -0
- data/TODO.pdf/13-cjk-text-layout.md +40 -0
- data/TODO.pdf/14-page-item-element-models.md +61 -0
- data/TODO.pdf/15-wire-spread-children.md +46 -0
- data/TODO.pdf/16-typed-model-pipeline.md +48 -0
- data/TODO.pdf/17-shape-rendering.md +46 -0
- data/TODO.pdf/18-text-rendering.md +48 -0
- data/TODO.pdf/19-page-dimensions.md +40 -0
- data/TODO.pdf/20-png-image-support.md +43 -0
- data/TODO.pdf/21-coordinate-transform.md +41 -0
- data/TODO.pdf/22-color-resolution.md +41 -0
- data/TODO.pdf/23-fontmetrics-ps-name-fix.md +43 -0
- data/TODO.pdf/24-antipattern-coverage.md +35 -0
- data/TODO.pdf/25-cli-render.md +38 -0
- data/TODO.pdf/26-renderer-registry.md +45 -0
- data/TODO.pdf/27-text-engine-integration.md +41 -0
- data/TODO.pdf/28-path-geometry-models.md +47 -0
- data/TODO.pdf/29-character-style-extraction.md +36 -0
- data/TODO.pdf/30-shape-geometry-rendering.md +40 -0
- data/TODO.pdf/31-stroke-rendering.md +35 -0
- data/TODO.pdf/32-master-spread-rendering.md +36 -0
- data/TODO.pdf/33-font-resolution-from-idml.md +38 -0
- data/TODO.pdf/34-story-threading.md +32 -0
- data/TODO.pdf/35-pdf-metadata.md +34 -0
- data/TODO.pdf/36-performance-caching.md +33 -0
- data/TODO.pdf/37-round-trip-specs.md +33 -0
- data/TODO.pdf/38-pdf-output-validation.md +34 -0
- data/TODO.pdf/39-geometry-coordinate-helpers.md +26 -0
- data/TODO.pdf/40-font-ps-name-resolution.md +30 -0
- data/TODO.pdf/41-graphic-line-rendering.md +20 -0
- data/TODO.pdf/42-group-transform-application.md +17 -0
- data/TODO.pdf/43-text-frame-insets.md +17 -0
- data/TODO.pdf/44-layer-support.md +20 -0
- data/TODO.pdf/45-image-clipping.md +17 -0
- data/TODO.pdf/46-spread-to-page-separation.md +19 -0
- data/TODO.pdf/47-pdf-bookmarks.md +17 -0
- data/TODO.pdf/48-table-rendering.md +20 -0
- data/TODO.pdf/49-gradient-fill-rendering.md +20 -0
- data/TODO.pdf/50-pdf-a-compliance.md +21 -0
- data/TODO.pdf/51-remove-dead-code.md +41 -0
- data/TODO.pdf/52-font-subsetting.md +22 -0
- data/TODO.pdf/53-tagged-pdf-accessibility.md +24 -0
- data/TODO.pdf/54-pdfrb-pipeline-specs.md +27 -0
- data/TODO.pdf/55-dead-code-deprecation.md +30 -0
- data/TODO.pdf/56-text-engine-pdfrb-integration.md +33 -0
- data/TODO.pdf/57-image-clipping-pdfrb.md +26 -0
- data/TODO.pdf/58-bookmarks-pdfrb.md +23 -0
- data/TODO.pdf/59-dry-placement-rect.md +15 -0
- data/TODO.pdf/60-cli-pdf-a-flag.md +16 -0
- data/TODO.pdf/README.md +21 -0
- data/exe/idml +5 -0
- data/idml.gemspec +39 -0
- data/lib/idml/cli.rb +105 -0
- data/lib/idml/composition/add_page_from_idml.rb +67 -0
- data/lib/idml/composition/export_xml.rb +70 -0
- data/lib/idml/composition/import_xml.rb +73 -0
- data/lib/idml/composition/insert_idml.rb +93 -0
- data/lib/idml/composition/prefix.rb +78 -0
- data/lib/idml/composition.rb +16 -0
- data/lib/idml/document.rb +87 -0
- data/lib/idml/elements/anchored_object_setting.rb +40 -0
- data/lib/idml/elements/baseline_frame_grid_option.rb +24 -0
- data/lib/idml/elements/bevel_and_emboss_setting.rb +48 -0
- data/lib/idml/elements/blending_setting.rb +24 -0
- data/lib/idml/elements/cell_style.rb +166 -0
- data/lib/idml/elements/cell_style_group.rb +18 -0
- data/lib/idml/elements/character_style.rb +302 -0
- data/lib/idml/elements/character_style_group.rb +18 -0
- data/lib/idml/elements/character_style_range.rb +670 -0
- data/lib/idml/elements/color.rb +48 -0
- data/lib/idml/elements/content.rb +16 -0
- data/lib/idml/elements/content_transparency_setting.rb +15 -0
- data/lib/idml/elements/contour_option.rb +30 -0
- data/lib/idml/elements/dashed_stroke_style.rb +26 -0
- data/lib/idml/elements/directional_feather_setting.rb +34 -0
- data/lib/idml/elements/document_object.rb +82 -0
- data/lib/idml/elements/dotted_stroke_style.rb +24 -0
- data/lib/idml/elements/drop_shadow_setting.rb +44 -0
- data/lib/idml/elements/feather_setting.rb +26 -0
- data/lib/idml/elements/fill_transparency_setting.rb +15 -0
- data/lib/idml/elements/flex_layout_attribute_option.rb +42 -0
- data/lib/idml/elements/font.rb +50 -0
- data/lib/idml/elements/font_family.rb +23 -0
- data/lib/idml/elements/frame_fitting_option.rb +30 -0
- data/lib/idml/elements/geometry_path_type.rb +24 -0
- data/lib/idml/elements/gradient.rb +34 -0
- data/lib/idml/elements/gradient_feather_setting.rb +30 -0
- data/lib/idml/elements/gradient_stop.rb +24 -0
- data/lib/idml/elements/graphic_line.rb +34 -0
- data/lib/idml/elements/group.rb +41 -0
- data/lib/idml/elements/image.rb +33 -0
- data/lib/idml/elements/ink.rb +36 -0
- data/lib/idml/elements/inner_glow_setting.rb +34 -0
- data/lib/idml/elements/inner_shadow_setting.rb +40 -0
- data/lib/idml/elements/layer.rb +35 -0
- data/lib/idml/elements/link.rb +25 -0
- data/lib/idml/elements/master_spread_object.rb +55 -0
- data/lib/idml/elements/mixed_ink.rb +46 -0
- data/lib/idml/elements/mixed_ink_group.rb +40 -0
- data/lib/idml/elements/object_export_option.rb +100 -0
- data/lib/idml/elements/object_style.rb +148 -0
- data/lib/idml/elements/object_style_content_effects_category_settings.rb +36 -0
- data/lib/idml/elements/object_style_export_tag_map.rb +28 -0
- data/lib/idml/elements/object_style_fill_effects_category_settings.rb +36 -0
- data/lib/idml/elements/object_style_group.rb +18 -0
- data/lib/idml/elements/object_style_object_effects_category_settings.rb +36 -0
- data/lib/idml/elements/object_style_stroke_effects_category_settings.rb +36 -0
- data/lib/idml/elements/opacity_gradient_stop.rb +24 -0
- data/lib/idml/elements/outer_glow_setting.rb +32 -0
- data/lib/idml/elements/page.rb +43 -0
- data/lib/idml/elements/paragraph_style.rb +600 -0
- data/lib/idml/elements/paragraph_style_group.rb +18 -0
- data/lib/idml/elements/paragraph_style_range.rb +673 -0
- data/lib/idml/elements/pasted_smooth_shade.rb +40 -0
- data/lib/idml/elements/path_geometry.rb +36 -0
- data/lib/idml/elements/path_point_array.rb +21 -0
- data/lib/idml/elements/path_point_type.rb +38 -0
- data/lib/idml/elements/polygon.rb +40 -0
- data/lib/idml/elements/pref_anchored_object_default.rb +26 -0
- data/lib/idml/elements/pref_button_preference.rb +18 -0
- data/lib/idml/elements/pref_chapter_number_preference.rb +20 -0
- data/lib/idml/elements/pref_cjk_grid_preference.rb +34 -0
- data/lib/idml/elements/pref_data_merge.rb +20 -0
- data/lib/idml/elements/pref_data_merge_field.rb +20 -0
- data/lib/idml/elements/pref_data_merge_option.rb +28 -0
- data/lib/idml/elements/pref_dictionary_preference.rb +22 -0
- data/lib/idml/elements/pref_document_preference.rb +66 -0
- data/lib/idml/elements/pref_e_pub_export_preference.rb +152 -0
- data/lib/idml/elements/pref_e_pub_fixed_layout_export_preference.rb +82 -0
- data/lib/idml/elements/pref_export_for_web_preference.rb +32 -0
- data/lib/idml/elements/pref_footnote_option.rb +78 -0
- data/lib/idml/elements/pref_grid_preference.rb +40 -0
- data/lib/idml/elements/pref_guide_preference.rb +26 -0
- data/lib/idml/elements/pref_html_export_preference.rb +94 -0
- data/lib/idml/elements/pref_index_header_setting.rb +26 -0
- data/lib/idml/elements/pref_index_options.rb +60 -0
- data/lib/idml/elements/pref_layout_adjustment_preference.rb +28 -0
- data/lib/idml/elements/pref_layout_grid_data_information.rb +28 -0
- data/lib/idml/elements/pref_margin_preference.rb +32 -0
- data/lib/idml/elements/pref_mojikumi_ui_preference.rb +18 -0
- data/lib/idml/elements/pref_page_item_default.rb +88 -0
- data/lib/idml/elements/pref_pasteboard_preference.rb +22 -0
- data/lib/idml/elements/pref_print_booklet_option.rb +40 -0
- data/lib/idml/elements/pref_print_booklet_print_preference.rb +188 -0
- data/lib/idml/elements/pref_print_preference.rb +198 -0
- data/lib/idml/elements/pref_story_grid_data_information.rb +40 -0
- data/lib/idml/elements/pref_text_default.rb +578 -0
- data/lib/idml/elements/pref_text_preference.rb +84 -0
- data/lib/idml/elements/pref_tin_document_data_object.rb +15 -0
- data/lib/idml/elements/pref_transparency_default_container_object.rb +15 -0
- data/lib/idml/elements/pref_transparency_preference.rb +22 -0
- data/lib/idml/elements/pref_view_preference.rb +50 -0
- data/lib/idml/elements/pref_xml_export_preference.rb +48 -0
- data/lib/idml/elements/pref_xml_import_preference.rb +36 -0
- data/lib/idml/elements/pref_xml_preference.rb +26 -0
- data/lib/idml/elements/properties.rb +24 -0
- data/lib/idml/elements/rectangle.rb +56 -0
- data/lib/idml/elements/root_cell_style_group.rb +21 -0
- data/lib/idml/elements/root_character_style_group.rb +21 -0
- data/lib/idml/elements/root_object_style_group.rb +21 -0
- data/lib/idml/elements/root_paragraph_style_group.rb +21 -0
- data/lib/idml/elements/root_table_style_group.rb +21 -0
- data/lib/idml/elements/satin_setting.rb +32 -0
- data/lib/idml/elements/spread_object.rb +64 -0
- data/lib/idml/elements/story_inner.rb +697 -0
- data/lib/idml/elements/story_preference.rb +26 -0
- data/lib/idml/elements/striped_stroke_style.rb +22 -0
- data/lib/idml/elements/stroke_style.rb +20 -0
- data/lib/idml/elements/stroke_transparency_setting.rb +15 -0
- data/lib/idml/elements/style_export_tag_map.rb +30 -0
- data/lib/idml/elements/swatch.rb +30 -0
- data/lib/idml/elements/table.rb +40 -0
- data/lib/idml/elements/table_cell.rb +24 -0
- data/lib/idml/elements/table_row.rb +28 -0
- data/lib/idml/elements/table_style.rb +260 -0
- data/lib/idml/elements/table_style_group.rb +18 -0
- data/lib/idml/elements/text_frame.rb +54 -0
- data/lib/idml/elements/text_frame_footnote_options_object.rb +24 -0
- data/lib/idml/elements/text_frame_preference.rb +90 -0
- data/lib/idml/elements/text_wrap_preference.rb +24 -0
- data/lib/idml/elements/tint.rb +44 -0
- data/lib/idml/elements/toc_style.rb +40 -0
- data/lib/idml/elements/toc_style_entry.rb +28 -0
- data/lib/idml/elements/transform_attribute_option.rb +30 -0
- data/lib/idml/elements/transparency_setting.rb +15 -0
- data/lib/idml/elements/trap_preset.rb +48 -0
- data/lib/idml/elements/xml_element.rb +41 -0
- data/lib/idml/elements/xml_export_map.rb +28 -0
- data/lib/idml/elements/xml_import_map.rb +22 -0
- data/lib/idml/elements/xml_story.rb +609 -0
- data/lib/idml/elements/xml_tag.rb +20 -0
- data/lib/idml/elements.rb +167 -0
- data/lib/idml/errors.rb +10 -0
- data/lib/idml/geometry.rb +110 -0
- data/lib/idml/namespace.rb +13 -0
- data/lib/idml/package.rb +213 -0
- data/lib/idml/part.rb +20 -0
- data/lib/idml/parts/backing_story.rb +27 -0
- data/lib/idml/parts/designmap.rb +91 -0
- data/lib/idml/parts/fonts.rb +26 -0
- data/lib/idml/parts/graphic.rb +48 -0
- data/lib/idml/parts/mapping.rb +25 -0
- data/lib/idml/parts/master_spread.rb +27 -0
- data/lib/idml/parts/preferences.rb +201 -0
- data/lib/idml/parts/raw.rb +27 -0
- data/lib/idml/parts/spread.rb +38 -0
- data/lib/idml/parts/story.rb +39 -0
- data/lib/idml/parts/style.rb +122 -0
- data/lib/idml/parts/style_mapping.rb +21 -0
- data/lib/idml/parts/tags.rb +25 -0
- data/lib/idml/parts.rb +47 -0
- data/lib/idml/render/color.rb +69 -0
- data/lib/idml/render/color_helper.rb +23 -0
- data/lib/idml/render/color_resolver.rb +72 -0
- data/lib/idml/render/font_embedder.rb +79 -0
- data/lib/idml/render/font_reference_resolver.rb +51 -0
- data/lib/idml/render/gradient_resolver.rb +111 -0
- data/lib/idml/render/image.rb +302 -0
- data/lib/idml/render/layer_filter.rb +60 -0
- data/lib/idml/render/page_item_renderer.rb +34 -0
- data/lib/idml/render/path.rb +80 -0
- data/lib/idml/render/pdf_writer.rb +426 -0
- data/lib/idml/render/pdfrb_ext/clip.rb +31 -0
- data/lib/idml/render/pdfrb_ext/invoke_xobject.rb +24 -0
- data/lib/idml/render/pdfrb_ext.rb +13 -0
- data/lib/idml/render/pdfrb_writer.rb +97 -0
- data/lib/idml/render/pipeline.rb +196 -0
- data/lib/idml/render/render_context.rb +22 -0
- data/lib/idml/render/renderers/graphic_line_renderer.rb +28 -0
- data/lib/idml/render/renderers/group_renderer.rb +42 -0
- data/lib/idml/render/renderers/polygon_renderer.rb +47 -0
- data/lib/idml/render/renderers/rectangle_renderer.rb +62 -0
- data/lib/idml/render/renderers/table_renderer.rb +41 -0
- data/lib/idml/render/renderers/text_frame_renderer.rb +113 -0
- data/lib/idml/render/renderers.rb +11 -0
- data/lib/idml/render/spread_renderer.rb +111 -0
- data/lib/idml/render/story_threader.rb +56 -0
- data/lib/idml/render/style_resolver.rb +48 -0
- data/lib/idml/render/text.rb +91 -0
- data/lib/idml/render.rb +63 -0
- data/lib/idml/text_engine/cjk_layout.rb +114 -0
- data/lib/idml/text_engine/font_metrics.rb +226 -0
- data/lib/idml/text_engine/font_resolver.rb +105 -0
- data/lib/idml/text_engine/justifier.rb +46 -0
- data/lib/idml/text_engine/line_breaker.rb +55 -0
- data/lib/idml/text_engine/shaper.rb +35 -0
- data/lib/idml/text_engine/vertical_layout.rb +64 -0
- data/lib/idml/text_engine.rb +19 -0
- data/lib/idml/validation/result.rb +14 -0
- data/lib/idml/validation/validator.rb +121 -0
- data/lib/idml/validation.rb +14 -0
- data/lib/idml/version.rb +5 -0
- data/lib/idml.rb +33 -0
- data/reference-docs/idml-specification.pdf +0 -0
- data/reference-docs/schemas/README.md +79 -0
- data/reference-docs/schemas/fix-adobe-schema-bug.rb +69 -0
- data/reference-docs/schemas/package/MasterSpreads/MasterSpread.rnc +4415 -0
- data/reference-docs/schemas/package/Resources/Fonts.rnc +93 -0
- data/reference-docs/schemas/package/Resources/Graphic.rnc +226 -0
- data/reference-docs/schemas/package/Resources/Preferences.rnc +1827 -0
- data/reference-docs/schemas/package/Resources/Styles.rnc +1770 -0
- data/reference-docs/schemas/package/Spreads/Spread.rnc +4431 -0
- data/reference-docs/schemas/package/Stories/Story.rnc +6547 -0
- data/reference-docs/schemas/package/XML/BackingStory.rnc +6527 -0
- data/reference-docs/schemas/package/XML/Mapping.rnc +35 -0
- data/reference-docs/schemas/package/XML/Tags.rnc +30 -0
- data/reference-docs/schemas/package/datatype.rnc +563 -0
- data/reference-docs/schemas/package/designmap.rnc +974 -0
- data/reference-docs/schemas/single/IDMarkupLanguage.rnc +11486 -0
- data/reference-docs/schemas/single/datatype.rnc +563 -0
- data/reference-docs/spec/00_index.md +16 -0
- data/reference-docs/spec/00_title/00_index.md +480 -0
- data/reference-docs/spec/01_abstract/00_index.md +3 -0
- data/reference-docs/spec/02_introduction/00_index.md +11 -0
- data/reference-docs/spec/03_terminology/00_index.md +7 -0
- data/reference-docs/spec/04_inx_idml_and_in_design_scripting/00_index.md +48 -0
- data/reference-docs/spec/05_uses_for_idml/00_index.md +13 -0
- data/reference-docs/spec/06_idml_design_goals/00_index.md +18 -0
- data/reference-docs/spec/07_idml_design_approaches/00_index.md +59 -0
- data/reference-docs/spec/08_idml_document_structure/00_index.md +120 -0
- data/reference-docs/spec/09_idml_syntax/00_index.md +367 -0
- data/reference-docs/spec/09_idml_syntax/examples/01_example_properties_expressed_as_attributes_or_elements_depending_on_their_value.md +6 -0
- data/reference-docs/spec/09_idml_syntax/examples/02_example_object_serialization.md +10 -0
- data/reference-docs/spec/09_idml_syntax/examples/03_example_record_type_serialization.md +6 -0
- data/reference-docs/spec/09_idml_syntax/examples/04_example_geometry_serialization.md +6 -0
- data/reference-docs/spec/09_idml_syntax/examples/index.md +10 -0
- data/reference-docs/spec/09_idml_syntax/images/image_01.md +1 -0
- data/reference-docs/spec/09_idml_syntax/images/image_01.png +0 -0
- data/reference-docs/spec/09_idml_syntax/images/image_02.md +1 -0
- data/reference-docs/spec/09_idml_syntax/images/image_02.png +0 -0
- data/reference-docs/spec/09_idml_syntax/images/image_03.md +1 -0
- data/reference-docs/spec/09_idml_syntax/images/image_03.png +0 -0
- data/reference-docs/spec/09_idml_syntax/images/image_04.md +1 -0
- data/reference-docs/spec/09_idml_syntax/images/image_04.png +0 -0
- data/reference-docs/spec/09_idml_syntax/images/image_05.md +1 -0
- data/reference-docs/spec/09_idml_syntax/images/image_05.png +0 -0
- data/reference-docs/spec/09_idml_syntax/images/image_06.md +1 -0
- data/reference-docs/spec/09_idml_syntax/images/image_06.png +0 -0
- data/reference-docs/spec/09_idml_syntax/images/index.md +12 -0
- data/reference-docs/spec/09_idml_syntax/schemas/00_schema_example_1_column_guide_color_and_margin_guide_color_elements.rnc +3 -0
- data/reference-docs/spec/09_idml_syntax/schemas/01_datatype.rnc +4 -0
- data/reference-docs/spec/09_idml_syntax/schemas/02_designmap.rnc +4 -0
- data/reference-docs/spec/09_idml_syntax/schemas/03_Master_Spreads.rnc +4 -0
- data/reference-docs/spec/09_idml_syntax/schemas/04_Fonts.rnc +4 -0
- data/reference-docs/spec/09_idml_syntax/schemas/05_Graphic.rnc +4 -0
- data/reference-docs/spec/09_idml_syntax/schemas/06_Preferences.rnc +4 -0
- data/reference-docs/spec/09_idml_syntax/schemas/07_Styles.rnc +4 -0
- data/reference-docs/spec/09_idml_syntax/schemas/08_Spread.rnc +4 -0
- data/reference-docs/spec/09_idml_syntax/schemas/09_Story.rnc +4 -0
- data/reference-docs/spec/09_idml_syntax/schemas/10_BackingStory.rnc +4 -0
- data/reference-docs/spec/09_idml_syntax/schemas/11_Mapping.rnc +4 -0
- data/reference-docs/spec/09_idml_syntax/schemas/12_Tags.rnc +4 -0
- data/reference-docs/spec/09_idml_syntax/schemas/index.md +19 -0
- data/reference-docs/spec/09_idml_syntax/tables/01_idml_basic_data_types.md +20 -0
- data/reference-docs/spec/09_idml_syntax/tables/02_property_elements.md +6 -0
- data/reference-docs/spec/09_idml_syntax/tables/index.md +8 -0
- data/reference-docs/spec/10_idml_file_reference/00_index.md +16 -0
- data/reference-docs/spec/10_idml_file_reference/10_10_mapping/examples/98_xml_export_map.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_10_mapping/examples/99_xml_import_map.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_10_mapping/index.md +44 -0
- data/reference-docs/spec/10_idml_file_reference/10_10_mapping/schemas/175_xml_export_map.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_10_mapping/schemas/176_xml_import_map.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_10_mapping/tables/191_xml_export_map_properties.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_10_mapping/tables/192_xml_import_map_properties.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_11_xmltags/examples/100_example_xmltag.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_11_xmltags/imdex.md +42 -0
- data/reference-docs/spec/10_idml_file_reference/10_11_xmltags/schemas/177_xmltag.rnc +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_11_xmltags/tables/193_xmltag_properties_attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_11_xmltags/tables/194_xmltag_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_1_common_attributes_and_elements/examples/05_example_self.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_1_common_attributes_and_elements/examples/06_example_label.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_1_common_attributes_and_elements/index.md +96 -0
- data/reference-docs/spec/10_idml_file_reference/10_1_common_attributes_and_elements/schemas/02_self.rnc +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_1_common_attributes_and_elements/schemas/03_label.rnc +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_1_common_attributes_and_elements/tables/label_attributes.md +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/07_example_document_element_references.md +26 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/08_example_document_element_designmap.md +25 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/09_example_color_management_attributes.md +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/10_example_tagged_pdf_preference_structure_order.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/11_example_text_variable.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/12_example_layer.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/13_example_building_block.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/14_example_hyperlink.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/examples/15_example_article.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/index.md +1349 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/004_document.rnc +108 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/005_language.rnc +16 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/006_kinsokutable.rnc +13 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/007_numberinglist.rnc +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/007b_mojikumitable.rnc +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/008_namedgrid.rnc +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/009_griddatainformation.rnc +22 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/010_motionpreset.rnc +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/011_condition.rnc +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/012_conditionset.rnc +13 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/013_linkedstoryoption.rnc +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/014_taggedpdfpreference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/015_metadatapacketpreference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/016_watermarkpreference.rnc +18 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/016b_conditionaltextpreference.rnc +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/017_textvariable.rnc +22 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/018_customtextvariablepreference.rnc +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/019_filenamevariablepreference.rnc +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/020_pagenumbervariablepreference.rnc +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/021_chapternumbervariablepreference.rnc +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/022_datevariablepreference.rnc +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/023_matchcharacterstylepreference.rnc +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/024_matchparagraphstylepreference.rnc +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/025_captionmetadatavariablepreference.rnc +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/026_layer.rnc +19 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/027_section.rnc +25 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/028_documentuser.rnc +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/029_crossreferenceformat.rnc +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/030_buildingblock.rnc +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/031_index.rnc +9 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/032_topic.rnc +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/033_crossreference.rnc +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/034_hyperlink.rnc +34 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/035_hyperlinkpagedestination.rnc +17 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/036_hyperlinkurldestination.rnc +12 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/037_hyperlinkexternalpagedestination.rnc +17 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/038_hyperlinkpageitemsource.rnc +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/039_bookmark.rnc +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/040_preflightprofile.rnc +12 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/041_preflightprofilerule.rnc +13 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/042_ruledataobject.rnc +51 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/043_preflightruleinstance.rnc +13 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/044_datamergeimageplaceholder.rnc +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/045_hyphenationexception.rnc +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/046_indexingsortoption.rnc +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/047_abullet.rnc +28 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/048_assignment.rnc +21 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/049_assignedstory.rnc +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/051_article.rnc +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/schemas/052_articlemember.rnc +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/03_document_properties_attributes.md +28 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/04_document_properties_elements.md +2 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/05_language_properties_attributes.md +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/06_kinsokutable_properties_attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/07_mojikumitable_properties_attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/08_mojikumitable_properties_elements.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/09_numberinglist_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/10_namedgrid_properties_attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/11_griddatainformation_properties_attributes.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/12_griddatainformation_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/13_motionpreset_properties_attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/14_motionpreset_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/15_condition_properties_attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/16_condition_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/17_conditionset_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/18_linkedstoryoption_properties_attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/19_taggedpdfpreference_structureorder_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/20_metadatapacketpreference_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/21_watermarkpreference_properties_attributes.md +15 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/22_watermarkpreference_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/23_conditionaltextpreference_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/24_textvariable_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/25_common_text_variable_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/26_custom_textvariable_preference_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/27_filename_variable_preference_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/28_pagenumber_variable_preference_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/29_chapternumber_variable_preference_properties_attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/30_date_variable_preference_properties_attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/31_matchcharacterstylepreference_properties_attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/32_matchparagraphstylepreference_properties_attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/33_captionmetadatavariablepreference_properties_attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/34_metadata_provider_names.md +63 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/35_layer_properties_attributes.md +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/36_layer_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/37_section_properties_attributes.md +15 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/38_documentuser_properties_attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/39_documentuser_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/40_crossreferenceformat_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/41_buildingblock_properties_attributes.md +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/42_topic_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/43_crossreference_properties_attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/44_hyperlink_properties_attributes.md +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/45_hyperlinkpagedestination_properties_attributes.md +9 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/46_hyperlinkpagedestination_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/47_hyperlinkurldestination_properties_attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/48_hyperlinkexternalpagedestination_properties_attributes.md +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/49_hyperlinkexternalpagedestination_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/50_hyperlinkpageitemsource_properties_attributes.md +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/51_bookmark_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/52_preflightprofile_properties_attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/53_preflightprofilerule_properties_attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/54_ruledataobject_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/55_ruledataobject_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/56_preflightruleinstance_properties_attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/57_datamergeplaceholder_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/58_hyphenationexception_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/59_indexingsortoption_properties_attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/60_abullet_properties_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/61_abullet_properties_elements.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/62_assignment_properties_attributes.md +9 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/62_assignment_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/63_article_properties_attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/64_article_properties_elements.md +2 -0
- data/reference-docs/spec/10_idml_file_reference/10_2_designmap_xml/tables/65_articlemember_properties_attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/16_example_minimal_spread.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/17_example_untransformed_rectangle.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/18_example_rotation_changes_the_itemtransform_attribute_in_idml.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/19_the_rectangle_transformed_by_itemtransform_attribute_of_both_the_rectangle_and_the_group.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/20_example_animation_setting.md +33 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/21_example_timing_setting.md +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/22_example_rectangle.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/23_example_nested_page_item.md +28 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/24_example_rotated_page_item.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/25_example_page_item_imported_graphic.md +28 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/26_example_movie.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/27_example_navigation_point.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/28_example_sound.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/29_example_text_frame.md +29 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/30_example_threaded_linked_textframes.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/31_example_text_frame_preference_single_inset.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/32_example_text_frame_preference_multiple_inset.md +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/33_example_multi_column_text_frame.md +24 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/34_example_baseline_frame_grid.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/35_example_transparency.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/36_example_group.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/37_example_button.md +43 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/38_example_multi_state_object.md +26 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/39_example_associating_frame_xml_element.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/40_example_associating_text_frame_xml_element.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/41_example_pages_within_spread.md +19 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/42_example_margin_preferences.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/43_example_guide.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/examples/44_example_flattener_preference.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img001.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img002.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img003.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img004.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img005.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img006.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img007.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img008.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img009.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img010.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img011.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img012.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img013.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img014.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img015.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img016.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img017.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img018.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img019.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img020.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img021.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/images/10_3_spreads_and_master_spreads_img022.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/index.md +1421 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/53_spread.rnc +30 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/54_master_spread.rnc +24 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/55_page_item.rnc +104 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/56_animation_setting.rnc +22 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/57_timing_setting.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/58_timing_list.rnc +2 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/60_timing_group.rnc +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/61_timing_target.rnc +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/62_graphic.rnc +41 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/63_pdf_attribute.rnc +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/64_navigation_point.rnc +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/65_text_frame.rnc +43 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/66_text_frame_preference.rnc +30 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/67_baseline_frame_grid.rnc +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/68_transparency_setting.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/69_blending_setting.rnc +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/70_button.rnc +96 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/71_state.rnc +20 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/72_behavior.rnc +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/73_multi_state_object.rnc +72 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/74_page.rnc +34 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/75_margin_preference.rnc +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/76_guide.rnc +12 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/schemas/77_flattener_preference.rnc +9 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/066_spread_masterspread_properties_as_attributes.md +15 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/067_masterspread_properties_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/068_common_pageitem_properties_as_attributes.md +46 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/069_common_pageitem_properties_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/070_animationsetting_properties_as_attributes.md +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/071_animationsetting_properties_as_elements.md +9 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/072_timinglist_properties_as_attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/073_timinggroup_properties_as_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/074_timingtarget_properties_as_attributes.md +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/075_graphic_properties_as_attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/076_graphic_properties_as_elements.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/077_image_properties_as_attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/078_image_properties_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/079_pdf_eps_properties_as_attributes.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/080_pdfattribute_properties_as_attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/081_importedpage_properties_as_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/082_movie_properties_as_attributes.md +19 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/083_sound_properties_as_attributes.md +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/084_textframe_properties_as_attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/085_textframe_preference_properties_as_attributes.md +22 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/086_textframe_preference_properties_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/087_baselineframegrid_properties_expressed_as_attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/088_baselineframegrid_properties_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/089_button_properties_expressed_as_attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/090_button_properties_expressed_as_properties.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/091_state_properties_as_attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/092_common_behavior_properties_as_attributes.md +9 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/093_gotonextstatebehavior_properties_as_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/094_gotopreviousstatebehavior_properties_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/095_gotostatebehavior_properties_as_attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/096_gotostatebehavior_properties_as_attributes_2.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/097_animationbehavior_properties_as_attributes.md +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/097a_sound_showhide_openfile_viewzoom_gotopage_behavior_properties.md +9 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/098_multistateobject_properties_as_attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/099_multistateobject_properties_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/100_page_properties_as_attributes.md +17 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/101_page_properties_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/102_guide_properties_as_attributes.md +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_3_spreads_and_master_spreads/tables/103_guide_properties_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/45_example_story_file_in_idml_package.md +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/46_example_local_formatting_vs_styles.md +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/47_example_paragraph_style_range_character_style_range.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/48_example_paragraph_breaks_in_character_style_range.md +9 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/49_example_paragraph_style_range_elements_column_breaks.md +15 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/50_example_multiple_paragraph_style_range_elements.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/51_example_multi_column_straddle_paragraphs.md +25 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/52_example_xml_element.md +141 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/53_example_table.md +31 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/54_example_footnote.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/55_example_note.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/56_example_anchored_text_frame.md +31 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/57_example_anchored_graphic.md +39 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/58_example_hyperlink_text_source.md +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/59_example_hyperlink_text_destination.md +13 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/examples/60_example_cross_reference_source.md +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img001.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img002.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img003.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img004.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img005.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img006.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img007.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img008.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img009.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img010.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img011.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/images/10_4_stories_img012.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/index.md +1299 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/78_story.rnc +92 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/79_paragraph_style_range.rnc +381 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/80_character_style_range.rnc +431 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/81_table.rnc +53 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/82_cell.rnc +66 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/83_column.rnc +28 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/84_row.rnc +33 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/85_footnote.rnc +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/86_note.rnc +13 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/87_anchored_object_settings.rnc +12 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/88_hyperlink_text_source.rnc +20 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/89_hyperlink_text_destination.rnc +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/schemas/90_cross_reference_source.rnc +16 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/104_common_text_properties_attributes.md +230 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/105_common_text_properties_elements.md +41 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/106_story_properties_attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/107_story_properties_elements.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/108_character_style_range_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/109_table_properties_attributes.md +133 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/110_cell_properties_attributes.md +83 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/111_cell_properties_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/112_column_properties_attributes.md +29 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/113_row_properties_attributes.md +34 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/114_anchored_object_setting_properties_attributes.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/115_hyperlink_text_source_properties_attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/116_hyperlink_text_destination_properties_attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/117_cross_reference_source_properties_attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/118_applied_format_tags.md +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_4_stories/tables/119_metacharacters.md +15 -0
- data/reference-docs/spec/10_idml_file_reference/10_5_fonts/examples/61_example_font.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_5_fonts/examples/62_example_referring_to_font.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_5_fonts/index.md +86 -0
- data/reference-docs/spec/10_idml_file_reference/10_5_fonts/schemas/091_font_family.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_5_fonts/schemas/092_font.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_5_fonts/schemas/093_composite_font.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_5_fonts/schemas/094_composite_font_entry.rnc +2 -0
- data/reference-docs/spec/10_idml_file_reference/10_5_fonts/tables/120_font_properties_represented_as_attributes.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/63_example_none_swatch.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/64_example_process_color.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/65_example_spot_color.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/66_example_lab_color.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/67_example_gradient.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/68_example_tint.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/69_example_mixed_ink.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/70_example_mixed_ink_group.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/71_example_process_magenta_ink.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/72_example_pantone_274_c_spot_ink.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/73_example_default_stroke_styles.md +18 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/74_example_dashed_stroke_style.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/75_example_dotted_stroke_style.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/examples/76_example_striped_stroke_style.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img001.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img002.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img003.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img004.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img005.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img006.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img007.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img008.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img009.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img010.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img011.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/images/10_6_graphics_img012.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/index.md +406 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/095_swatch.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/096_color.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/097_gradient.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/098_gradient_stop.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/099_tint.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/100_mixed_ink.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/101_mixed_ink_group.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/102_ink.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/103_stroke_style.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/104_dashed_stroke_style.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/105_dotted_stroke_style.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/schemas/106_striped_stroke_style.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/121_swatch_properties.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/122_color_properties.md +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/123_gradient_properties.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/124_gradient_stop_properties.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/125_tint_properties.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/126_mixed_ink_properties.md +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/127_mixed_ink_group_properties.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/128_ink_properties.md +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/129_stroke_style_properties.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/130_dashed_stroke_style_properties.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/131_dotted_stroke_style_properties.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_6_graphics/tables/132_striped_stroke_style_properties.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/77_epub_export_preference.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/78_html_export_preference.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/79_transparency_preference.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/80_story_preference.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/81_anchored_object_default.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/82_anchored_object_setting.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/83_baseline_frame_grid_option.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/84_footnote_options.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/85_text_wrap_preference.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/86_document_preference.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/87_grid_preference.md +2 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/examples/88_guide_preference.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/index.md +1153 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/107_Preferences_File.rnc +2 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/108_DataMerge.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/109_DataMergeField.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/110_DataMergeOption.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/111_LayoutAdjustmentPreference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/112_EPubExportPreference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/113_HTMLExportPreference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/114_XMLImportPreference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/115_XMLExport_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/116_XMLPreference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/117_Export_For_Web_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/118_Transparency_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/119_Transparency_Default_Container_Object.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/120_StoryPreference.rnc +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/121_Text_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/122_Text_Default.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/123_DictionaryPreference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/124_AnchoredObjectDefault.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/125_AnchoredObjectSetting.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/126_BaselineFrameGridOption.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/127_FootnoteOption.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/128_TextWrapPreference.rnc +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/129_Contour_Option.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/130_Document_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/131_Grid_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/132_GuidePreference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/133_MarginPreference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/134_Pasteboard_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/135_View_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/136_Print_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/137_Print_Booklet_Option.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/138_Print_Booklet_Print_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/139_Index_Options.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/140_Index_Header_Setting.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/141_Page_Item_Default.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/142_Frame_Fitting_Option.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/143_Button_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/144_Tin_Document_Data_Object.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/145_Layout_Grid_Data_Information.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/146_Story_Grid_Data_Information.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/147_Cjk_Grid_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/148_Mojikumi_Ui_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/schemas/149_Chapter_Number_Preference.rnc +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/133_DataMerge_Properties_Represented_as_Attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/134_DataMergeField_Properties_Represented_as_Attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/135_DataMergeOption_Properties_Represented_as_Attributes.md +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/136_LayoutAdjustmentPreference_Properties_Represented_as_Attributes.md +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/137_EPubExportPreference_Properties_Represented_as_Attributes.md +44 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/138_HTMLExportPreference_Properties_Represented_as_Attributes.md +39 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/139_XMLImportPreference_Properties_Represented_as_Attributes.md +12 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/140_XMLImportPreference_Properties_Represented_as_Elements.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/141_XMLExportPreference_Properties_Represented_as_Attributes.md +21 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/142_XMLExport_Preference_Properties_Represented_as_Elements.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/143_XMLPreference_Properties_Represented_as_Attributes.md +9 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/144_XMLPreference_Properties_Represented_as_Elements.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/145_ExportForWebPreference_Properties_Represented_as_Attributes.md +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/146_TransparencyPreference_Properties_Represented_as_Attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/147_StoryPreference_Properties_Represented_as_Attributes.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/148_TextPreference_Properties_Represented_as_Attributes.md +33 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/149_AnchoredObjectDefault_Properties_Represented_as_Attributes.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/150_AnchoredObjectSetting_Properties_Represented_as_Attributes.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/151_BaselineFrameGridOption_Properties_Represented_as_Attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/152_BaselineFrameGridOption_Properties_Represented_as_Elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/153_FootnoteOption_Properties_Represented_as_Attributes.md +33 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/154_FootnoteOption_Properties_Represented_as_Elements.md +12 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/155_Contour_Option_Properties_Represented_as_Attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/156_DocumentPreference_Properties_Represented_as_Attributes.md +26 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/157_DocumentPreference_Properties_Represented_as_Elements.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/158_Grid_Preference_Properties_Represented_as_Attributes.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/159_GridPreference_Properties_Represented_as_Elements.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/160_GuidePreference_Properties_Represented_as_Attributes.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/161_GuidePreference_Properties_Represented_as_Elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/162_PasteboardPreference_Properties_Represented_as_Attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/163_PasteboardPreference_Properties_Represented_as_Elements.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/164_ViewPreference_Properties_Represented_as_Attributes.md +20 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/165_Print_Preference_Properties_Represented_as_Attributes.md +104 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/166_Print_Preference_Properties_Represented_as_Elements.md +15 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/167_Cjk_Grid_Preference_Properties_Represented_as_Attributes.md +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/168_Cjk_Grid_Preference_Properties_Represented_as_Elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/169_Mojikumi_Ui_Preference_Properties_Represented_as_Attributes.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/170_Chapter_Number_Preference_Properties_Represented_as_Attributes.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_7_preferences/tables/171_Chapter_Number_Preference_Properties_Represented_as_Elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/001_paragraph_style_self_attribute.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/002_paragraph_style_group_nested.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/089_paragraph_style_group.md +14 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/090_based_on_no_paragraph_style.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/091_based_on_another_style.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/092_nested_style.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/093_character_style_group.md +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/094_object_style.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/095_toc_style.md +10 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/examples/096_trap_preset.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/images/10_8_styles_img001.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/images/10_8_styles_img002.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/images/10_8_styles_img003.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/images/10_8_styles_img004.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/images/10_8_styles_img005.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/images/10_8_styles_img006.png +0 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/index.md +1154 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/150_paragraphstylegroup.rnc +9 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/151_paragraphstyle.rnc +510 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/152_nestedstyle.rnc +19 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/153_characterstylegroup.rnc +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/154_characterstyle.rnc +255 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/155_styleexporttagmap.rnc +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/156_tablestylegroup.rnc +9 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/157_tablestyle.rnc +118 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/158_cellstylegroup.rnc +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/159_cellstyle.rnc +135 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/160_objectstylegroup.rnc +9 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/161_objectstyle.rnc +79 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/162_objectstyleobjecteffectscategorysettings.rnc +12 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/163_objectstyle_effects_category_settings.rnc +12 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/164_objectstyle_effects_category_settings.rnc +12 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/165_objectstyle_effects_category_settings.rnc +12 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/166_tocstyle_tocstyleentry.rnc +16 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/167_tocstyle_tocstyleentry.rnc +22 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/schemas/168_trappreset.rnc +21 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/172_paragraph_style_properties_represented_as_attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/173_paragraph_style_properties_represented_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/174_nestedstyle_properties_represented_as_elements.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/175_characterstyle_properties_represented_as_attributes.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/176_characterstyle_properties_represented_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/177_styleexporttagmap_properties_represented_as_attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/178_tablestyle_properties_represented_as_attributes.md +109 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/179_tablestyle_properties_represented_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/180_cellstyle_properties_represented_as_elements.md +3 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/181_tocstyle_properties_represented_as_attributes.md +11 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/182_tocstyle_entry_properties_represented_as_attributes.md +8 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/183_tocstyleentry_properties_represented_as_elements.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_8_styles/tables/184_trappreset_properties_represented_as_attributes.md +17 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/examples/97_example_backingstory.md +1 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/index.md +101 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/schemas/169_BackingStory.rnc +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/schemas/170_XMLElement.rnc +37 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/schemas/171_XMLAttribute.rnc +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/schemas/172_XMLInstruction.rnc +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/schemas/173_XMLComment.rnc +4 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/schemas/174_DTD.rnc +13 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/tables/185_XMLElement_Properties_Represented_as_Attributes.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/tables/186_XMLAttribute_Properties_Represented_as_Attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/tables/187_XMLInstruction_Properties_Represented_as_Attributes.md +7 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/tables/188_XMLComment_Properties_Represented_as_Attributes.md +6 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/tables/189_DTD_Properties_Represented_as_Attributes.md +5 -0
- data/reference-docs/spec/10_idml_file_reference/10_9_xml_elements/tables/190_DTD_Properties_Represented_as_Elements.md +5 -0
- data/reference-docs/spec/appendix/00_index.md +7 -0
- data/reference-docs/spec/appendix/a_appendix.md +467 -0
- data/reference-docs/spec/appendix/b_appendix.md +81 -0
- data/reference-docs/spec/appendix/c_appendix.md +3192 -0
- data/reference-docs/spec/appendix/d_appendix.md +7 -0
- data/reference-docs/spec/appendix/e_appendix.md +224 -0
- data/scripts/assemble_element.rb +90 -0
- data/scripts/assemble_part.rb +57 -0
- data/scripts/build_elements_autoloads.rb +46 -0
- data/scripts/generate_all_objects.rb +38 -0
- data/scripts/rnc_to_lutaml.rb +114 -0
- metadata +1043 -0
|
@@ -0,0 +1,1349 @@
|
|
|
1
|
+
## 10.2 designmap.xml
|
|
2
|
+
|
|
3
|
+
The designmap.xml file contains a 'road map' to the XML elements that make up the document, and defines a variety of document-level attributes. Some elements, such as hyperlinks and cross references, are collected in the <Document> element; this makes it easier to refer to them from other parts of the IDML file or package.
|
|
4
|
+
|
|
5
|
+
This section describes the contents of the designmap.xml file in an IDML package file. If you're creating a 'single file' IDML document, you'll use the same elements, and use the same method of referring to elements in the file (generally by the contents of their Self attributes) but won't need to include the cross-file references.
|
|
6
|
+
|
|
7
|
+
**Schema Example 4. Document**
|
|
8
|
+
|
|
9
|
+
```rnc
|
|
10
|
+
Document_Object = element Document {
|
|
11
|
+
attribute DOMVersion { "7.0" },
|
|
12
|
+
attribute Self { xsd:string },
|
|
13
|
+
attribute ActiveProcess { xsd:string }?,
|
|
14
|
+
attribute TransparencyAttributeDefaultProperty { xsd:string }?,
|
|
15
|
+
attribute StoryList { list { xsd:string * } }?,
|
|
16
|
+
attribute FullName { xsd:string }?,
|
|
17
|
+
attribute Name { xsd:string }?,
|
|
18
|
+
attribute Visible { xsd:boolean }?,
|
|
19
|
+
attribute FilePath { xsd:string }?,
|
|
20
|
+
attribute Modified { xsd:boolean }?,
|
|
21
|
+
attribute Saved { xsd:boolean }?,
|
|
22
|
+
attribute ZeroPoint { UnitPointType_TypeDef }?,
|
|
23
|
+
attribute UnusedSwatches { list { xsd:string * } }?,
|
|
24
|
+
attribute ActiveLayer { xsd:string }?,
|
|
25
|
+
attribute Converted { xsd:boolean }?,
|
|
26
|
+
attribute Recovered { xsd:boolean }?,
|
|
27
|
+
attribute ReadOnly { xsd:boolean }?,
|
|
28
|
+
attribute Id { xsd:int }?,
|
|
29
|
+
attribute CMYKProfileList { list { xsd:string * } }?,
|
|
30
|
+
attribute RGBProfileList { list { xsd:string * } }?,
|
|
31
|
+
attribute CMYKProfile { xsd:string }?,
|
|
32
|
+
attribute RGBProfile { xsd:string }?,
|
|
33
|
+
attribute SolidColorIntent { RenderingIntent_EnumValue }?,
|
|
34
|
+
attribute AfterBlendingIntent { RenderingIntent_EnumValue }?,
|
|
35
|
+
attribute DefaultImageIntent { RenderingIntent_EnumValue }?,
|
|
36
|
+
attribute RGBPolicy { ColorSettingsPolicy_EnumValue }?,
|
|
37
|
+
attribute CMYKPolicy { ColorSettingsPolicy_EnumValue }?,
|
|
38
|
+
attribute AccurateLABSpots { xsd:boolean }?,
|
|
39
|
+
element Properties {
|
|
40
|
+
element InstanceList {
|
|
41
|
+
element IndexInstanceType { IndexInstanceType_TypeDef }*
|
|
42
|
+
}?
|
|
43
|
+
& element Label {
|
|
44
|
+
element KeyValuePair { KeyValuePair_TypeDef }*
|
|
45
|
+
}?
|
|
46
|
+
}?,
|
|
47
|
+
(
|
|
48
|
+
Language_Object*,
|
|
49
|
+
element idPkg:Graphic { attribute src {"Resources/Graphic.xml"} }?,
|
|
50
|
+
element idPkg:Fonts { attribute src {"Resources/Fonts.xml"} }?,
|
|
51
|
+
KinsokuTable_Object*,
|
|
52
|
+
MojikumiTable_Object*,
|
|
53
|
+
element idPkg:Styles { attribute src {"Resources/Styles.xml"} }?,
|
|
54
|
+
NumberingList_Object*,
|
|
55
|
+
NamedGrid_Object*,
|
|
56
|
+
MotionPreset_Object*,
|
|
57
|
+
Condition_Object*,
|
|
58
|
+
ConditionSet_Object*,
|
|
59
|
+
(
|
|
60
|
+
element idPkg:Preferences { attribute src {"Resources/Preferences.xml"} }?
|
|
61
|
+
& LinkedStoryOption_Object?
|
|
62
|
+
& LinkedPageItemOption_Object?
|
|
63
|
+
& TaggedPDFPreference_Object?
|
|
64
|
+
& MetadataPacketPreference_Object?
|
|
65
|
+
& WatermarkPreference_Object?
|
|
66
|
+
& ConditionalTextPreference_Object?
|
|
67
|
+
),
|
|
68
|
+
TextVariable_Object*,
|
|
69
|
+
element idPkg:Tags { attribute src {"XML/Tags.xml"} }?,
|
|
70
|
+
Layer_Object*,
|
|
71
|
+
element idPkg:MasterSpread { attribute src {xsd:string {pattern = ".*\.xml"} } }*,
|
|
72
|
+
element idPkg:Spread { attribute src {xsd:string {pattern = ".*\.xml"} } }*,
|
|
73
|
+
Section_Object*,
|
|
74
|
+
DocumentUser_Object*,
|
|
75
|
+
CrossReferenceFormat_Object*,
|
|
76
|
+
Index_Object*,
|
|
77
|
+
element idPkg:BackingStory { attribute src {"XML/BackingStory.xml"} }?,
|
|
78
|
+
element idPkg:Story { attribute src {xsd:string {pattern = ".*\.xml"} } }*,
|
|
79
|
+
HyperlinkPageDestination_Object*,
|
|
80
|
+
HyperlinkURLDestination_Object*,
|
|
81
|
+
HyperlinkExternalPageDestination_Object*,
|
|
82
|
+
HyperlinkPageItemSource_Object*,
|
|
83
|
+
Hyperlink_Object*,
|
|
84
|
+
element idPkg:Mapping { attribute src {"XML/Mapping.xml"} }?,
|
|
85
|
+
Bookmark_Object*,
|
|
86
|
+
(
|
|
87
|
+
PreflightProfile_Object*
|
|
88
|
+
& DataMergeImagePlaceholder_Object*
|
|
89
|
+
& HyphenationException_Object*
|
|
90
|
+
& ParaStyleMapping_Object*
|
|
91
|
+
& CharStyleMapping_Object*
|
|
92
|
+
& TableStyleMapping_Object*
|
|
93
|
+
& CellStyleMapping_Object*
|
|
94
|
+
& IndexingSortOption_Object*
|
|
95
|
+
& ABullet_Object*
|
|
96
|
+
& Assignment_Object*
|
|
97
|
+
& Article_Object*
|
|
98
|
+
)
|
|
99
|
+
)
|
|
100
|
+
}
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
****Table 3***:: Document Properties Represented as Attributes
|
|
104
|
+
|
|
105
|
+
| Name | Type | Req | Description |
|
|
106
|
+
| ----------------------- | --------------------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
107
|
+
| AccurateLABSpots | boolean | no | If true, uses LAB alternates for spot colors when available. |
|
|
108
|
+
| ActiveLayer | string | no | The active layer. |
|
|
109
|
+
| ActiveProcess | string | no | The active preflight process for this document. |
|
|
110
|
+
| AfterBlendingIntent | RenderingIntent_EnumValue | no | The rendering intent for colors that result from transparency interactions on the page after blending. Can be UseColorSettings (Uses the current color settings), Perceptual (Preserves the visual relationship between colors at the expense of actual color values; most suitable for photographic images with high percentages of out-of-gamut colors), Saturation (Produces vivid colors at the expense of color accuracy; most suitable for business graphics such as graphs or charts), RelativeColorimetric (Compares the extreme highlight of the source color space to that of the desination color space and shifts all colors accordingly; out-of-gamut colors are shifted to the closest reproducible col- or in the destination color space), or AbsoluteColorimetric (Maintains color accuracy at the expense of preserving relationships between colors; most suitable for previewing how paper color affects printed colors). |
|
|
111
|
+
| CMYKPolicy | ColorSettingsPolicy_EnumValue | no | The policy for handling colors in a CMYKcolor model, including reading and embedding color profiles, mismatches between embedded color profiles and the working space, and moving colors from one document to another. Can be ColorPolicyOff (Turns off color management for documents whose profiles do not match the working space For imported colors, numeric values override color appearance), Preserve EmbeddedProfiles (Preserves embedded color profiles in newly opened documents), Convert ToWorkingSpace (Converts newly opened documents to the current working space For imported colors, color appearance overrides numeric values), or CombinationOfPreserve AndSafeCmyk (Preserves raw color numbers and ignores embedded color profiles). |
|
|
112
|
+
| CMYKProfile | string | no | The current CMYKprofile. |
|
|
113
|
+
| CMYKProfileList | string | no | Alist of valid CMYKprofiles. |
|
|
114
|
+
| Converted | boolean | no | If true, the Document was converted. |
|
|
115
|
+
| DefaultImageIntent | RenderingIntent_EnumValue | no | The rendering intent for bitmap images. Can be UseColorSettings (Uses the current color settings), Perceptual (Preserves the visual relationship between colors at the expense of actual color values; most suitable for photo- graphic images with high percentages of out- of-gamut colors), Saturation (Produces vivid colors at the expense of color accuracy; most suitable for business graphics such as graphs or charts), RelativeColorimetric (Compares the extreme highlight of the source color space to that of the desination color space and shifts all colors accordingly; out-of-gamut colors are shifted to the closest reproducible color in the destination color space), or AbsoluteColorimetric (Maintains color accuracy at the expense of preserving relationships between colors; most suitable for previewing how paper color affects printed colors). |
|
|
116
|
+
| FilePath | string | no | The full path to the file. |
|
|
117
|
+
| FullName | string | no | The full path to the Document, including the name of the Document. |
|
|
118
|
+
| Id | int | no | The ID of the document. |
|
|
119
|
+
| Modified | boolean | no | If true, the Document has been modified since it was last saved. |
|
|
120
|
+
| Name | string | no | The name of the Document. |
|
|
121
|
+
| RGBPolicy | ColorSettingsPolicy_EnumValue | no | The policy for handling colors in an RGB color model, including reading and embedding color profiles, handling mismatches between embed- ded color profiles and the working space, and moving colors from one document to another. Can be ColorPolicyOff (Turns off color management for documents whose profiles do not match the working space For imported colors, numeric values override color appear- ance), PreserveEmbeddedProfiles (Preserves embedded color profiles in newly opened docu- ments), ConvertToWorkingSpace (Converts newly opened documents to the current working space For imported colors, color appearance overrides numeric values), or CombinationOf PreserveAndSafeCmyk (Preserves raw color numbers and ignores embedded color profiles). |
|
|
122
|
+
| RGBProfile | string | no | The current RGB profile. |
|
|
123
|
+
| RGBProfileList | | no | Alist of valid RGB profiles. |
|
|
124
|
+
| ReadOnly | boolean | no | If true, the Document is read-only. |
|
|
125
|
+
| Recovered | boolean | no | If true, the Document was recovered. |
|
|
126
|
+
| Saved | boolean | no | If true, the Document has not been saved since it was created. |
|
|
127
|
+
| SolidColorIntent | RenderingIntent_EnumValue | no | The rendering intent for all vector art (areas of solid color) in native objects. Can be UseColor Settings (Uses the current color settings), Perceptual (Preserves the visual relation- ship between colors at the expense of actual color values; most suitable for photographic images with high percentages of out-of-gamut colors), Saturation (Produces vivid colors at the expense of color accuracy; most suit- able for business graphics such as graphs or charts), RelativeColorimetric (Compares the extreme highlight of the source color space to that of the desination color space and shifts all colors accordingly; out-of-gamut colors are shifted to the closest reproducible color in the destination color space), or AbsoluteColorimetric (Maintains color accuracy at the expense of preserving relationships between colors; most suitable for previewing how paper color affects printed colors). |
|
|
128
|
+
| StoryList | string | no | The list of stories in the document, as a sequence of references to the Self attribute of each story, separated by spaces. |
|
|
129
|
+
| TransparencyAttributeDefaultProperty | string | no | Transparency defaults for the document. |
|
|
130
|
+
| UnusedSwatches | string | no | Alist of the swatches that are not being used, as a sequence of references to the Self attribute of each swatch, separated by spaces. |
|
|
131
|
+
| Visible | boolean | no | If true, the Document is visible. |
|
|
132
|
+
| ZeroPoint | UnitPointType_TypeDef | no | The ruler origin, specified as page coordinates in the format [x, y]. |
|
|
133
|
+
|
|
134
|
+
**Table 4.**: Document Properties Represented as Elements
|
|
135
|
+
|
|
136
|
+
| InstanceList | IndexInstance Type_TypeDef | no | Alist of the index instances that have been placed in the document. |
|
|
137
|
+
| ----------------------- | --------------------------------- | ------- | ----------------------------------------------------------------------- |
|
|
138
|
+
|
|
139
|
+
**IDML Example 7. Document Element Using References to Other Files in the IDML Package**
|
|
140
|
+
```xml
|
|
141
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
142
|
+
<?aid style="50" type="document" readerVersion="6.0" featureSet="257" product="7.0(329)" ?>
|
|
143
|
+
<Document xmlns:idPkg="http://ns.adobe.com/AdobeInDesign/idml/1.0/packaging"
|
|
144
|
+
DOMVersion="7.0"
|
|
145
|
+
Self="d"
|
|
146
|
+
StoryList="ud6 u82"
|
|
147
|
+
ZeroPoint="0 0"
|
|
148
|
+
ActiveLayer="ua3"
|
|
149
|
+
CMYKProfile="U.S. Web Coated (SWOP) v2"
|
|
150
|
+
RGBProfile="sRGB IEC61966-2.1"
|
|
151
|
+
SolidColorIntent="UseColorSettings"
|
|
152
|
+
AfterBlendingIntent="UseColorSettings"
|
|
153
|
+
DefaultImageIntent="UseColorSettings"
|
|
154
|
+
RGBPolicy="PreserveEmbeddedProfiles"
|
|
155
|
+
CMYKPolicy="CombinationOfPreserveAndSafeCmyk"
|
|
156
|
+
AccurateLABSpots="false">
|
|
157
|
+
<idPkg:Graphic src="Resources/Graphic.xml"/>
|
|
158
|
+
<idPkg:Fonts src="Resources/Fonts.xml"/>
|
|
159
|
+
<idPkg:Styles src="Resources/Styles.xml"/>
|
|
160
|
+
<idPkg:Preferences src="Resources/Preferences.xml"/>
|
|
161
|
+
<idPkg:Tags src="XML/Tags.xml"/>
|
|
162
|
+
<idPkg:MasterSpread src="MasterSpreads/MasterSpread_ua4.xml"/>
|
|
163
|
+
<idPkg:Spread src="Spreads/Spread_uce.xml"/>
|
|
164
|
+
<idPkg:BackingStory src="XML/BackingStory.xml"/>
|
|
165
|
+
<idPkg:Story src="Stories/Story_ud6.xml"/>
|
|
166
|
+
</Document>
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
In the above example, the document contains a single story file, `Story\_ud6.xml`, and a single spread file, `Spread\_uce.xml`. All of the other `idPkg:` elements refer to standard files and file locations inside the IDML package file. In the following example, the <Story> and <Spread> elements are contained within the `designmap.xml` file itself.
|
|
170
|
+
|
|
171
|
+
**IDML Example 8. Document Element in a designmap.xml File**
|
|
172
|
+
|
|
173
|
+
```xml
|
|
174
|
+
<?xml version="1.0" encoding="UTF8" standalone="yes"?> <?aid style="50" type="document" readerVersion="6.0" featureSet="257" product="7.0(330)" ?> <Document DOMVersion="7.0" Self="d" StoryList="ud6" ZeroPoint="0 0" ActiveLayer="ua3" CMYKProfile="U.S. Web Coated (SWOP) v2" RGBProfile="sRGB IEC619662.1" SolidColorIntent="UseColorSettings" AfterBlendingIntent="UseColorSettings" DefaultImageIntent="UseColorSettings" RGBPolicy="PreserveEmbeddedProfiles" CMYKPolicy="CombinationOfPreserveAndSafeCmyk" AccurateLABSpots="false"> <Layer Self="ua3" Name="Layer 1" Visible="true" Locked="false" IgnoreWrap="false" ShowGuides="true" LockGuides="false" UI="true" Expendable="true" Printable="true"> <Properties> <LayerColor type="enumeration">LightBlue</LayerColor> </Properties> </Layer> <MasterSpread Self="ua4" ItemTransform="1 0 0 1 0 0" OverriddenPageItemProps="" Name="AMaster" NamePrefix="A" BaseName="Master" ShowMasterItems="true" PageCount="2"> <Page Self="ua9" GeometricBounds="0 0 792 612" ItemTransform="1 0 0 1 612 396" Name="A" AppliedMaster="n" MasterPageTransform="1 0 0 1 0 0" TabOrder="" GridStartingPoint="TopOutside" UseMasterGrid="true"> <Properties> <PageColor type="enumeration">UseMasterColor</PageColor> </Properties> <MarginPreference ColumnCount="1" ColumnGutter="12" Top="36" Bottom="36" Left="36" Right="36" ColumnDirection="Horizontal" ColumnsPositions="0 540"/> </Page> <Page Self="uaa" GeometricBounds="0 0 792 612" ItemTransform="1 0 0 1 0 396" Name="A" AppliedMaster="n" MasterPageTransform="1 0 0 1 0 0" TabOrder="" GridStartingPoint="TopOutside" UseMasterGrid="true"> <MarginPreference ColumnCount="1" ColumnGutter="12" Top="36" Bottom="36" Left="36" Right="36" ColumnDirection="Horizontal" ColumnsPositions="0 540"/> </Page> </MasterSpread> <Spread Self="uce" FlattenerOverride="Default" AllowPageShuffle="true" ItemTransform="1 0 0 1 0 0" ShowMasterItems="true" PageCount="1" BindingLocation="0"> <Page Self="ud3" GeometricBounds="0 0 792 612" ItemTransform="1 0 0 1 0 396" Name="1" AppliedMaster="ua4" MasterPageTransform="1 0 0 1 0 0" TabOrder="" GridStartingPoint="TopOutside" UseMasterGrid="true"> <Properties> <PageColor type="enumeration">UseMasterColor</PageColor> </Properties> <MarginPreference ColumnCount="1" ColumnGutter="12" Top="36" Bottom="36" Left="36" Right="36" ColumnDirection="Horizontal" ColumnsPositions="0 540"/> </Page> <TextFrame Self="ue8" ParentStory="ud6" PreviousTextFrame="n" NextTextFrame="n" ContentType="TextType" ItemLayer="ua3" ItemTransform="1 0 0 1 0 396"> <Properties> <PathGeometry> <GeometryPath PathOpen="false"> <PathPointArray> <PathPointType Anchor="72 72" LeftDirection="72 72" RightDirection="72 72"/> <PathPointType Anchor="144 72" LeftDirection="144 72" RightDirection="144 72"/> <PathPointType Anchor="144 144" LeftDirection="144 144" RightDirection="144 144"/> <PathPointType Anchor="72 144" LeftDirection="72 144" RightDirection="72 144"/> </PathPointArray> </GeometryPath> </PathGeometry> </Properties> <TextFramePreference TextColumnFixedWidth="72"/> </TextFrame> </Spread> <Story Self="ud6" AppliedTOCStyle="n" TrackChanges="false" StoryTitle="$ID/" AppliedNamedGrid="n"> <StoryPreference OpticalMarginAlignment="false" OpticalMarginSize="12" FrameType="TextFrameType" StoryOrientation="Horizontal" StoryDirection="LeftToRightDirection"/> <ParagraphStyleRange> <CharacterStyleRange> <Content>This is a TextFrame.</Content> </CharacterStyleRange> </ParagraphStyleRange> </Story> </Document>
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
### 10.2.1 Documents and Color Management
|
|
178
|
+
|
|
179
|
+
The appearance of all swatches (colors, tints, gradients, mixed inks, and mixed ink groups, described in section <hyperlink>'Graphics.xml'</hyperlink>) and imported graphics is determined by the color management profiles applied to the document. The profile does not change the base properties of these objects (e.g., it does not change the CMYK color values of a color defined in the Graphic.xml file inside the IDML package); it only affects the rendering of the color for display or output (printing and export).
|
|
180
|
+
|
|
181
|
+
**IDML Example 9. Color Management Attributes**
|
|
182
|
+
|
|
183
|
+
```xml
|
|
184
|
+
<Document Self="d"
|
|
185
|
+
CMYKProfile="U.S. Web Coated (SWOP) v2"
|
|
186
|
+
RGBProfile="sRGB IEC61966-2.1"
|
|
187
|
+
SolidColorIntent="UseColorSettings"
|
|
188
|
+
AfterBlendingIntent="UseColorSettings"
|
|
189
|
+
DefaultImageIntent="UseColorSettings"
|
|
190
|
+
RGBPolicy="PreserveEmbeddedProfiles"
|
|
191
|
+
CMYKPolicy="CombinationOfPreserveAndSafeCmyk"
|
|
192
|
+
AccurateLABSpots="false">
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
A complete discussion of InDesign's color management features is beyond the scope of this document. For more information, refer to the InDesign documentation.
|
|
196
|
+
|
|
197
|
+
Note: The colors used for drawing user interface items (guides, grids, layer highlights, etc.) are simply RGB screen values on a given system, and are not color managed.
|
|
198
|
+
|
|
199
|
+
### 10.2.2 Language
|
|
200
|
+
|
|
201
|
+
The <Language> elements in an IDML package define the language dictionaries available for the document. You cannot create languages by adding new <Language> elements; they are included for use as references (from, for example, ParagraphStyle elements in the Styles.xml file in the Resources folder of the IDML package), and to maintain round-trip fidelity for InDesign and InCopy documents.
|
|
202
|
+
|
|
203
|
+
**Schema Example 5. Language**
|
|
204
|
+
|
|
205
|
+
```rnc
|
|
206
|
+
Language_Object = element Language {
|
|
207
|
+
attribute Self { xsd:string },
|
|
208
|
+
attribute Name { xsd:string },
|
|
209
|
+
attribute SingleQuotes { xsd:string }?,
|
|
210
|
+
attribute DoubleQuotes { xsd:string }?,
|
|
211
|
+
attribute PrimaryLanguageName { xsd:string }?,
|
|
212
|
+
attribute SublanguageName { xsd:string }?,
|
|
213
|
+
attribute Id { xsd:int }?,
|
|
214
|
+
attribute HyphenationVendor { xsd:string }?,
|
|
215
|
+
attribute SpellingVendor { xsd:string }?,
|
|
216
|
+
element Properties {
|
|
217
|
+
element Label {
|
|
218
|
+
element KeyValuePair { KeyValuePair_TypeDef }*
|
|
219
|
+
}?
|
|
220
|
+
}?
|
|
221
|
+
}
|
|
222
|
+
```
|
|
223
|
+
|
|
224
|
+
****Table 5***:: Language Properties Represented as Attributes
|
|
225
|
+
|
|
226
|
+
| Name | Type | Req | Description | |
|
|
227
|
+
| -------------- | -------- | ------- | ------------------------------------------ | ------------------------------------------ |
|
|
228
|
+
| DoubleQuotes | string | no | The double quotes pair for the language. | |
|
|
229
|
+
|
|
230
|
+
| Name | Type | Req | Description |
|
|
231
|
+
| ----------------------- | -------- | ------- | ------------------------------------------ |
|
|
232
|
+
| HyphenationVendor | string | no | The hyphenation rules source. |
|
|
233
|
+
| Id | int | no | The unique ID of the Language. |
|
|
234
|
+
| Name | string | yes | The name of the Language. |
|
|
235
|
+
| PrimaryLanguage Name | string | no | The name of the language. |
|
|
236
|
+
| SingleQuotes | string | no | The single quotes pair for the language. |
|
|
237
|
+
| SpellingVendor | string | no | The spell-checking source. |
|
|
238
|
+
| SublanguageName | string | no | The sub-language name of the language. |
|
|
239
|
+
|
|
240
|
+
### 10.2.3 KinsokuTable
|
|
241
|
+
|
|
242
|
+
**Schema Example 6. KinsokuTable**
|
|
243
|
+
|
|
244
|
+
```rnc
|
|
245
|
+
KinsokuTable_Object = element KinsokuTable {
|
|
246
|
+
attribute Self { xsd:string },
|
|
247
|
+
attribute Name { xsd:string },
|
|
248
|
+
attribute CantBeginLineChars { xsd:string }?,
|
|
249
|
+
attribute CantEndLineChars { xsd:string }?,
|
|
250
|
+
attribute HangingPunctuationChars { xsd:string }?,
|
|
251
|
+
attribute CantBeSeparatedChars { xsd:string }?,
|
|
252
|
+
element Properties {
|
|
253
|
+
element Label {
|
|
254
|
+
element KeyValuePair { KeyValuePair_TypeDef }*
|
|
255
|
+
}?
|
|
256
|
+
}?
|
|
257
|
+
}
|
|
258
|
+
```
|
|
259
|
+
|
|
260
|
+
**Table 6**: KinsokuTable Properties Represented as Attributes
|
|
261
|
+
|
|
262
|
+
| Name | Type | Req | Description |
|
|
263
|
+
| --------------------------- | -------- | ------- | -------------------------------------------------------------- |
|
|
264
|
+
| CantBeginLine Chars | String | no | The characters in the kinsoku set that cannot begin a line. |
|
|
265
|
+
| CantEndLineChars | String | no | The characters in the kinsoku set that cannot be end a line. |
|
|
266
|
+
| HangingPunctua tionChars | String | no | The hanging punctuation characters in the kin- soku set. |
|
|
267
|
+
| CantBeSeparated Chars | String | no | The characters in the kinsoku set that cannot be separated. |
|
|
268
|
+
|
|
269
|
+
### 10.2.4 MojikumiTable
|
|
270
|
+
|
|
271
|
+
```rnc
|
|
272
|
+
MojikumiTable_Object = element MojikumiTable {
|
|
273
|
+
attribute Self { xsd:string },
|
|
274
|
+
attribute Name { xsd:string },
|
|
275
|
+
attribute BasedOnMojikumiSet { MojikumiTableDefaults_EnumValue }?,
|
|
276
|
+
element Properties {
|
|
277
|
+
element OverrideMojikumiAkiList {
|
|
278
|
+
element OverrideMojikumiAkiType { OverrideMojikumiAkiType_TypeDef }*
|
|
279
|
+
}?
|
|
280
|
+
& element Label {
|
|
281
|
+
element KeyValuePair { KeyValuePair_TypeDef }*
|
|
282
|
+
}?
|
|
283
|
+
}?
|
|
284
|
+
}
|
|
285
|
+
```
|
|
286
|
+
|
|
287
|
+
**Table 7**: MojikumiTable Properties Represented as Attributes
|
|
288
|
+
|
|
289
|
+
| Name | Type | Req | Description |
|
|
290
|
+
| ----------------------- | --------------------------------- | ------- | ------------------------------------------------------------------ |
|
|
291
|
+
| BasedOnMojikumi Set | MojikumiTable Defaults_EnumValue | no | The existing mojikumi set on which to base the new mojikumi set. |
|
|
292
|
+
|
|
293
|
+
**Table 8**: MojikumiTable Properties Represented as Elements
|
|
294
|
+
|
|
295
|
+
| Name | Type | Req | Description |
|
|
296
|
+
| ------------------- | ------------------- | ------- | --------------------------------- |
|
|
297
|
+
| OverrideMojikumi | OverrideMojikumi | no | The mojikumi overrides for aki. |
|
|
298
|
+
| AkiList | AkiType_TypeDef | | |
|
|
299
|
+
|
|
300
|
+
### 10.2.5 NumberingList
|
|
301
|
+
|
|
302
|
+
**Schema Example 7. NumberingList**
|
|
303
|
+
|
|
304
|
+
```rnc
|
|
305
|
+
NumberingList_Object = element NumberingList {
|
|
306
|
+
attribute Self { xsd:string },
|
|
307
|
+
attribute Name { xsd:string },
|
|
308
|
+
attribute ContinueNumbersAcrossStories { xsd:boolean }?,
|
|
309
|
+
attribute ContinueNumbersAcrossDocuments { xsd:boolean }?,
|
|
310
|
+
element Properties {
|
|
311
|
+
element Label {
|
|
312
|
+
element KeyValuePair { KeyValuePair_TypeDef }*
|
|
313
|
+
}?
|
|
314
|
+
}?
|
|
315
|
+
}
|
|
316
|
+
```
|
|
317
|
+
|
|
318
|
+
**Table 9**: NumberingList Properties Represented as Attributes
|
|
319
|
+
|
|
320
|
+
| Name | Type | Req | Description |
|
|
321
|
+
| ----------------------- | --------------------------------- | ------- | ---------------------------------------------------------- |
|
|
322
|
+
| ContinueNumbersAcrossStories | boolean | no | If true, numbering continues across stories. |
|
|
323
|
+
| ContinueNumbersAcrossDocuments | boolean | no | If true, numbering continues across documents in a book. |
|
|
324
|
+
|
|
325
|
+
### 10.2.6 NamedGrid
|
|
326
|
+
|
|
327
|
+
**Schema Example 8. NamedGrid**
|
|
328
|
+
|
|
329
|
+
```rnc
|
|
330
|
+
NamedGrid_Object = element NamedGrid {
|
|
331
|
+
attribute Self { xsd:string },
|
|
332
|
+
attribute Name { xsd:string },
|
|
333
|
+
element Properties {
|
|
334
|
+
element Label {
|
|
335
|
+
element KeyValuePair { KeyValuePair_TypeDef }*
|
|
336
|
+
}?
|
|
337
|
+
}?,
|
|
338
|
+
( GridDataInformation_Object? )
|
|
339
|
+
}
|
|
340
|
+
```
|
|
341
|
+
|
|
342
|
+
**Table 10**: NamedGrid Properties Represented as Attributes
|
|
343
|
+
|
|
344
|
+
| Name | Type | Req | Description |
|
|
345
|
+
| -------- | -------- | ------- | ----------------------------- |
|
|
346
|
+
| Name | string | yes | The name of the named grid. |
|
|
347
|
+
|
|
348
|
+
### 10.2.7 Grid Data Information
|
|
349
|
+
|
|
350
|
+
Default grid properties. Applies to named, layout, and frame (story) grids.
|
|
351
|
+
|
|
352
|
+
**Schema Example 9. GridDataInformation**
|
|
353
|
+
|
|
354
|
+
```rnc
|
|
355
|
+
GridDataInformation_Object = element GridDataInformation {
|
|
356
|
+
attribute FontStyle { xsd:string }?,
|
|
357
|
+
attribute PointSize { xsd:double }?,
|
|
358
|
+
attribute CharacterAki { xsd:double }?,
|
|
359
|
+
attribute LineAki { xsd:double }?,
|
|
360
|
+
attribute HorizontalScale { xsd:double }?,
|
|
361
|
+
attribute VerticalScale { xsd:double }?,
|
|
362
|
+
attribute LineAlignment { LineAlignment_EnumValue }?,
|
|
363
|
+
attribute GridAlignment { GridAlignment_EnumValue }?,
|
|
364
|
+
attribute CharacterAlignment { CharacterAlignment_EnumValue }?,
|
|
365
|
+
attribute GridView { GridViewSettings_EnumValue }?,
|
|
366
|
+
attribute CharacterCountLocation { CharacterCountLocation_EnumValue }?,
|
|
367
|
+
attribute CharacterCountSize { xsd:double }?,
|
|
368
|
+
element Properties {
|
|
369
|
+
element AppliedFont {
|
|
370
|
+
(object_type, xsd:string ) | (string_type, xsd:string )
|
|
371
|
+
}?
|
|
372
|
+
}?
|
|
373
|
+
}
|
|
374
|
+
```
|
|
375
|
+
|
|
376
|
+
**Table 11**: GridDataInformation Properties Represented as Attributes
|
|
377
|
+
|
|
378
|
+
| Name | Type | Req | Description |
|
|
379
|
+
| ----------------------- | --------------------------------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
380
|
+
| CharacterAki | double | no | The amount of white space between characters. |
|
|
381
|
+
| CharacterAlignment | CharacterAlignment_EnumValue | no | The alignment of small characters to the largest character in the line. Can be AlignBaseline, AlignEmTop, AlignEmCenter, AlignEm Bottom, AlignICFTop, or AlignICFBottom. |
|
|
382
|
+
| CharacterCountLocation | CharacterCountLocation_Enum Value | no | The character count location. Can be None, TopAlign, LeftAlign, BottomAlign, or RightAlign. |
|
|
383
|
+
| CharacterCountSize | double | no | The character size for the character count display. |
|
|
384
|
+
| FontStyle | string | no | The name of the FontStyle. |
|
|
385
|
+
| GridAlignment | GridAlignment_EnumValue | no | The alignment to the frame grid or baseline grid. Can be None, AlignBaseline, AlignEmTop, AlignEmCenter, AlignEmBottom, AlignICFTop, or AlignICFBottom. |
|
|
386
|
+
| GridView | GridViewSettings_EnumValue | no | The grid view setting. Can be GridViewEnum, ZnViewEnum, AlignViewEnum, or GridAndZnViewEnum. |
|
|
387
|
+
| HorizontalScale | double | no | The horizontal scaling applied to characters within the grid. |
|
|
388
|
+
| LineAlignment | LineAlignment_EnumValue | no | The alignment of the lines of the grid. Can be LeftOrTopLineAlign, CenterLineAlign, RightOrBottomLineAlign, LeftOrTopLineJustify, CenterLineJustify, RightOrBottomLineJustify, or FullLineJustify. |
|
|
389
|
+
| LineAki | double | no | The amount of white space between lines. |
|
|
390
|
+
| PointSize | double | no | The PointSize of characters in the grid. |
|
|
391
|
+
| VerticalScale | double | no | The vertical scaling applied to the grid. |
|
|
392
|
+
|
|
393
|
+
**Table 12**: GridDataInformation Properties Represented as Elements
|
|
394
|
+
|
|
395
|
+
| Name | Type | Req | Description |
|
|
396
|
+
| -------- | -------- | ------- | ----------------------------------------------------------------------------------------------------------------- |
|
|
397
|
+
| Font | string | no | The font applied to the grid, as the name of the font or as a reference to the Self attribute of a font object. |
|
|
398
|
+
|
|
399
|
+
### 10.2.8 Motion Preset
|
|
400
|
+
|
|
401
|
+
InDesign includes a number of motion presets-default animation settings that can be applied to page items in an InDesign document. For more on motion presets, refer to the InDesign online documentation.
|
|
402
|
+
|
|
403
|
+
**Schema Example 10. MotionPreset**
|
|
404
|
+
|
|
405
|
+
```rnc
|
|
406
|
+
MotionPreset_Object = element MotionPreset {
|
|
407
|
+
attribute Self { xsd:string },
|
|
408
|
+
attribute Name { xsd:string }?,
|
|
409
|
+
attribute EditLocked { xsd:boolean }?,
|
|
410
|
+
attribute DeleteLocked { xsd:boolean }?,
|
|
411
|
+
attribute NameLocked { xsd:boolean }?,
|
|
412
|
+
element Properties {
|
|
413
|
+
element Contents { xsd:string }?
|
|
414
|
+
& element Label {
|
|
415
|
+
element KeyValuePair { KeyValuePair_TypeDef }*
|
|
416
|
+
}?
|
|
417
|
+
}?
|
|
418
|
+
}
|
|
419
|
+
```
|
|
420
|
+
|
|
421
|
+
**Table 13**: MotionPreset Properties Represented as Attributes
|
|
422
|
+
|
|
423
|
+
| Name | Type | Req | Description |
|
|
424
|
+
| ----------------------- | --------------------------------- | ------- | ---------------------------------------------------------- |
|
|
425
|
+
| DeleteLocked | boolean | no | If true, the motion preset cannot be deleted. |
|
|
426
|
+
| EditLocked | boolean | no | If true, the motion preset cannot be edited. |
|
|
427
|
+
| Name | string | no | The name of the motion preset. |
|
|
428
|
+
| NameLocked | boolean | no | If true, the name of the motion preset cannot be edited. |
|
|
429
|
+
|
|
430
|
+
**Table 14**: MotionPreset Properties Represented as Elements
|
|
431
|
+
|
|
432
|
+
| Name | Type | Req | Description |
|
|
433
|
+
| ---------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
434
|
+
| Contents | string | no | The motion preset definition. This is theXML representation of the motion preset as defined by Adobe Flash, packaged inside a CDATA section. More details can be found at the URL http:// www.adobe.com/devnet/flash/learning_guide/ animation/. Developers should entity encode and use the contents of the motion presetXML file in the folder presets/motion presets that cor- responds to the specific motion preset that they are adding to the document. |
|
|
435
|
+
|
|
436
|
+
### 10.2.9 Condition
|
|
437
|
+
|
|
438
|
+
InDesign documents can feature conditional text-text that is only visible in the layout when a specific state is enabled. The <Condition> element controls the appearance of the text governed by a condition.
|
|
439
|
+
|
|
440
|
+
**Schema Example 11. Condition**
|
|
441
|
+
|
|
442
|
+
```rnc
|
|
443
|
+
Condition_Object = element Condition {
|
|
444
|
+
attribute Self { xsd:string },
|
|
445
|
+
attribute Name { xsd:string },
|
|
446
|
+
attribute IndicatorMethod { ConditionIndicatorMethod_EnumValue }?,
|
|
447
|
+
attribute UnderlineIndicatorAppearance { ConditionUnderlineIndicatorAppearance_EnumValue }?,
|
|
448
|
+
attribute Visible { xsd:boolean }?,
|
|
449
|
+
element Properties {
|
|
450
|
+
element IndicatorColor { InDesignUIColorType_TypeDef }?
|
|
451
|
+
& element Label {
|
|
452
|
+
element KeyValuePair { KeyValuePair_TypeDef }*
|
|
453
|
+
}?
|
|
454
|
+
}?
|
|
455
|
+
}
|
|
456
|
+
```
|
|
457
|
+
|
|
458
|
+
**Table 15**: Condition Properties Represented as Attributes
|
|
459
|
+
|
|
460
|
+
| Name | Type | Req | Description |
|
|
461
|
+
| ----------------------- | --------------------------------- | ------- | ----------------------------------------------- |
|
|
462
|
+
| IndicatorMethod | ConditionIndicatorMethod_EnumValue | no | The condition indicator method. |
|
|
463
|
+
| Name | string | yes | The name of the Condition. |
|
|
464
|
+
| UnderlineIndicatorAppearance | ConditionUnderlineIndicatorAppearance_Enum Value | no | The condition underline indicator appearance. |
|
|
465
|
+
| Visible | boolean | no | If true, the Condition is visible. |
|
|
466
|
+
|
|
467
|
+
**Table 16**: Condition Properties Represented as Elements
|
|
468
|
+
|
|
469
|
+
| Name | Type | Req | Description |
|
|
470
|
+
| ---------------- | ------------------------------------------------------ | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
471
|
+
| IndicatorColor | list of 3 doubles or InDesign UIColorType_TypeDef | no | The color for the condition indicator, specified either as an array of three doubles, each in the range 0 to 255 and representing R, G, and B val- ues, or as a UI color. |
|
|
472
|
+
|
|
473
|
+
### 10.2.10 ConditionSet
|
|
474
|
+
|
|
475
|
+
**Schema Example 12. ConditionSet**
|
|
476
|
+
|
|
477
|
+
```rnc
|
|
478
|
+
ConditionSet_Object = element ConditionSet {
|
|
479
|
+
attribute Self { xsd:string },
|
|
480
|
+
attribute Name { xsd:string },
|
|
481
|
+
element Properties {
|
|
482
|
+
element SetConditions {
|
|
483
|
+
element VisibilityPair { VisibilityPair_TypeDef }*
|
|
484
|
+
}?
|
|
485
|
+
& element Label {
|
|
486
|
+
element KeyValuePair { KeyValuePair_TypeDef }*
|
|
487
|
+
}?
|
|
488
|
+
}?
|
|
489
|
+
}
|
|
490
|
+
```
|
|
491
|
+
|
|
492
|
+
**Table 17**: Condition Properties Represented as Elements
|
|
493
|
+
|
|
494
|
+
| Name | Type | Req | Description |
|
|
495
|
+
| --------------- | ------------------------- | ------- | ------------------------------------------------- |
|
|
496
|
+
| SetConditions | VisibilityPair_TypeDef | no | List of conditions and visibilities in the set. |
|
|
497
|
+
|
|
498
|
+
### 10.2.11 LinkedStoryOption
|
|
499
|
+
|
|
500
|
+
**Schema Example 13.**
|
|
501
|
+
|
|
502
|
+
```rnc
|
|
503
|
+
LinkedStoryOption_Object = element LinkedStoryOption {
|
|
504
|
+
attribute UpdateWhileSaving { xsd:boolean }?,
|
|
505
|
+
attribute WarnOnUpdateOfEditedStory { xsd:boolean }?,
|
|
506
|
+
attribute RemoveForcedLineBreaks { xsd:boolean }?
|
|
507
|
+
}
|
|
508
|
+
```
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
**Table 18**: LinkedStoryOption Properties Represented as Attributes
|
|
512
|
+
|
|
513
|
+
| Name | Type | Req | Description |
|
|
514
|
+
| ----------------------------- | --------- | ------- | ------------------------------------------------------------------------------------------ |
|
|
515
|
+
| UpdateWhileSaving | boolean | no | If true, the linked story will be updated while saving. |
|
|
516
|
+
| WarnOnUpdateOf EditedStory | boolean | no | If true, a warning will be shown if the update link operation will override local edits. |
|
|
517
|
+
| RemoveForcedLine Breaks | boolean | no | If true, forced line breaks will be removed dur- ing story creation or update. |
|
|
518
|
+
|
|
519
|
+
### 10.2.12 TaggedPDFPreference
|
|
520
|
+
|
|
521
|
+
**Schema Example 14. TaggedPDFPreference**
|
|
522
|
+
|
|
523
|
+
```rnc
|
|
524
|
+
TaggedPDFPreference_Object = element TaggedPDFPreference { attribute StructureOrder { TaggedPDFStructureOrderOptions_EnumValue }? }
|
|
525
|
+
```
|
|
526
|
+
|
|
527
|
+
**Table 19**: TaggedPDFPReferenceStructureOrder Properties Represented as Elements
|
|
528
|
+
|
|
529
|
+
| Name | Type | Req | Description |
|
|
530
|
+
| ---------------- | ---------------------------------------------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------- |
|
|
531
|
+
| StructureOrder | TaggedPDFStructureOrderOptions_EnumValue | no | Can be UseArticles (use the order defined in the Articles panel) or UseXmlStructure (use the order of elements in the XMLstructure). |
|
|
532
|
+
|
|
533
|
+
**IDML Example 10. TaggedPDFPReferenceStructureOrder**
|
|
534
|
+
|
|
535
|
+
```xml
|
|
536
|
+
<TaggedPDFPreferenceStructureOrder="UseXMLStructure"/>
|
|
537
|
+
```
|
|
538
|
+
|
|
539
|
+
### 10.2.13 MetadataPacketPreference
|
|
540
|
+
|
|
541
|
+
**Schema Example 15. MetadataPacketPreference**
|
|
542
|
+
|
|
543
|
+
```rnc
|
|
544
|
+
MetadataPacketPreference_Object = element MetadataPacketPreference { element Properties { element Contents { xsd:string }? } ? }
|
|
545
|
+
```
|
|
546
|
+
|
|
547
|
+
**Table 20**: MetadataPacketPreference Properties Represented as Elements
|
|
548
|
+
|
|
549
|
+
| Name | Type | Req | Description |
|
|
550
|
+
| ---------- | -------- | ------- | --------------------------------------- |
|
|
551
|
+
| Contents | String | no | The metadata packet for the document. |
|
|
552
|
+
|
|
553
|
+
### 10.2.14 WatermarkPreference
|
|
554
|
+
|
|
555
|
+
```rnc
|
|
556
|
+
WatermarkPreference_Object = element WatermarkPreference { attribute WatermarkVisibility { xsd:boolean }?, attribute WatermarkDoPrint { xsd:boolean }?, attribute WatermarkDrawInBack { xsd:boolean }?, attribute WatermarkText { xsd:string }?, attribute WatermarkFontFamily { xsd:string }?, attribute WatermarkFontStyle { xsd:string }?, attribute WatermarkFontPointSize { xsd:int }?, attribute WatermarkOpacity { xsd:int }?, attribute WatermarkRotation { xsd:int }?, attribute WatermarkHorizontalPosition { WatermarkHorizontalPositionEnum_EnumValue }?, attribute WatermarkHorizontalOffset { xsd:double }?, attribute WatermarkVerticalPosition { WatermarkVerticalPositionEnum_EnumValue }?, attribute WatermarkVerticalOffset { xsd:double }?, element Properties { element WatermarkFontColor { InDesignUIColorType_TypeDef }? } ? }
|
|
557
|
+
```
|
|
558
|
+
|
|
559
|
+
**Table 21**: WatermarkPreference Properties Represented as Attributes
|
|
560
|
+
|
|
561
|
+
| Name | Type | Req | Description |
|
|
562
|
+
| --------------------------------- | ------------------------------------------------ | ------- | --------------------------------------------------------------------------------------------------------- |
|
|
563
|
+
| WatermarkVisibility | boolean | no | If true, the watermark is visible. |
|
|
564
|
+
| WatermarkDoPrint | boolean | no | If true, the watermark will print. |
|
|
565
|
+
| WatermarkDrawInBack | boolean | no | If true, the watermark draws behind all page items. |
|
|
566
|
+
| WatermarkText | string | no | The text of the watermark. |
|
|
567
|
+
| WatermarkFontFamily | string | no | The font family of the watermark text. |
|
|
568
|
+
| WatermarkFontStyle | string | no | The FontStyle of the watermark text. |
|
|
569
|
+
| WatermarkFontPointSize | int | no | The PointSize of the watermark text. |
|
|
570
|
+
| WatermarkOpacity | int | no | The opacity of the watermark text. |
|
|
571
|
+
| WatermarkRotation | int | no | The rotation of the watermark. |
|
|
572
|
+
| WatermarkHorizontalPosition | WatermarkHorizontalPositionEnum_EnumValue | no | The horizontal origin of the watermark. Can be WatermarkHCenter, WatermarkHLeft, or WatermarkHRight. |
|
|
573
|
+
| WatermarkHorizontalOffset | double | no | The offset of the watermark from its horizontal origin. |
|
|
574
|
+
| WatermarkVerticalPosition | WatermarkVerticalPositionEnum_EnumValue | no | The vertical origin of the watermark. Can be WatermarkVCenter, WatermarkVLeft, or WatermarkVRight. |
|
|
575
|
+
| WatermarkVerticalOffset | double | no | The offset of the watermark from its vertical origin. |
|
|
576
|
+
|
|
577
|
+
**Table 22**: WatermarkPreferenceProperties Represented as Elements
|
|
578
|
+
|
|
579
|
+
| Name | Type | Req | Description |
|
|
580
|
+
| ---------------------- | ------------------------------------------------------ | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
581
|
+
| WatermarkFontColor | list of 3 doubles or InDesign UIColorType_TypeDef | no | The color for the watermark, specified either as an array of three doubles, each in the range 0 to 255 and representing R, G, and B values, or as a UI color. |
|
|
582
|
+
|
|
583
|
+
### 10.2.15 ConditionalTextPreference
|
|
584
|
+
|
|
585
|
+
**Schema Example 16. ConditionalTextPreference**
|
|
586
|
+
|
|
587
|
+
```rnc
|
|
588
|
+
ConditionalTextPreference_Object = element ConditionalTextPreference { attribute ShowConditionIndicators { ConditionIndicatorMode_EnumValue }?, attribute ActiveConditionSet { xsd:string }? }
|
|
589
|
+
```
|
|
590
|
+
|
|
591
|
+
**Table 23**: ConditionalTextPreference Properties Represented as Attributes
|
|
592
|
+
|
|
593
|
+
| Name | Type | Req | Description |
|
|
594
|
+
| --------------------------- | --------- | ------- | ------------------------------------------------------------------------------------------------------- |
|
|
595
|
+
| ShowConditionIndicators | boolean | no | If true, display the condition indicators in the user interface. |
|
|
596
|
+
| ActiveConditionSet | string | no | Areference to the active condtion set, as the value of the Self attribute of the <Condition> element. |
|
|
597
|
+
|
|
598
|
+
### 10.2.16 TextVariable
|
|
599
|
+
|
|
600
|
+
A text variable is an item you insert in text that varies according to the context. For example, the Last Page Number variable displays the page number of the last page of the document. If you add or remove pages, the variable is updated accordingly. The text variables in an IDML document are defined by <TextVariable> elements. Text variables come in a variety of types: <CustomTextVariablePreference>, <FileNameVariablePreference>, <PageNumberVariablePreference>, <ChapterNumberVariablePreference>, <DateVariablePreference>, <MatchCharacterStylePreference>, <MatchParagraphStylePreference>, or <CaptionMetadataVariablePreference >element.
|
|
601
|
+
|
|
602
|
+
The type of a text variable is defined by the Variable Type attribute of the <TextVariable> element, and the definition of the text variable is specified in a child element of the <TextVariable> element.
|
|
603
|
+
|
|
604
|
+
A <TextVariable> element stored in the <Document> element is only the definition of the text variable. Text variable instances appear in <Story> elements, and all of the formatting of the text variable instance is defined there, not in the <Document> element. For more on text variables, refer to the InDesign online help.
|
|
605
|
+
|
|
606
|
+
**Schema Example 17. TextVariable**
|
|
607
|
+
|
|
608
|
+
```rnc
|
|
609
|
+
TextVariable_Object = element TextVariable { attribute Self { xsd:string }, attribute Name { xsd:string }, attribute VariableType { VariableTypes_EnumValue }?, ( CustomTextVariablePreference_Object?& FileNameVariablePreference_Object?& PageNumberVariablePreference_Object?& ChapterNumberVariablePreference_Object?& DateVariablePreference_Object?& MatchCharacterStylePreference_Object?& MatchParagraphStylePreference_Object?& CaptionMetadataVariablePreference_Object? ) }
|
|
610
|
+
```
|
|
611
|
+
|
|
612
|
+
**Table 24**: TextVariable Properties Represented as Attributes
|
|
613
|
+
|
|
614
|
+
| Name | Type | Req | Description |
|
|
615
|
+
| -------------- | -------------------------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
616
|
+
| Name | string | no | The name of the text variable. |
|
|
617
|
+
| VariableType | VariableTypes_EnumValue | no | The TextVariable type. Can be CustomText Type (Custom text variable), FileNameType (File name variable), LastPageNumberType (Last page number variable), ChapterNumberType (Chapter number variable), OutputDate Type (Output date variable), CreationDate Type (CreationDate variable), Modification DateType (ModificationDate variable), MatchCharacterStyleType (Running header CharacterStyle variable), MatchParagraph StyleType (Running header paragraph style variable), XrefPageNumberType (Cross ref- erence page number type), XrefChapter NumberType (Cross reference chapter number type), or LiveCaptionType (Metadata caption type). |
|
|
618
|
+
|
|
619
|
+
Text variables share some attributes, as shown in the following table.
|
|
620
|
+
|
|
621
|
+
**Table 25**: Common Text Variable Properties Represented as Attributes
|
|
622
|
+
|
|
623
|
+
| Name | Type | Req | Description |
|
|
624
|
+
| ------------ | -------- | ------- | ------------------------------------------------------ |
|
|
625
|
+
| TextBefore | string | no | Text that appears before the text variable instance. |
|
|
626
|
+
| TextAfter | string | no | Text that appears after a text variable instance. |
|
|
627
|
+
|
|
628
|
+
**Schema Example 18. Custom TextVariable Preference**
|
|
629
|
+
|
|
630
|
+
```rnc
|
|
631
|
+
CustomTextVariablePreference_Object = element CustomTextVariablePreference { element Properties { element Contents { (string_type, xsd:string ) | (enum_type, SpecialCharacters_EnumValue ) | (object_type, xsd:string ) }? } ? }
|
|
632
|
+
```
|
|
633
|
+
|
|
634
|
+
**Table 26**: Custom TextVariable Preference Properties Represented as Elements
|
|
635
|
+
|
|
636
|
+
| Name | Type | Req | Description |
|
|
637
|
+
| ---------- | ------------------------------------------- | ------- | ---------------------------------------------------------- |
|
|
638
|
+
| Contents | Special Characters_Enum Value or string | no | The text contents of the CustomTextVariable- Preference. |
|
|
639
|
+
|
|
640
|
+
**Schema Example 19. File Name Variable Preference**
|
|
641
|
+
|
|
642
|
+
```rnc
|
|
643
|
+
FileNameVariablePreference_Object = element FileNameVariablePreference { attribute TextBefore { xsd:string }?, attribute IncludePath { xsd:boolean }?, attribute IncludeExtension { xsd:boolean }?, attribute TextAfter { xsd:string }? }
|
|
644
|
+
```
|
|
645
|
+
|
|
646
|
+
**Table 27**: File Name Variable Preference Properties Represented as Attributes
|
|
647
|
+
|
|
648
|
+
| Name | Type | Req | Description |
|
|
649
|
+
| ------------------ | --------- | ------- | ----------------------------------------------------------------------- |
|
|
650
|
+
| IncludePath | boolean | no | If true, include the file path in the text variable instances. |
|
|
651
|
+
| IncludeExtension | boolean | no | If true, include the file extension in the text vari- able instances. |
|
|
652
|
+
|
|
653
|
+
**Schema Example 20. Page Number Variable Preference**
|
|
654
|
+
|
|
655
|
+
```rnc
|
|
656
|
+
PageNumberVariablePreference_Object = element PageNumberVariablePreference { attribute TextBefore { xsd:string }?, attribute Format { VariableNumberingStyles_EnumValue }?, attribute TextAfter { xsd:string }?, attribute Scope { VariableScopes_EnumValue }? }
|
|
657
|
+
```
|
|
658
|
+
|
|
659
|
+
**Table 28**: Page Number Variable Preference Properties Represented as Attributes
|
|
660
|
+
|
|
661
|
+
| Name | Type | Req | Description |
|
|
662
|
+
| -------- | -------------------------------------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
663
|
+
| Format | VariableNumberingStyles_EnumValue | no | The format of the page number. Can be Current, Arabic, UpperRoman, LowerRoman, UpperLetters, LowerLetters, Kanji, Full WidthArabic, SingleLeadingZeros, or DoubleLeadingZeros. |
|
|
664
|
+
| Scope | VariableScopes_EnumValue | no | The scope of the page number variable. Can be DocumentScope or SectionScope. |
|
|
665
|
+
|
|
666
|
+
**Schema Example 21. Chapter Number Variable Preference**
|
|
667
|
+
|
|
668
|
+
```rnc
|
|
669
|
+
ChapterNumberVariablePreference_Object = element ChapterNumberVariablePreference { attribute TextBefore { xsd:string }?, attribute Format { VariableNumberingStyles_EnumValue }?, attribute TextAfter { xsd:string }? }
|
|
670
|
+
```
|
|
671
|
+
|
|
672
|
+
**Table 29**: Chapter Number Variable Preference Properties Represented as Attributes
|
|
673
|
+
|
|
674
|
+
| Name | Type | Req | Description |
|
|
675
|
+
| -------- | -------------------------------------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
676
|
+
| Format | VariableNumberingStyles_EnumValue | no | The format of the chapter number. Can be Current, Arabic, UpperRoman, LowerRoman, UpperLetters, LowerLetters, Kanji, Full WidthArabic, SingleLeadingZeros, or DoubleLeadingZeros. |
|
|
677
|
+
|
|
678
|
+
**Schema Example 22. Date Variable Preference**
|
|
679
|
+
|
|
680
|
+
```rnc
|
|
681
|
+
DateVariablePreference_Object = element DateVariablePreference { attribute TextBefore { xsd:string }?, attribute Format { xsd:string }?, attribute TextAfter { xsd:string }? }
|
|
682
|
+
```
|
|
683
|
+
|
|
684
|
+
**Table 30**: Date Variable Preference Properties Represented as Attributes
|
|
685
|
+
|
|
686
|
+
| Name | Type | Req | Description |
|
|
687
|
+
| -------- | -------- | ------- | ---------------------------------- |
|
|
688
|
+
| Format | string | no | The format of the date variable. |
|
|
689
|
+
|
|
690
|
+
**Schema Example 23. MatchCharacterStylePreference**
|
|
691
|
+
|
|
692
|
+
```rnc
|
|
693
|
+
MatchCharacterStylePreference_Object = element MatchCharacterStylePreference { attribute TextBefore { xsd:string }?, attribute TextAfter { xsd:string }?, attribute AppliedCharacterStyle { xsd:string }?, attribute SearchStrategy { SearchStrategies_EnumValue }?, attribute ChangeCase { ChangeCaseOptions_EnumValue }?, attribute DeleteEndPunctuation { xsd:boolean }? }
|
|
694
|
+
```
|
|
695
|
+
|
|
696
|
+
**Table 31**: MatchCharacterStylePreference Properties Represented as Attributes
|
|
697
|
+
|
|
698
|
+
| Name | Type | Req | Description |
|
|
699
|
+
| ------------------------- | ------------------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------- |
|
|
700
|
+
| AppliedCharacterStyle | string | no | Areference to the CharacterStyle applied to the text variable (as the value of the Self attribute of the <CharacterStyle> ). |
|
|
701
|
+
| ChangeCase | ChangeCase Options_EnumValue | no | Change the case of the text variable. Can be Uppercase, Lowercase, Titlecase, or Sentencecase. |
|
|
702
|
+
| DeleteEnd Punctuation | boolean | no | If true, delete any punctuation at the end of the text variable. |
|
|
703
|
+
| SearchStrategy | SearchStrategies_EnumValue | no | The search strategy applied to the text variable. Can be FirstOnPage or LastOnPage. |
|
|
704
|
+
|
|
705
|
+
**Schema Example 24. MatchParagraphStylePreference**
|
|
706
|
+
|
|
707
|
+
```rnc
|
|
708
|
+
MatchParagraphStylePreference_Object = element MatchParagraphStylePreference { attribute TextBefore { xsd:string }?, attribute TextAfter { xsd:string }?, attribute AppliedParagraphStyle { xsd:string }?, attribute SearchStrategy { SearchStrategies_EnumValue }?, attribute ChangeCase { ChangeCaseOptions_EnumValue }?, attribute DeleteEndPunctuation { xsd:boolean }? }
|
|
709
|
+
```
|
|
710
|
+
|
|
711
|
+
**Table 32**: MatchParagraphStylePreference Properties Represented as Attributes
|
|
712
|
+
|
|
713
|
+
| Name | Type | Req | Description |
|
|
714
|
+
| ------------------------- | ------------------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------- |
|
|
715
|
+
| AppliedCharacterStyle | string | no | Areference to the paragraph style applied to the text variable (as the value of the Self attribute of the <ParagraphStyle> ). |
|
|
716
|
+
| ChangeCase | ChangeCase Options_EnumValue | no | Change the case of the text variable. Can be Uppercase, Lowercase, Titlecase, or Sentencecase. |
|
|
717
|
+
| DeleteEnd Punctuation | boolean | no | If true, delete any punctuation at the end of the text variable. |
|
|
718
|
+
| SearchStrategy | SearchStrategies_EnumValue | no | The search strategy applied to the text variable. Can be FirstOnPage or LastOnPage. |
|
|
719
|
+
|
|
720
|
+
**Schema Example 25. CaptionMetadataVariablePreference**
|
|
721
|
+
|
|
722
|
+
```rnc
|
|
723
|
+
CaptionMetadataVariablePreference_Object = element CaptionMetadataVariablePreference { attribute TextBefore { xsd:string }?, attribute MetadataProviderName { xsd:string }?, attribute TextAfter { xsd:string }? }
|
|
724
|
+
```
|
|
725
|
+
|
|
726
|
+
**Table 33**: MatchParagraphStylePreference Properties Represented as Attributes
|
|
727
|
+
|
|
728
|
+
| Name | Type | Req | Description |
|
|
729
|
+
| ------------------------ | -------- | ------- | -------------------------------------------------------------------- |
|
|
730
|
+
| MetaDataProviderName | string | no | The metadata provider name for the variable (see table following). |
|
|
731
|
+
|
|
732
|
+
**Table 34**: MetaData Provider Names
|
|
733
|
+
|
|
734
|
+
| Attribute Value | Description |
|
|
735
|
+
| ------------------------------ | ---------------------------------------------------------------------------------------- |
|
|
736
|
+
| "$ID/#LinkInfoNameStr" | Uses the file name of the linked file as the caption metadata value. |
|
|
737
|
+
| "$ID/#LinkInfoStatusStr" | Uses the link status as the caption metadata value. |
|
|
738
|
+
| "$ID/#LinkInfoPageNumberStr" | Uses the page number on which the linked file is placed as the caption metadata value. |
|
|
739
|
+
| "$ID/#LinkInfoSizeStr" | Uses the size of the linked file as the caption metadata value. |
|
|
740
|
+
| "$ID/#LinkInfoColorSpaceStr" | Uses the color space of the linked file as the caption metadata value. |
|
|
741
|
+
|
|
742
|
+
| "$ID/#LinkInfoColorProfileStr" | Uses the ICC profile of the linked file as the caption metadata value. |
|
|
743
|
+
| ---------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
744
|
+
| "$ID/#LinkInfoLayerOverrideStr" | Uses the Layer Overrides information for the linked file as the caption metadata value. |
|
|
745
|
+
| "$ID/#LinkInfoPPIStr" | Uses the actual PPI of the linked file as the caption metadata value. |
|
|
746
|
+
| "$ID/#LinkInfoEffectivePPIStr" | Uses the effective PPI of the linked file as the caption meta- data value. |
|
|
747
|
+
| "$ID/#LinkInfoTransparencyStr" | Uses the transparency information (Yes/No) of the linked file as the caption metadata value. |
|
|
748
|
+
| "$ID/#LinkInfoPixelSizeStr" | Uses the dimensions of the linked file as the caption metadata value. |
|
|
749
|
+
| "$ID/#LinkInfoScaleStr" | Uses the scaling percentage of the linked file as the caption metadata value. |
|
|
750
|
+
| "$ID/#LinkInfoSkewStr" | Uses the skew angle of the linked file as the caption metadata value. |
|
|
751
|
+
| "$ID/#LinkInfoRotationStr" | Uses the rotation angle of the linked file as the caption meta- data value. |
|
|
752
|
+
| "$ID/#LinkInfoLayerNameStr" | Uses the layer name on which the linked file is placed as the caption metadata value. |
|
|
753
|
+
| "$ID/#LinkInfoFullPathStr" | Uses the full path of the linked file as the caption metadata value. |
|
|
754
|
+
| "$ID/#LinkInfoXMPApertureStr" | Uses the XMPaperture information of the linked file as the caption metadata value. This corresponds to the "FNum- ber" element in the XMPnamespace "http://ns.adobe.com/ exif/1.0/" in the linked file's XMPpacket. |
|
|
755
|
+
| "$ID/#LinkInfoXMPShutterStr" | Uses the XMPexposure time information of the linked file as the caption metadata value. This corresponds to the "Expo- sureTime " element in the XMPnamespace "http://ns.adobe. com/exif/1.0/" in the linked file's XMPpacket. |
|
|
756
|
+
| "$ID/#LinkInfoXMPISOSpeedStr" | Uses the XMPISO speed rating of the linked file as the cap- tion metadata value. This corresponds to the "ISOSpeedRat- ings " element in the XMPnamespace "http://ns.adobe.com/ exif/1.0/" in the linked file's XMPpacket. |
|
|
757
|
+
| "$ID/#LinkInfoXMPFocalLengthStr" | Uses the XMPfocal length of the linked file as the caption metadata value. This corresponds to the "FocalLength " ele- ment in the XMPnamespace "http://ns.adobe.com/exif/1.0/" in the linked file's XMPpacket. |
|
|
758
|
+
| "$ID/#LinkInfoXMPCaptureDateStr" | Uses the XMPcapture date/time of the linked file as the cap- tion metadata value. This corresponds to the "DateTimeOrigi- nal " element in the XMPnamespace "http://ns.adobe.com/ exif/1.0/" in the linked file's XMPpacket. |
|
|
759
|
+
| "$ID/#LinkInfoXMPCameraStr" | Uses the XMPcamera model information of the linked file as the caption metadata value. This corresponds to the "Model" element in the XMPnamespace "http://ns.adobe.com/ tiff/1.0/" in the linked file's XMPpacket. |
|
|
760
|
+
|
|
761
|
+
| "$ID/#LinkInfoXMPLensStr" | Uses the XMPlens information of the linked file as the cap- tion metadata value. This corresponds to the "Lens" element in the XMPnamespace "http://ns.adobe.com/exif/1.0/aux/" in the linked file's XMPpacket. |
|
|
762
|
+
| ---------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
763
|
+
| "$ID/#LinkInfoUsedSwatchesStr" | Uses the list of swatches used by the linked file as the caption metadata value. |
|
|
764
|
+
| "$ID/#LinkInfoXMPCreditStr" | Uses the XMPcredits information of the linked file as the caption metadata value. This corresponds to the "Credit" element in the XMPnamespace "http://ns.adobe.com/photo- shop/1.0/" in the linked file's XMPpacket. |
|
|
765
|
+
| "$ID/#LinkInfoXMPHeadlineStr" | Uses the XMPheadline information of the linked file as the caption metadata value. This corresponds to the "Headline" element in the XMPnamespace "http://ns.adobe.com/photo- shop/1.0/" in the linked file's XMPpacket. |
|
|
766
|
+
| "$ID/#LinkInfoXMPLocationStr" | Uses the XMPlocation information of the linked file as the caption metadata value. This corresponds to the "Location" element in the XMPnamespace "http://iptc.org/std/Iptc4x- mpCore/1.0/xmlns/" in the linked file's XMPpacket. |
|
|
767
|
+
| "$ID/#LinkInfoXMPLocationCityS tr" | Uses the XMPcity information of the linked file as the cap- tion metadata value. This corresponds to the "City" element in the XMPnamespace "http://ns.adobe.com/photoshop/1.0/" in the linked file's XMPpacket. |
|
|
768
|
+
| "$ID/#LinkInfoXMPLocation StateStr" | Uses the XMPstate information of the linked file as the cap- tion metadata value. This corresponds to the "State" element in the XMPnamespace "http://ns.adobe.com/photoshop/1.0/" in the linked file's XMPpacket. |
|
|
769
|
+
| "$ID/#LinkInfoXMPLocation CountryStr" | Uses the XMPcountry information of the linked file as the caption metadata value. This corresponds to the "Country" element in the XMPnamespace "http://ns.adobe.com/photo- shop/1.0/" in the linked file's XMPpacket. |
|
|
770
|
+
| "$ID/#LinkInfoFormatTypeStr" | Uses the file format of the linked file as the caption metadata value. |
|
|
771
|
+
| "$ID/#LinkInfoLinkTypeStr" | Uses the link type of the linked file as the caption metadata value. |
|
|
772
|
+
| "$ID/#LinkInfoXMPTitleStr" | Uses the XMPdocument title information of the linked file as the caption metadata value. This corresponds to the "title" element in the XMPnamespace "http://purl.org/dc/ele- ments/1.1/" in the linked file's XMPpacket. |
|
|
773
|
+
| "$ID/#LinkInfoXMPAuthorStr" | Uses the XMPdocument author information of the linked file as the caption metadata value. This corresponds to the "creator" element in the XMPnamespace "http://purl.org/dc/ elements/1.1/" in the linked file's XMPpacket. |
|
|
774
|
+
| "$ID/#LinkInfoXMPDescriptionStr" | Uses the XMPdescription information of the linked file as the caption metadata value. This corresponds to the "descrip- tion" element in the XMPnamespace "http://purl.org/dc/ele- ments/1.1/" in the linked file's XMPpacket. |
|
|
775
|
+
| "$ID/#LinkInfoXMPKeywordsStr" | Uses the XMPkeywords of the linked file as the caption metadata value. This corresponds to the "subject" element in the XMPnamespace "http://purl.org/dc/elements/1.1/" in the linked file's XMPpacket. |
|
|
776
|
+
|
|
777
|
+
| "$ID/#LinkInfoXMPRatingStr" | Uses the XMPrating of the linked file as the caption meta- data value. This corresponds to the "Rating" element in the XMPnamespace "http://ns.adobe.com/xap/1.0/" in the linked file's XMPpacket. |
|
|
778
|
+
| ---------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
779
|
+
| "$ID/#LinkInfoXMPCreatorToolStr" | Uses the XMPcreator tool information of the linked file as the caption metadata value. This corresponds to the "Creator- Tool" element in the XMPnamespace "http://ns.adobe.com/ xap/1.0/" in the linked file's XMPpacket. |
|
|
780
|
+
| "$ID/#LinkInfoXMPCreateDateStr" | Uses the XMPcreation date-time of the linked file as the cap- tion metadata value. This corresponds to the "CreateDate" ele- ment in the XMPnamespace "http://ns.adobe.com/xap/1.0/" in the linked file's XMPpacket. |
|
|
781
|
+
| "$ID/#LinkInfoXMPCopyrightStr" | Uses the XMPcopyright information of the linked file as the caption metadata value. This corresponds to the "Copyright" element in the XMPnamespace "http://ns.adobe.com/xap/1.0/ rights/" in the linked file's XMPpacket. |
|
|
782
|
+
| "$ID/#LinkInfoPlaceDateStr" | Uses the last imported date-time of the linked file as the cap- tion metadata value. |
|
|
783
|
+
| "$ID/#LinkInfoModDateStr" | Uses the ModificationDate-time of the linked file as the cap- tion metadata value. |
|
|
784
|
+
| "$ID/#LinkInfoChildLinksStr" | Uses the number of child links of the linked file as the caption metadata value. |
|
|
785
|
+
| "$ID/#LinkInfoFolder0Str" | Uses the folder name in which the linked file exists as the caption metadata value. Blank if it is the root folder. |
|
|
786
|
+
| "$ID/#LinkInfoFolder1Str" | Uses the folder name of the parent of the folder in which the linked file exists as the caption metadata value. Blank if it is the root folder, or if path is too short to identify this folder. |
|
|
787
|
+
| "$ID/#LinkInfoFolder2Str" | Uses the folder name of the second level parent of the folder in which the linked file exists as the caption metadata value. Blank if it is the root folder, or if path is too short to identify this folder. |
|
|
788
|
+
| "$ID/#LinkInfoFolder3Str" | Uses the folder name of the third level parent of the folder in which the linked file exists as the caption metadata value. Blank if it is the root folder, or if path is too short to identify this folder. |
|
|
789
|
+
| "$ID/#LinkInfoFolder4Str" | Uses the folder name of the fourth level parent of the folder in which the linked file exists as the caption metadata value. Blank if it is the root folder, or if path is too short to identify this folder. |
|
|
790
|
+
| "$ID/#LinkInfoFolder5Str" | Uses the folder name of the fifth level parent of the folder in which the linked file exists as the caption metadata value. Blank if it is the root folder, or if path is too short to identify this folder. |
|
|
791
|
+
| "$ID/#LinkInfoFolder6Str" | Uses the folder name of the sixth level parent of the folder in which the linked file exists as the caption metadata value. Blank if it is the root folder, or if path is too short to identify this folder. |
|
|
792
|
+
|
|
793
|
+
| "$ID/#LinkInfoFolder7Str" | Uses the folder name of the seventh level parent of the folder in which the linked file exists as the caption metadata value. Blank if it is the root folder, or if path is too short to identify this folder. |
|
|
794
|
+
| ---------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
795
|
+
| "$ID/#LinkInfoFolder8Str" | Uses the folder name of the eighth level parent of the folder in which the linked file exists as the caption metadata value. Blank if it is the root folder, or if path is too short to identify this folder. |
|
|
796
|
+
| "$ID/#LinkInfoVolumeNameStr" | Uses the drive or root volume name of the linked file as the caption metadata value. |
|
|
797
|
+
| "$ID/#LinkInfoStoryModStr" | Uses the story modification status of the linked story as the caption metadata value. |
|
|
798
|
+
| "$ID/#LinkInfoStoryNote CountDesc" | Uses the number of notes in the linked story as the caption metadata value. |
|
|
799
|
+
| "$ID/#LinkInfoStoryTrack ChangesDesc" | Uses the TrackChanges setting (on or off) of the linked story as the caption metadata value. |
|
|
800
|
+
| "$ID/#LinkInfoStoryLabelDesc" | Uses the label of the linked story as the caption metadata value. |
|
|
801
|
+
| "$ID/#LinkInfoStoryAssignment Desc" | Uses the name of the assignment to which the linked story belongs as the caption metadata value. |
|
|
802
|
+
| "$ID/#LinkInfoStoryAssigned ToDesc" | Uses the UserName to whom the assignment containing the linked story is assigned as the caption metadata value. |
|
|
803
|
+
| "$ID/#LinkInfoWorkgroupStatus Str" | Uses the Version Cue status of the linked file as the caption metadata value. |
|
|
804
|
+
| "$ID/#LinkInfoWorkgroupUserStr" | Uses the Version Cue UserName of the linked file as the cap- tion metadata value. |
|
|
805
|
+
|
|
806
|
+
**IDML Example 11. TextVariable**
|
|
807
|
+
|
|
808
|
+
```xml
|
|
809
|
+
<TextVariable Self="dTextVariablenLast Page Number" Name="Last Page Number" Variable Type="Last Page Number Type"> <PageNumberVariablePreference Self="d Text Variablen Last Page Number PageNumberVariablePreference1" TextBefore="" Format="Current" TextAfter="" Scope="Section Scope"/> </TextVariable>
|
|
810
|
+
```
|
|
811
|
+
|
|
812
|
+
### 10.2.17 Layer
|
|
813
|
+
|
|
814
|
+
InDesign documents can contain layers, which are transparent planes on which you can arrange the page items in your layout. Layers can be used to control the stacking order of objects in a document, but they can also be used to organize objects in a document. Layers in an InDesign document are document-wide. In IDML, <Layer> elements appear inside the <Document> element in the designmap.xml file.
|
|
815
|
+
|
|
816
|
+
For more on layers, refer to the InDesign online help.
|
|
817
|
+
|
|
818
|
+
**Schema Example 26. Layer**
|
|
819
|
+
|
|
820
|
+
```rnc
|
|
821
|
+
Layer_Object = element Layer { attribute Self { xsd:string }, attribute Name { xsd:string }?, attribute Visible { xsd:boolean }?, attribute Locked { xsd:boolean }?, attribute IgnoreWrap { xsd:boolean }?, attribute ShowGuides { xsd:boolean }?, attribute LockGuides { xsd:boolean }?, attribute UI { xsd:boolean }?, attribute Expendable { xsd:boolean }?, attribute Printable { xsd:boolean }?, element Properties { element LayerColor { InDesignUIColorType_TypeDef }?& element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ? }
|
|
822
|
+
```
|
|
823
|
+
|
|
824
|
+
**Table 35**: Layer Properties Represented as Attributes
|
|
825
|
+
|
|
826
|
+
| Name | Type | Req | Description |
|
|
827
|
+
| ------------ | --------- | ------- | ------------------------------------------------------ |
|
|
828
|
+
| Expendable | boolean | no | If true, the layer can be deleted. |
|
|
829
|
+
| IgnoreWrap | boolean | no | If true, objects on the layer ignore text wrap. |
|
|
830
|
+
| Locked | boolean | no | If true, the layer is locked. |
|
|
831
|
+
| LockGuides | boolean | no | If true, the guides on the layer are locked. |
|
|
832
|
+
| Name | string | no | The name of the layer. |
|
|
833
|
+
| Printable | boolean | no | If true, the objects on the layer can be printed. |
|
|
834
|
+
| ShowGuides | boolean | no | If true, show the guides assigned to the layer. |
|
|
835
|
+
| Visible | boolean | no | If true, the layer is visible in the user interface. |
|
|
836
|
+
|
|
837
|
+
**Table 36**: Layer Properties Represented as Elements
|
|
838
|
+
|
|
839
|
+
| Name | Type | Req | Description |
|
|
840
|
+
| ------------ | ------------------------------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
841
|
+
| LayerColor | InDesignUIColorType_TypeDef | no | The color of the layer, specified either as an array of three doubles, each in the range 0 to 255 and representing R, G, and B values, or as an InDesignUIColorType enumeration. |
|
|
842
|
+
|
|
843
|
+
**IDML Example 12. Layer**
|
|
844
|
+
|
|
845
|
+
```xml
|
|
846
|
+
<Layer Self="ub5" Name="Layer 1" Visible="true" Locked="false" IgnoreWrap="false" ShowGuides="true" LockGuides="false" UI="true" Expendable="true" Printable="true"> <Properties><LayerColor type="enumeration">Light Blue</LayerColor></Properties> </Layer>
|
|
847
|
+
```
|
|
848
|
+
|
|
849
|
+
### 10.2.18 Section
|
|
850
|
+
|
|
851
|
+
Page ranges in an InDesign document can be broken up into sections. Section properties control the page numbering system in use in the pages of the section. For more on sections, refer to the InDesign online help.
|
|
852
|
+
|
|
853
|
+
```rnc
|
|
854
|
+
Schema Example 27. Section Section_Object = element Section { attribute Self { xsd:string }, attribute Length { xsd:int }?, attribute Name { xsd:string }?, attribute AlternateLayoutLength { xsd:int }?, attribute AlternateLayout { xsd:string }?, attribute Pagination { PaginationOption_EnumValue }?, attribute PaginationMaster { xsd:string }?, attribute ContinueNumbering { xsd:boolean }?, attribute IncludeSectionPrefix { xsd:boolean }?, attribute PageNumberStart { xsd:int {minInclusive="1" maxInclusive="999999"} }?, attribute Marker { xsd:string }?, attribute PageStart { xsd:string }?, attribute SectionPrefix { xsd:string }?, element Properties { element PageNumberStyle { (enum_type, PageNumberStyle_EnumValue ) | (string_type, xsd:string ) }?& element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ? }
|
|
855
|
+
```
|
|
856
|
+
|
|
857
|
+
Note: InDesign features a variety of approaches to numbering and cross references; section numbering can interact with special characters, text variables, and paragraph numbering.
|
|
858
|
+
|
|
859
|
+
**Table 37**: Section Properties Represented as Attributes
|
|
860
|
+
|
|
861
|
+
| Name | Type | Req | Description |
|
|
862
|
+
| ------------------------ | ------------------------ | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
|
863
|
+
| ContinueNumbering | boolean | no | If true, continue page numbering from the pre- vious section in the document. |
|
|
864
|
+
| IncludeSectionPrefix | boolean | no | If true, include the value of the SectionPrefix attribute in the nameo of the section. |
|
|
865
|
+
| Length | int | no | The number of pages in the section. |
|
|
866
|
+
| Marker | string | no | The marker character for the section. |
|
|
867
|
+
| Name | string | no | The name of the section. |
|
|
868
|
+
| PageNumberStart | int | no | The starting page number of the section. Range: 1 to 999999. |
|
|
869
|
+
| PageNumberStyle | PageNumber_EnumStyle | no | The page numbering style applied to the section. Can be UpperRoman, LowerRoman, UpperLetters, LowerLetters, Arabic, Kanji, DoubleLeadingZeros, TripleLeadingZeros, ArabicAlifBaTah, ArabicAbjad, HebrewBiblical, or HebrewNonStandard. |
|
|
870
|
+
| PageStart | string | no | Areference to the page that starts the section (as the value of the Self attribute of the <Page> element). |
|
|
871
|
+
| SectionPrefix | string | no | The prefix for the section. |
|
|
872
|
+
|
|
873
|
+
| Name | Type | Req | Description |
|
|
874
|
+
| ------------------------- | ----------------------------- | ------- | -------------------------------------------------------------------------------- |
|
|
875
|
+
| AlternateLayoutLength | int | no | The number of pages in the alternate layout sec- tion. |
|
|
876
|
+
| AlternateLayout | string | no | The alternate layout name for a set of pages. |
|
|
877
|
+
| Pagination | PaginationOption_EnumValue | no | The pagination option for this section for adding and removing pages in HTML5. |
|
|
878
|
+
| PaginationMaster | string | no | The master to apply when pages are added in HTML5. |
|
|
879
|
+
|
|
880
|
+
### 10.2.19 DocumentUser
|
|
881
|
+
|
|
882
|
+
**Schema Example 28. DocumentUser**
|
|
883
|
+
|
|
884
|
+
```rnc
|
|
885
|
+
DocumentUser_Object = element DocumentUser { attribute Self { xsd:string }, attribute UserName { xsd:string }, element Properties { element UserColor { InCopyUIColorType_TypeDef }? } ? }
|
|
886
|
+
```
|
|
887
|
+
|
|
888
|
+
**Table 38**: DocumentUser Properties Represented as Attributes
|
|
889
|
+
|
|
890
|
+
| Name | Type | Req | Description |
|
|
891
|
+
| ---------- | -------- | ------- | ----------------------- |
|
|
892
|
+
| UserName | string | no | The name of the user. |
|
|
893
|
+
|
|
894
|
+
**Table 39**: DocumentUser Properties Represented as Elements
|
|
895
|
+
|
|
896
|
+
| Name | Type | Req | Description |
|
|
897
|
+
| ----------- | -------------------------------------------------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
898
|
+
| UserColor | list of doubles or InDesignUI ColorType_TypeDef | no | The color for the user, specified either as an array of three doubles, each in the range 0 to 255 and representing R, G, and B values, or as an InDesignUIColorType enumeration. |
|
|
899
|
+
|
|
900
|
+
### 10.2.20 Cross Reference Format
|
|
901
|
+
|
|
902
|
+
InDesign documents can contain cross references. Cross references are made up of <BuildingBlock> elements.
|
|
903
|
+
|
|
904
|
+
**Schema Example 29. CrossReferenceFormat**
|
|
905
|
+
|
|
906
|
+
```rnc
|
|
907
|
+
CrossReferenceFormat_Object = element CrossReferenceFormat { attribute Self { xsd:string }, attribute Name { xsd:string }?, attribute AppliedCharacterStyle { xsd:string }?, element Properties { element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ?, ( BuildingBlock_Object* ) }
|
|
908
|
+
```
|
|
909
|
+
|
|
910
|
+
**Table 40**: CrossReferenceFormat Properties Represented as Attributes
|
|
911
|
+
|
|
912
|
+
| Name | Type | Req | Description |
|
|
913
|
+
| ------------------------- | -------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------- |
|
|
914
|
+
| AppliedCharacterStyle | string | no | Areference to the CharacterStyle applied to the cross reference format (as the value of the Self attribute of the <CharacterStyle>). |
|
|
915
|
+
| Name | string | yes | The name of the cross reference format. |
|
|
916
|
+
|
|
917
|
+
Cross references are made up of 'building blocks'-elements that specify text and text formatting that can be added to a cross reference (for more on building blocks, refer to the InDesign documentation). The <CrossReferenceFormat> element can contain multiple <BuildingBlock> elements.
|
|
918
|
+
|
|
919
|
+
**Schema Example 30. BuildingBlock**
|
|
920
|
+
|
|
921
|
+
```rnc
|
|
922
|
+
BuildingBlock_Object = element BuildingBlock { attribute Self { xsd:string }, attribute BlockType { BuildingBlockTypes_EnumValue }, attribute AppliedCharacterStyle { xsd:string }?, attribute CustomText { xsd:string }?, attribute AppliedDelimiter { xsd:string }?, attribute IncludeDelimiter { xsd:boolean }? }
|
|
923
|
+
```
|
|
924
|
+
|
|
925
|
+
**Table 41**: BuildingBlock Properties Represented as Attributes
|
|
926
|
+
|
|
927
|
+
| Name | Type | Req | Description |
|
|
928
|
+
| ------------------------- | -------------------------------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
929
|
+
| AppliedCharacterStyle | string | no | Areference to the CharacterStyle applied to the cross reference format (as the value of the Self attribute of the <CharacterStyle>). A reference to the CharacterStyle applied to the text variable (as the value of the Self attribute of the <CharacterStyle>). |
|
|
930
|
+
| AppliedDelimiter | string | no | The delimiter character of the building block. |
|
|
931
|
+
| BlockType | BuildingBlockTypes_EnumValue | no | The type of the building block. Can be CustomStringBuildingBlock, FileNameBuildingBlock, ChapterNumberBuildingBlock, PageNumberBuildingBlock, FullParagraphBuildingBlock, ParagraphNumberBuildingBlock, ParagraphTextBuildingBlock, or BookmarkNameBuildingBlock. |
|
|
932
|
+
| CustomText | string | no | The text of the building block. Valid only when the BlockType is CustomStringBuilding Block. |
|
|
933
|
+
|
|
934
|
+
| Name | Type | Req | Description |
|
|
935
|
+
| ------------------ | --------- | ------- | --------------------------------------------------------------------------- |
|
|
936
|
+
| IncludeDelimiter | boolean | no | If true, include the delimiter character in the building block instances. |
|
|
937
|
+
|
|
938
|
+
**IDML Example 13. BuildingBlock**
|
|
939
|
+
|
|
940
|
+
```xml
|
|
941
|
+
<BuildingBlock Self="u8bBuildingBlock1" BlockType="ParagraphNumberBuildingBlock" AppliedCharacterStyle="n" CustomText="$ID/" AppliedDelimiter="$ID/" IncludeDelimiter="false"/>
|
|
942
|
+
```
|
|
943
|
+
|
|
944
|
+
### 10.2.21 Index
|
|
945
|
+
|
|
946
|
+
An index in an InDesign document.
|
|
947
|
+
|
|
948
|
+
**Schema Example 31. Index**
|
|
949
|
+
|
|
950
|
+
```rnc
|
|
951
|
+
Index_Object = element Index { attribute Self { xsd:string }, element Properties { element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ?, ( Topic_Object* ) }
|
|
952
|
+
```
|
|
953
|
+
|
|
954
|
+
#### Topic
|
|
955
|
+
|
|
956
|
+
A topic in an index.
|
|
957
|
+
|
|
958
|
+
**Schema Example 32. Topic**
|
|
959
|
+
|
|
960
|
+
```rnc
|
|
961
|
+
Topic_Object = element Topic { attribute Self { xsd:string }, attribute SortOrder { xsd:string }?, attribute Name { xsd:string }, ( Topic_Object*& CrossReference_Object* ) }
|
|
962
|
+
```
|
|
963
|
+
|
|
964
|
+
**Table 42**: Topic Properties Represented as Attributes
|
|
965
|
+
|
|
966
|
+
| Name | Type | Req | Description |
|
|
967
|
+
| ----------- | -------- | ------- | --------------------------------------- |
|
|
968
|
+
| Name | string | yes | The name of the topic. |
|
|
969
|
+
| SortOrder | string | no | The indexing sort order of the topic. |
|
|
970
|
+
|
|
971
|
+
#### CrossReference
|
|
972
|
+
|
|
973
|
+
A cross reference topic in the document's index (not a cross reference text variable).
|
|
974
|
+
|
|
975
|
+
**Schema Example 33. CrossReference**
|
|
976
|
+
|
|
977
|
+
```rnc
|
|
978
|
+
CrossReference_Object = element CrossReference { attribute Self { xsd:string }, attribute ReferencedTopic { xsd:string }?, attribute CrossReferenceType { CrossReferenceType_EnumValue }?, attribute CustomTypeString { xsd:string }?, element Properties { element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ? }
|
|
979
|
+
```
|
|
980
|
+
|
|
981
|
+
**Table 43**: Cross Reference Properties Represented as Attributes
|
|
982
|
+
|
|
983
|
+
| Name | Type | Req | Description |
|
|
984
|
+
| ---------------------- | -------------------------------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
985
|
+
| CrossReferenceType | CrossReferenceType_EnumValue | no | The type of the cross reference. Can be CustomCrossReference, CustomCrossReferenceAfter, CustomCrossReferenceBefore, See, SeeAlso, SeeAlsoHerein, SeeHerein, or SeeOrAlsoBracket. |
|
|
986
|
+
| CustomTypeString | string | no | The string for a custom cross reference (used when CrossReferenceType is CustomCrossReference, CustomCrossReferenceAfter, or CustomCrossReferenceBefore). |
|
|
987
|
+
| ReferencedTopic | string | no | The topic of this cross reference. |
|
|
988
|
+
|
|
989
|
+
### 10.2.22 Hyperlinks
|
|
990
|
+
|
|
991
|
+
You can create hyperlinks in an InDesign document so that when you export to PDF, a viewer can click a link to jump to other locations in the same PDF document, to other PDF documents, or to web sites. Hyperlinks are made up of a hyperlink source and a hyperlink destination, and various display/formatting options.
|
|
992
|
+
|
|
993
|
+
A hyperlink source is hyperlinked text, a hyperlinked TextFrame, or a hyperlinked graphics frame. A hyperlink destination is the URL, position in text, or page to which a hyperlink jumps. A source can jump to only one destination, but any number of sources can jump to the same destination.
|
|
994
|
+
|
|
995
|
+
**Schema Example 34. Hyperlink**
|
|
996
|
+
|
|
997
|
+
```rnc
|
|
998
|
+
Hyperlink_Object = element Hyperlink { attribute Self { xsd:string }, attribute Name { xsd:string }?, attribute Source { xsd:string }, attribute Visible { xsd:boolean }?, attribute Highlight { HyperlinkAppearanceHighlight_EnumValue }?, attribute Width { HyperlinkAppearanceWidth_EnumValue }?, attribute BorderStyle { HyperlinkAppearanceStyle_EnumValue }?, attribute Hidden { xsd:boolean }?, attribute DestinationUniqueKey { xsd:int }?, element Properties { element BorderColor { InDesignUIColorType_TypeDef }?& element Destination { (element FileName { string_type, xsd:string }, element Volumn { string_type, xsd:string }, element DirectoryId { long_type, xsd:int }, element DataLinkClassId { long_type, xsd:int }, element DestinationUid { long_type, xsd:int }) | (object_type, xsd:string ) }?& element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ? }
|
|
999
|
+
```
|
|
1000
|
+
|
|
1001
|
+
**Table 44**: Hyperlink Properties Represented as Attributes
|
|
1002
|
+
|
|
1003
|
+
| Name | Type | Req | Description |
|
|
1004
|
+
| ------------------------ | -------------------------------------------- | ------- | ------------------------------------------------------------------------------------------------ |
|
|
1005
|
+
| Name | string | yes | The name of the hyperlink. |
|
|
1006
|
+
| Source | string | yes | Areference to the source of the hyperlink (as the value of the Self attribute of the element). |
|
|
1007
|
+
| Visible | boolean | no | If true, they hyperlink will be visible in the exported PDF. |
|
|
1008
|
+
| Highlight | HyperlinkAppearanceHighlight_EnumValue | no | The highight of the hyperlink. Can be None, Invert, Outline or Inset. |
|
|
1009
|
+
| Width | HyperlinkAppearanceWidth_EnumValue | | The width of the stroke applied to the hyperlink Can be Thin, Medium, or Thick. |
|
|
1010
|
+
| BorderStyle | HyperlinkAppearanceStyle_EnumValue | no | The border style of the hyperlink. Can be Solid or Dashed. |
|
|
1011
|
+
| Hidden | boolean | no | If true, the hyperlink is hidden in the output PDF. |
|
|
1012
|
+
| DestinationUniqueKey | int | no | Aunique key identifying the hyperlink destina- tion. |
|
|
1013
|
+
|
|
1014
|
+
#### HyperlinkPageDestination
|
|
1015
|
+
|
|
1016
|
+
A hyperlink page destination specifies a page in the document as the destination for a hyperlink.
|
|
1017
|
+
|
|
1018
|
+
**Schema Example 35. HyperlinkPageDestination**
|
|
1019
|
+
|
|
1020
|
+
```rnc
|
|
1021
|
+
HyperlinkPageDestination_Object = element HyperlinkPageDestination { attribute Self { xsd:string }, attribute Name { xsd:string }, attribute NameManually { xsd:boolean }?, attribute DestinationPage { xsd:string }?, attribute ViewSetting { HyperlinkDestinationPageSetting_EnumValue }?, attribute ViewPercentage { xsd:double {minInclusive="5" maxInclusive="4000"} }?, attribute Hidden { xsd:boolean }?, attribute DestinationUniqueKey { xsd:int }?, element Properties { element ViewBounds { UnitRectangleBoundsType_TypeDef }?& element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ? }
|
|
1022
|
+
```
|
|
1023
|
+
|
|
1024
|
+
**Table 45**: HyperlinkPageDestination Properties Represented as Attributes
|
|
1025
|
+
|
|
1026
|
+
| Name | Type | Req | Description |
|
|
1027
|
+
| ------------------------ | ----------------------------------------------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
1028
|
+
| DestinationPage | string | no | The destination (target) page of the hyperlink. |
|
|
1029
|
+
| DestinationUniqueKey | int | no | Aunique key identifying the hyperlink destina- tion. |
|
|
1030
|
+
| Hidden | boolean | no | If true, the hyperlink is hidden in the PDF. |
|
|
1031
|
+
| Name | string | yes | The name of the hyperlink page destination. The name must be unique within the IDML document. |
|
|
1032
|
+
| NameManually | boolean | no | If true, name the hyperlink page destination manually. |
|
|
1033
|
+
| ViewPercentage | double | no | The view percentage, if ViewSetting is Fixed. |
|
|
1034
|
+
| ViewSetting | HyperlinkDestinationPageSetting_EnumValue | no | The view at which to view the content of the hyperlink. Can be Fixed, FitView, FitWindow, FitWidth, FitHeight, FitVisible, or InheritZoom. |
|
|
1035
|
+
|
|
1036
|
+
**Table 46**: HyperlinkPageDestination Properties Represented as Elements
|
|
1037
|
+
|
|
1038
|
+
| Name | Type | Req | Description |
|
|
1039
|
+
| ------------ | ------------------------------------ | ------- | ------------------------------------------------------------------------------------------------------------- |
|
|
1040
|
+
| ViewBounds | UnitRectangleBoundsType_TypeDef | yes | The view rectangle, specified in the format [y1, x1, y2, x2]. Note: Valid only when view setting is Fixed. |
|
|
1041
|
+
|
|
1042
|
+
### HyperlinkURLDestination
|
|
1043
|
+
|
|
1044
|
+
A hyperlink page destination specifies a web address as the destination for a hyperlink.
|
|
1045
|
+
|
|
1046
|
+
**Schema Example 36. HyperlinkURLDestination**
|
|
1047
|
+
|
|
1048
|
+
```rnc
|
|
1049
|
+
HyperlinkURLDestination_Object = element HyperlinkURLDestination { attribute Self { xsd:string }, attribute DestinationUniqueKey { xsd:int }?, attribute Name { xsd:string }, attribute DestinationURL { xsd:string }?, attribute Hidden { xsd:boolean }?, element Properties { element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ? }
|
|
1050
|
+
```
|
|
1051
|
+
|
|
1052
|
+
**Table 47**: HyperlinkPageDestination Properties Represented as Attributes
|
|
1053
|
+
|
|
1054
|
+
| Name | Type | Req | Description |
|
|
1055
|
+
| ------------------------ | --------- | ------- | ---------------------------------------------------------------------------------------------- |
|
|
1056
|
+
| DestinationUniqueKey | int | no | Aunique key identifying the hyperlink URL destination. |
|
|
1057
|
+
| DestinationURL | string | no | The URL of the hyperlink. |
|
|
1058
|
+
| Name | string | yes | The name of the hyperlink URL destination. The name must be unique within the IDML document. |
|
|
1059
|
+
| Hidden | boolean | no | If true, the hyperlink is hidden in the PDF. |
|
|
1060
|
+
|
|
1061
|
+
#### HyperlinkExternalPageDestination
|
|
1062
|
+
|
|
1063
|
+
A hyperlink page destination specifies a page outside the document as the destination for a hyperlink.
|
|
1064
|
+
|
|
1065
|
+
**Schema Example 37. HyperlinkExternalPageDestination**
|
|
1066
|
+
|
|
1067
|
+
```rnc
|
|
1068
|
+
HyperlinkExternalPageDestination_Object = element HyperlinkExternalPageDestination { attribute Self { xsd:string }, attribute DestinationUniqueKey { xsd:int }?, attribute Name { xsd:string }?, attribute DocumentPath { xsd:string }?, attribute DestinationPageIndex { xsd:int {minInclusive="1" maxInclusive="9999"} }?, attribute ViewSetting { HyperlinkDestinationPageSetting_EnumValue }?, attribute ViewPercentage { xsd:double {minInclusive="5" maxInclusive="4000"} }?, attribute Hidden { xsd:boolean }?, element Properties { element ViewBounds { UnitRectangleBoundsType_TypeDef }?& element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ? }
|
|
1069
|
+
```
|
|
1070
|
+
|
|
1071
|
+
**Table 48**: HyperlinkExternalPageDestination Properties Represented as Attributes
|
|
1072
|
+
|
|
1073
|
+
| Name | Type | Req | Description |
|
|
1074
|
+
| ------------------------ | ----------------------------------------------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
1075
|
+
| DestinationPageIndex | int | no | The index of the destination page in the target document. Range: 1 to 9999. |
|
|
1076
|
+
| DocumentPath | string | no | The path to the target document of the hyper- link. |
|
|
1077
|
+
| DestinationUniqueKey | int | no | Aunique key identifying the hyperlink URL destination. |
|
|
1078
|
+
| Name | string | yes | The name of the hyperlink external page desti- nation. |
|
|
1079
|
+
| ViewSetting | HyperlinkDestinationPageSetting_EnumValue | no | The view at which to view the content of the hyperlink. Can be Fixed, FitView, FitWindow, FitWidth, FitHeight, FitVisible, or InheritZoom. |
|
|
1080
|
+
| ViewPercentage | double | no | The view percentage, if ViewSetting is Fixed. |
|
|
1081
|
+
|
|
1082
|
+
**Table 49**: HyperlinkExternalPageDestination Properties Represented as Elements
|
|
1083
|
+
|
|
1084
|
+
| Name | Type | Req | Description |
|
|
1085
|
+
| ------------ | ---------------------- | ------- | ------------------------------------------------------------------------------------------------------------- |
|
|
1086
|
+
| ViewBounds | list of four doubles | yes | The view rectangle, specified in the format [y1, x1, y2, x2]. Note: Valid only when view setting is Fixed. |
|
|
1087
|
+
|
|
1088
|
+
#### HyperlinkPageItemSource
|
|
1089
|
+
|
|
1090
|
+
A hyperlink page item source is a hyperlink associated with a page item.
|
|
1091
|
+
|
|
1092
|
+
**Schema Example 38. HyperlinkPageItemSource**
|
|
1093
|
+
|
|
1094
|
+
```rnc
|
|
1095
|
+
HyperlinkPageItemSource_Object = element HyperlinkPageItemSource { attribute Self { xsd:string }, attribute Name { xsd:string }?, attribute SourcePageItem { xsd:string }, attribute Hidden { xsd:boolean }?, element Properties { element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ? }
|
|
1096
|
+
```
|
|
1097
|
+
|
|
1098
|
+
**Table 50**: HyperlinkExternalPageDestination Properties Represented as Attributes
|
|
1099
|
+
|
|
1100
|
+
| Name | Type | Req | Description |
|
|
1101
|
+
| -------- | --------- | ------- | --------------------------------------------------------------------------- |
|
|
1102
|
+
| Name | string | yes | The name of the hyperlink external page desti- nation. |
|
|
1103
|
+
| Hidden | boolean | no | If true, the hyperlink page item source will be hidden in the output PDF. |
|
|
1104
|
+
|
|
1105
|
+
| Name | Type | Req | Description |
|
|
1106
|
+
| ---------------- | -------- | ------- | --------------------------------------------------------------- |
|
|
1107
|
+
| SourcePageItem | string | yes | Areference to a page item as the value of its Self attribute. |
|
|
1108
|
+
|
|
1109
|
+
**IDML Example 14. Hyperlink**
|
|
1110
|
+
|
|
1111
|
+
```xml
|
|
1112
|
+
<HyperlinkURLDestination Self="HyperlinkURLDestination/adobe.com" DestinationUniqueKey="1" Name="adobe.com" DestinationURL="http://www.adobe.com" Hidden="false"/> <Hyperlink Self="ufb" Name="website" Source="uf8" Visible="false" Highlight="None" Width="Thin" BorderStyle="Solid" Hidden="false" DestinationUniqueKey="1"> <Properties> <BorderColor type="enumeration">Black</BorderColor> <Destination type="object">HyperlinkURLDestination/adobe.com</Destination> </Properties> </Hyperlink>
|
|
1113
|
+
```
|
|
1114
|
+
|
|
1115
|
+
### 10.2.23 Bookmark
|
|
1116
|
+
|
|
1117
|
+
InDesign documents can add bookmarks for navigation in PDFs you export.
|
|
1118
|
+
|
|
1119
|
+
**Schema Example 39. Bookmark**
|
|
1120
|
+
|
|
1121
|
+
```rnc
|
|
1122
|
+
Bookmark_Object = element Bookmark { attribute Self { xsd:string }, attribute Name { xsd:string }?, attribute Destination { xsd:string }, element Properties { element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ?, ( Bookmark_Object* ) }
|
|
1123
|
+
```
|
|
1124
|
+
|
|
1125
|
+
**Table 51**: Bookmark Properties Represented as Attributes
|
|
1126
|
+
|
|
1127
|
+
| Name | Type | Req | Description |
|
|
1128
|
+
| ------------- | -------- | ------- | -------------------------------------------------------------------------------------------- |
|
|
1129
|
+
| Destination | string | no | The destination of the bookmark, as a reference to the Self attribute of a <Page> element. |
|
|
1130
|
+
| Name | string | yes | The name of the bookmark. |
|
|
1131
|
+
|
|
1132
|
+
### 10.2.24 PreflightProfile
|
|
1133
|
+
|
|
1134
|
+
**Schema Example 40. PreflightProfile**
|
|
1135
|
+
|
|
1136
|
+
```rnc
|
|
1137
|
+
PreflightProfile_Object = element PreflightProfile { attribute Self { xsd:string }, attribute Name { xsd:string }?, attribute Description { xsd:string }?, element Properties { element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ?, ( PreflightProfileRule_Object*& PreflightRuleInstance_Object* ) }
|
|
1138
|
+
```
|
|
1139
|
+
|
|
1140
|
+
**Table 52**: PreflightProfile Properties Represented as Attributes
|
|
1141
|
+
|
|
1142
|
+
| Name | Type | Req | Description |
|
|
1143
|
+
| ------------- | -------- | ------- | ------------------------------------------- |
|
|
1144
|
+
| Description | string | no | The description of the preflight profile. |
|
|
1145
|
+
|
|
1146
|
+
#### PreflightProfileRule
|
|
1147
|
+
|
|
1148
|
+
**Schema Example 41. PreflightProfileRule**
|
|
1149
|
+
|
|
1150
|
+
```rnc
|
|
1151
|
+
PreflightProfileRule_Object = element PreflightProfileRule { attribute Self { xsd:string }, attribute Name { xsd:string }?, attribute Id { xsd:string }, attribute Description { xsd:string }?, attribute Flag { PreflightRuleFlag_EnumValue }?, element Properties { element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ?, ( RuleDataObject_Object* ) }
|
|
1152
|
+
```
|
|
1153
|
+
|
|
1154
|
+
**Table 53**: PreflightProfileRule Properties Represented as Attributes
|
|
1155
|
+
|
|
1156
|
+
| Name | Type | Req | Description |
|
|
1157
|
+
| ------------- | ------------------------------- | ------- | ---------------------------------------------------------------------------------------- |
|
|
1158
|
+
| Description | string | no | The description of the preflight profile rule. |
|
|
1159
|
+
| Flag | PreflightRuleFlag_EnumValue | no | Can be ReturnAsError, ReturnAsInformational, ReturnAsWarning, or RuleIsDisabled. |
|
|
1160
|
+
| Id | string | yes | The unique ID of the preflight rule. |
|
|
1161
|
+
|
|
1162
|
+
**Schema Example 42. RuleDataObject**
|
|
1163
|
+
|
|
1164
|
+
```rnc
|
|
1165
|
+
RuleDataObject_Object = element RuleDataObject { attribute Self { xsd:string }, attribute Name { xsd:string }, attribute DataType { RuleDataType_EnumValue }, attribute Id { xsd:string }?, element Properties { element DataValue { (string_type, xsd:string ) | (double_type, xsd:double ) | (long_type, xsd:int ) | (short_type, xsd:short ) | (bool_type, xsd:boolean ) | (object_type, xsd:string ) | (list_type, element ListItem { (string_type, xsd:string ) | (double_type, xsd:double ) | (long_type, xsd:int ) | (short_type, xsd:short ) | (bool_type, xsd:boolean ) | (object_type, xsd:string ) | (list_type, element PreflightRuleDataListType { PreflightRuleDataListType_TypeDef }* ) }* ) } } }
|
|
1166
|
+
```
|
|
1167
|
+
|
|
1168
|
+
**Table 54**: RuleDataObject Properties Represented as Attributes
|
|
1169
|
+
|
|
1170
|
+
| Name | Type | Req | Description |
|
|
1171
|
+
| ---------- | ------------------------- | ------- | ----------------------------------- |
|
|
1172
|
+
| DataType | RuleDataType_EnumValue | yes | The data type of the rule. Can be |
|
|
1173
|
+
| ID | string | no | The ID of the rule. |
|
|
1174
|
+
|
|
1175
|
+
**Table 55**: RuleDataObject Properties Represented as Elements
|
|
1176
|
+
|
|
1177
|
+
| Name | Type | Req | Description |
|
|
1178
|
+
| ------------ | -------------------------------------- | ------- | ----------------------------------- |
|
|
1179
|
+
| Properties | PreflightRule DataListType_TypeDef | yes | The preflight rule specification. |
|
|
1180
|
+
|
|
1181
|
+
#### PreflightRuleInstance
|
|
1182
|
+
|
|
1183
|
+
**Schema Example 43. PreflightRuleInstance**
|
|
1184
|
+
|
|
1185
|
+
```rnc
|
|
1186
|
+
PreflightRuleInstance_Object = element PreflightRuleInstance { attribute Self { xsd:string }, attribute Name { xsd:string }?, attribute Id { xsd:string }, attribute Description { xsd:string }?, attribute Flag { PreflightRuleFlag_EnumValue }?, element Properties { element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ?, ( RuleDataObject_Object* ) }
|
|
1187
|
+
```
|
|
1188
|
+
|
|
1189
|
+
**Table 56**: PreflightRuleInstance Properties Represented as Attributes
|
|
1190
|
+
|
|
1191
|
+
| Name | Type | Req | Description |
|
|
1192
|
+
| ------------- | ------------------------------- | ------- | ---------------------------------------------------------------------------------------- |
|
|
1193
|
+
| Description | string | no | The description of the preflight rule instance. |
|
|
1194
|
+
| Flag | PreflightRule Flag_EnumValue | no | Can be ReturnAsError, ReturnAs Informational, ReturnAsWarning, or RuleIsDisabled. |
|
|
1195
|
+
| Id | string | yes | The unique ID of the preflight rule. |
|
|
1196
|
+
|
|
1197
|
+
### 10.2.25 DataMergeImagePlaceholder
|
|
1198
|
+
|
|
1199
|
+
**Schema Example 44. DataMergeImagePlaceholder**
|
|
1200
|
+
|
|
1201
|
+
```rnc
|
|
1202
|
+
DataMergeImagePlaceholder_Object = element DataMergeImagePlaceholder { attribute Self { xsd:string }, attribute Field { xsd:string }, attribute PlaceholderPageItem { xsd:string } }
|
|
1203
|
+
```
|
|
1204
|
+
|
|
1205
|
+
**Table 57**: DataMergePlaceholder Properties Represented as Attributes
|
|
1206
|
+
|
|
1207
|
+
| Name | Type | Req | Description |
|
|
1208
|
+
| ----------------------- | -------- | ------- | ------------------------------------------------------------------ |
|
|
1209
|
+
| Field | string | yes | The name of the associated data field. |
|
|
1210
|
+
| PlaceholderPage Item | string | yes | Areference to the Self attribute of the place- holder page item. |
|
|
1211
|
+
|
|
1212
|
+
### 10.2.26 HyphenationException
|
|
1213
|
+
|
|
1214
|
+
**Schema Example 45. HyphenationException**
|
|
1215
|
+
|
|
1216
|
+
```rnc
|
|
1217
|
+
HyphenationException_Object = element HyphenationException { attribute Self { xsd:string }, attribute Name { xsd:string }, attribute RemovedExceptions { list { xsd:string * } }?, attribute AddedExceptions { list { xsd:string * } }? }
|
|
1218
|
+
```
|
|
1219
|
+
|
|
1220
|
+
**Table 58**: HyphenationException Properties Represented as Attributes
|
|
1221
|
+
|
|
1222
|
+
| Name | Type | Req | Description |
|
|
1223
|
+
| ------------------- | ----------------- | ------- | ------------------------------------------ |
|
|
1224
|
+
| RemovedExceptions | list of strings | no | Alist of removed hyphenation exceptions. |
|
|
1225
|
+
| AddedExceptions | list of strings | no | Alist of added hyphenation exceptions. |
|
|
1226
|
+
|
|
1227
|
+
### 10.2.27 IndexingSortOption
|
|
1228
|
+
|
|
1229
|
+
**Schema Example 46. IndexingSortOption**
|
|
1230
|
+
|
|
1231
|
+
```rnc
|
|
1232
|
+
IndexingSortOption_Object = element IndexingSortOption { attribute Self { xsd:string }, attribute Name { xsd:string }, attribute Include { xsd:boolean }?, attribute Priority { xsd:int }?, attribute HeaderType { (HeaderTypes_EnumValue ) | (NothingEnum_EnumValue ) }? }
|
|
1233
|
+
```
|
|
1234
|
+
|
|
1235
|
+
**Table 59**: IndexingSortOption Properties Represented as Attributes
|
|
1236
|
+
|
|
1237
|
+
| Name | Type | Req | Description |
|
|
1238
|
+
| ------------ | ------------------------ | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
1239
|
+
| Include | boolean | no | If true, include the indexing sort option when generating the index. |
|
|
1240
|
+
| HeaderType | HeaderTypes_EnumValue | no | Indexing sort option header types. Can be BasicLatin, Belarusian, Bulgarian, ChinesePinyin, ChineseStrokeCount, Croatian, Czech, DanishNorwegian, Estonian, SwedishFinnish, HiraganaAll, HiraganaConsonantsOnly, Hungarian, Katakana, KatakanaConsonantsOnly, KoreanConsonant, KoreanConsonant PlusVowel, Latvian, Lithuanian, Polish, Romanian, Russian, Slovak, Slovenian, Spanish, Turkish, or Ukranian. |
|
|
1241
|
+
| Priority | int | no | Priority of this indexing sort option (shuffles prior entries down). |
|
|
1242
|
+
|
|
1243
|
+
### 10.2.28 ABullet
|
|
1244
|
+
|
|
1245
|
+
**Schema Example 47. ABullet{**
|
|
1246
|
+
|
|
1247
|
+
```rnc
|
|
1248
|
+
ABullet_Object = element ABullet { attribute Self { xsd:string }, attribute CharacterType { BulletCharacterType_EnumValue }?, attribute CharacterValue { xsd:int }?, element Properties { element BulletsFont { (object_type, xsd:string ) | (string_type, xsd:string ) | (enum_type, AutoEnum_EnumValue ) }?& element BulletsFontStyle { (string_type, xsd:string ) | (enum_type, NothingEnum_EnumValue ) | (enum_type, AutoEnum_EnumValue ) }? } ? }
|
|
1249
|
+
```
|
|
1250
|
+
|
|
1251
|
+
**Table 60**: ABullet Properties Represented as Attributes
|
|
1252
|
+
|
|
1253
|
+
| Name | Type | Req | Description |
|
|
1254
|
+
| ---------------- | --------------------------------- | ------- | ------------------------------------------------------------------------------- |
|
|
1255
|
+
| CharacterType | BulletCharacterType_EnumValue | no | The character type. Can be GlyphWithFont, UnicodeOnly, or UnicodeWithFont. |
|
|
1256
|
+
| CharacterValue | int | no | The bullet character as a unicode ID or a glyph ID. |
|
|
1257
|
+
|
|
1258
|
+
**Table 61**: ABullet Properties Represented as Elements
|
|
1259
|
+
|
|
1260
|
+
| Name | Type | Req | Description |
|
|
1261
|
+
| ------------------ | ------------------------------------------------------------------ | ------- | ------------------------------------- |
|
|
1262
|
+
| BulletsFont | string, a reference to a font element, or an AutoEnum_EnumValue | no | Font of the bullet character. |
|
|
1263
|
+
| BulletsFontStyle | string, Nothing Enum_EnumValue, AutoEnum_EnumValue | no | FontStyle of the bullet character. |
|
|
1264
|
+
|
|
1265
|
+
### 10.2.29 Assignment
|
|
1266
|
+
|
|
1267
|
+
**Schema Example 48. Assignment**
|
|
1268
|
+
|
|
1269
|
+
```rnc
|
|
1270
|
+
Assignment_Object = element Assignment { attribute Self { xsd:string }, attribute Name { xsd:string }?, attribute UserName { xsd:string }?, attribute ExportOptions { AssignmentExportOptions_EnumValue }?, attribute IncludeLinksWhenPackage { xsd:boolean }?, attribute FilePath { xsd:string }, element Properties { element FrameColor { (InDesignUIColorType_TypeDef ) | (enum_type, NothingEnum_EnumValue ) }?& element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ?, ( AssignedStory_Object* ) }
|
|
1271
|
+
```
|
|
1272
|
+
|
|
1273
|
+
|
|
1274
|
+
|
|
1275
|
+
| Name | Type | Req | Description |
|
|
1276
|
+
| ---------- | -------- | ------- | ---------------- |
|
|
1277
|
+
| UserName | string | no | The UserName. |
|
|
1278
|
+
|
|
1279
|
+
| Name | Type | Req | Description |
|
|
1280
|
+
| --------------------------- | ------------------------------------- | ------- | --------------------------------------------------------------- |
|
|
1281
|
+
| ExportOptions | AssignmentExportOptions_EnumValue | no | Can be AssignedSpreads, EmptyFrames, or Everything. |
|
|
1282
|
+
| IncludeLinksWhenPackage | boolean | no | If true, includes linked files when packaging the assignment. |
|
|
1283
|
+
| FilePath | string | yes | The file path to the saved assignment. |
|
|
1284
|
+
|
|
1285
|
+
**Table 62**: Assignment Properties Represented as Elements
|
|
1286
|
+
|
|
1287
|
+
| Name | Type | Req | Description |
|
|
1288
|
+
| ------------ | --------------------------------------------------------------------------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
1289
|
+
| FrameColor | list of doubles, InDesignUIColorType_TypeDef, or NothingEnum_EnumValue | no | The color of the assignment's frames, specified either as an array of three doubles, each in the range 0 to 255 and representing R, G, and B values, or as an InDesignUIColorType enumeration. |
|
|
1290
|
+
|
|
1291
|
+
#### AssignedStory
|
|
1292
|
+
|
|
1293
|
+
**Schema Example 49. Assignment Properties Represented as Attributes**
|
|
1294
|
+
|
|
1295
|
+
```rnc
|
|
1296
|
+
AssignedStory_Object = element AssignedStory { attribute Self { xsd:string }, attribute Name { xsd:string }?, attribute StoryReference { xsd:string }?, attribute FilePath { xsd:string }?, element Properties { element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ? }
|
|
1297
|
+
```
|
|
1298
|
+
|
|
1299
|
+
**Schema Example 50. Assignment Properties Represented as Attributes**
|
|
1300
|
+
|
|
1301
|
+
| Name | Type | Req | Description |
|
|
1302
|
+
| ---------------- | -------- | ------- | ------------------------------------------------ |
|
|
1303
|
+
| StoryReference | string | no | Areference to the AssignedStory. |
|
|
1304
|
+
| FilePath | string | no | The file path (colon delimited on the Mac OS). |
|
|
1305
|
+
|
|
1306
|
+
### 10.2.30 Article
|
|
1307
|
+
|
|
1308
|
+
Articles give users a way to associate page items with each other for export to electronic publishing (ePub) formats. For more on articles, refer to the Adobe InDesign CS5.5 online help.
|
|
1309
|
+
|
|
1310
|
+
The <Article> element appears as a child of the <Document> element (in an IDML package, the <Document> element is in the designmap.xml file). The <Article> element includes a list of one or more <ArticleMember> elements. Each <ArticleMember> element corresponds to a page item associated with the article.
|
|
1311
|
+
|
|
1312
|
+
The <ArticleMember> elements contain the attribute ItemRef, which simply points to the unique ID (self attribute) of the corresponding page item (for more on element cross references in IDML documents, refer to 9.5.4, 'Object Reference Format,' in the Adobe IDML File Format Specification). A given page item can be associated with any number of articles.
|
|
1313
|
+
|
|
1314
|
+
**Schema Example 51. Article**
|
|
1315
|
+
|
|
1316
|
+
```rnc
|
|
1317
|
+
Article_Object = element Article { attribute Self { xsd:string }, attribute Name { xsd:string }?, attribute ArticleExportStatus { xsd:boolean }?, element Properties { element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ?, ( ArticleMember_Object* )}
|
|
1318
|
+
```
|
|
1319
|
+
|
|
1320
|
+
**Table 63**: Article Properties Represented as Attributes
|
|
1321
|
+
|
|
1322
|
+
| Name | Type | Req | Description |
|
|
1323
|
+
| ----------------------- | --------- | ------- | ------------------------------------------------------------- |
|
|
1324
|
+
| ArticleExportStatus | boolean | no | If true, include the article information in exported files. |
|
|
1325
|
+
|
|
1326
|
+
**Table 64**: Article Properties Represented as Elements
|
|
1327
|
+
|
|
1328
|
+
| ArticleMember | ArticleMember_Object | yes | Alist of one or more article members (which store cross references to the page items associ- ated with the article). |
|
|
1329
|
+
| ----------------- | ------------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------ |
|
|
1330
|
+
|
|
1331
|
+
**IDML Example 15. Article**
|
|
1332
|
+
|
|
1333
|
+
```xml
|
|
1334
|
+
<Article Self="ue1" Name="my article1" ArticleExportStatus="true"> <ArticleMember Self="ue1ArticleMember0" ItemRef="ue0"/> <ArticleMember Self="ue1ArticleMember1" ItemRef="udc"/> </Article>
|
|
1335
|
+
```
|
|
1336
|
+
|
|
1337
|
+
#### ArticleMember
|
|
1338
|
+
|
|
1339
|
+
**Schema Example 52. ArticleMember**
|
|
1340
|
+
|
|
1341
|
+
```rnc
|
|
1342
|
+
ArticleMember_Object = element ArticleMember { attribute Self { xsd:string }, attribute ItemRef { xsd:string } }
|
|
1343
|
+
```
|
|
1344
|
+
|
|
1345
|
+
**Table 65**: ArticleMember Properties Represented as Attributes
|
|
1346
|
+
|
|
1347
|
+
| Name | Type | Req | Description |
|
|
1348
|
+
| --------- | -------- | ------- | ----------------------------------------------------------------- |
|
|
1349
|
+
| ItemRef | String | yes | Areference to the self attribute of the associ- ated page item. |
|