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,1299 @@
|
|
|
1
|
+
## 10.4 Stories
|
|
2
|
+
|
|
3
|
+
A story, or 'text flow' is the basic text container in an In Design document; all text exists inside stories. Stories are associated with at least one TextFrame or TextPath, and can span any number of linked TextFrames or TextPaths in a document. TextFrames and TextPaths are page items, and are discussed in the section 'Spreads and Master Spreads'.
|
|
4
|
+
|
|
5
|
+
In an IDML package, the XML documents representing stories are stored inside the 'Stories'. Each file contains a single <Story> element. Story files use the naming convention described in 'IDML Component Names.' The root element of a Story.xml file is the <Story> element, and each story file stores contains a single <Story> element.
|
|
6
|
+
|
|
7
|
+
The <Story> element is very complex. The schema of <Story> element describes more than 200 simple attributes and more than 40 complex attributes that can appear in the <Properties> element of the story. In addition, the <Story> element can contain other child elements, including elements corresponding to inline or anchored frames, tables, notes, hyperlinks, and footnotes.
|
|
8
|
+
|
|
9
|
+
That said, most of these attributes and elements of story are optional. You do not need to construct all of them to assemble a new story for use in an IDML package. A story can be as simple as the following example:
|
|
10
|
+
|
|
11
|
+
**IDML Example 45. Story File in an IDML Package**
|
|
12
|
+
|
|
13
|
+
```xml
|
|
14
|
+
<?xml version="1.0" encoding="UTF8" standalone="yes"?>
|
|
15
|
+
<id Pkg:Story xmlns:id Pkg="http://ns.adobe.com/Adobe In Design/idml/1.0/packaging">
|
|
16
|
+
<Story Self="ucb">
|
|
17
|
+
<ParagraphStyleRange>
|
|
18
|
+
<CharacterStyleRange>
|
|
19
|
+
<Content>Hello World</Content>
|
|
20
|
+
</CharacterStyleRange>
|
|
21
|
+
</ParagraphStyleRange>
|
|
22
|
+
</Story>
|
|
23
|
+
</id Pkg:Story>
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
A version of the same element elsewhere in an IDML package (in designmap.xml, for example) would be the same as the <Story> element in the example above.
|
|
27
|
+
|
|
28
|
+
The <Story> object can contain the default text formatting for the story. Individual instances of local text formatting (i.e., formatting which was not applied by paragraph and character styles) can also appear in the story file. This local formatting will always appear inside a <ParagraphStyleRange> or <CharacterStyleRange> element see 'Local Formatting vs. Styles.'
|
|
29
|
+
|
|
30
|
+
Paragraph and CharacterStyle formatting is applied using references to the Self attribute of <ParagraphStyle> and <CharacterStyle> elements. In an IDML package, these elements are stored in the Styles.xml file inside the Resources folder. The formatting attributes of the styles are stored within that file, not within the <Story> element (see 'Styles').
|
|
31
|
+
|
|
32
|
+
### 10.4.1 Story vs. XMLStory
|
|
33
|
+
|
|
34
|
+
The <XMLStory> element (which is in the Backing Story.xml file in the XML folder of an IDML package) represents unplaced XML elements (i.e., an XML element in the XML structure of the In Design document, that has not yet been placed in the layout) can have all of the same attributes and child elements that a <Story> element can have.
|
|
35
|
+
|
|
36
|
+
### 10.4.2 Story vs. AssignedStory
|
|
37
|
+
|
|
38
|
+
An <AssignedStory> element represents an In Copy file, not a <Story> element. The <AssignedStory> element has an attribute called AssignedStory . The value of this attribute can contain a reference to a <Story> element, or to a page item element such as a <Rectangle> .
|
|
39
|
+
|
|
40
|
+
### 10.4.3 Referring to a Story
|
|
41
|
+
|
|
42
|
+
A <Story> element is referred to by its unique ID-the value of its Self attribute. <TextFrame> and <TextPath> elements refer to the story using the Parent Story attribute, <Link> elements refer to the story using the Parent attribute. In addition, <Document> elements use the Instance List attribute to refer to an index story. Third party developers may create their own references to stories.
|
|
43
|
+
|
|
44
|
+
### 10.4.4 Adding a Story
|
|
45
|
+
|
|
46
|
+
To add a new story to a IDML file or package, you add a <Story> element. In an IDML package, this element can be stored in an XML file in the Stories folder. This file can have any valid XML file name-it does not have to match the naming convention that In Design uses when you export IDML. A single XML file can contain multiple <Story> elements. When you refer to stories in other places in the IDML file, you use the Self attribute of the <Story> element in the file, not the file name.
|
|
47
|
+
|
|
48
|
+
When you add a story, you need to make certain that:
|
|
49
|
+
|
|
50
|
+
- One of the Spread.xml files in the IDML package contains a <TextFrame> or <TextPath> element that contains a reference to the story. If no <TextFrame> or <TextPath> element refers to the story, the story will not be imported, and will not appear in the layout.
|
|
51
|
+
- The paragraph styles, character styles, colors, and other references used in the story have already been defined in files in the Resources folder of the IDML package. If they have not been defined, you'll need to add these definition files to the package.
|
|
52
|
+
|
|
53
|
+
Note: In general, following the same naming scheme and storage approach as In Design uses is good practice, but it's not required. Using the unique identifier of the story in the name of the file makes it easier to find the corresponding <Story> element, and storing a single <Story> per file makes it easier to change text content.
|
|
54
|
+
|
|
55
|
+
### 10.4.5 Local Formatting vs. Styles
|
|
56
|
+
|
|
57
|
+
In In Design, you can use the typesetting controls (in the Control panel, Character panel, or on the Type menu, for example) to apply formatting to text without using paragraph or character styles. When you do this, you're applying local formatting. In Design represents local formatting using attributes and elements of the <Story>, <ParagraphStyleRange>, and <CharacterStyleRange> elements.
|
|
58
|
+
|
|
59
|
+
Most of the time, it's far better to use character and paragraph styles to apply text formatting. Using styles means that the formatting definitions can be changed in one place, rather than being spread throughout the text in a file, and applying a style is much faster than applying a series of local formatting changes. In addition, character and paragraph styles can be included in object, table, and cell styles.
|
|
60
|
+
|
|
61
|
+
In the following example, the first <ParagraphStyleRange> element uses local formatting (specified as part of the <CharacterStyleRange> element); the second applies the same formatting using a paragraph style (specified as the AppliedParagraphStyle attribute). In this example, we've applied only three local formatting attributes to illustrate the point, but completely replacing the formatting applied by a paragraph style could entail the specification of more than two hundred attributes and elements. The two paragraphs have the same formatting, but the second example is a much more efficient use of IDML. Local formatting persists inside a given <ParagraphStyleRange> element until the next <ParagraphStyleRange>, and within a <CharacterStyleRange> until the next <CharacterStyleRange> or <ParagraphStyleRange> .
|
|
62
|
+
|
|
63
|
+
**IDML Example 46. Local Formatting vs. Styles**
|
|
64
|
+
|
|
65
|
+
```xml
|
|
66
|
+
<ParagraphStyleRange AppliedParagraphStyle="ParagraphStyle\kNormalParagraphStyle">
|
|
67
|
+
<CharacterStyleRange AppliedCharacterStyle="CharacterStyle\k[No CharacterStyle]" FillColor="Color\c Red" FontStyle="Italic" PointSize="24">
|
|
68
|
+
<Content>ABC</Content> <br/>
|
|
69
|
+
</CharacterStyleRange>
|
|
70
|
+
</ParagraphStyleRange>
|
|
71
|
+
<ParagraphStyleRange AppliedParagraphStyle="ParagraphStyle\cStyle1">
|
|
72
|
+
<CharacterStyleRange AppliedCharacterStyle="CharacterStyle\k[No CharacterStyle]">
|
|
73
|
+
<Content>ABC</Content>
|
|
74
|
+
</CharacterStyleRange>
|
|
75
|
+
</ParagraphStyleRange>
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
**Figure 30**: Local Formatting vs. Styles
|
|
79
|
+
|
|
80
|
+

|
|
81
|
+
|
|
82
|
+
### 10.4.6 Common Text Properties
|
|
83
|
+
|
|
84
|
+
Just as all text objects in the In Design scripting DOM share a large number of properties, all text elements in an IDML package share a large set of common attributes and elements. These attributes and properties can appear in a <Story>, <ParagraphStyleRange>, or <CharacterStyleRange> element inside a < Story> element, and in a <ParagraphStyle> or <CharacterStyle> elements.
|
|
85
|
+
|
|
86
|
+
To avoid repeating these attributes and elements in every text-related element reference in this specification, we'll describe them in this section, and refer to these descriptions from other sections.
|
|
87
|
+
|
|
88
|
+
**Table 104**: Common Text Properties Represented as Attributes
|
|
89
|
+
|
|
90
|
+
| Name | Type | Req | Description |
|
|
91
|
+
| ------------------------------- | --------------------------------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
92
|
+
| AppliedCharacterStyle | string | no | The CharacterStyle applied to the text. |
|
|
93
|
+
| AppliedConditions | string (space separated list of conditions) | no | The applied conditions. |
|
|
94
|
+
| AppliedLanguage | string | no | The language of the text. Areference to the Self attribute of a language. |
|
|
95
|
+
| AppliedParagraphStyle | string | no | The paragraph style applied to the text. |
|
|
96
|
+
| AutoLeading | double | no | The percent of the type size to use for auto lead- ing. (Range: 0 to 500). |
|
|
97
|
+
| AutoTcy | short | no | The number of half-width characters at or below which the characters automatically run horizon- tally in vertical text. |
|
|
98
|
+
| AutoTcyIncludeRoman | boolean | no | If true, auto tcy includes Roman characters. |
|
|
99
|
+
| BaselineShift | double | no | The baseline shift applied to the text. |
|
|
100
|
+
| BulletsAlignment | ListAlignment_ EnumValue | no | The alignment of the bullet character. Can be LeftAlign (Align left), CenterAlign (Align center), or RightAlign (Align right). |
|
|
101
|
+
| BulletsAndNumberingListType | ListTypeEnumValue | no | List type for bullets and numbering. Can be NoList (No list), BulletList (Bullet list), or NumberedList (Numbered list). |
|
|
102
|
+
| BulletsTextAfter | string | no | The text after string expression for bullets. |
|
|
103
|
+
| BunriKinshi | boolean | no | If true, adds the double period (..), ellipse (...), and double hyphen (--) to the selected kinsoku set. Note: Valid only when a kinsoku set is in effect. |
|
|
104
|
+
| Capitalization | Capitalization_ EnumValue | no | The capitalization scheme. Can be Normal (Do not change the capitalization of the text), SmallCaps (Use small caps for lowercase let- ters), AllCaps (Use all uppercase letters), or CapToSmallCap (Use OpenType small caps). |
|
|
105
|
+
| CharacterAlignment | CharacterAlignment_EnumValue | no | The alignment of small characters to the largest character in the line. Can be AlignBaseline (Aligns small characters in a line to the large character), AlignEmTop (Aligns small char- acters in horizontal text to the top of the em box of large characters In vertical text, aligns characters to the right of the em box), AlignEmCenter (Aligns small characters to the center of the em box of large characters), AlignEmBottom (Aligns small characters in horizontal text to the bottom of the em box of large characters In vertical text, aligns characters to the left of the em box), AlignICFTop (Aligns small characters in horizontal text to the top of the ICF of large characters In vertical text, aligns characters to the right of the ICF), or AlignICFBottom (Aligns small characters in horizontal text to the bottom of the ICF of large characters In vertical text, aligns characters to the left of the ICF). |
|
|
106
|
+
| CharacterDirection | CharacterDirection_EnumValue | no | The direction of the character. Can be DefaultDirection (Default direction), LeftToRightDirection (Left to right direction), or RightToLeftDirection (Right to left direction). |
|
|
107
|
+
| CharacterRotation | double | no | The rotation angle (in degrees) of individual characters. Note: The rotation is counterclock- wise. |
|
|
108
|
+
| CjkGridTracking | boolean | no | If true, uses grid tracking to track non-Roman characters in CJK grids. |
|
|
109
|
+
| Composer | string | no | The text composer to use to compose the text. |
|
|
110
|
+
| DesiredGlyph Scaling | double | no | The desired width (as a percentage) of individual characters. (Range: 50 to 200) |
|
|
111
|
+
| DesiredLetter Spacing | double | no | The desired letter spacing, specified as a per- centge of the built-in space between letters in the font. (Range: -100 to 500) |
|
|
112
|
+
| DesiredWord Spacing | double | no | The desired word spacing, specified as a percent- age of the font word space value. (Range: 0 to 1000) |
|
|
113
|
+
| DiacriticPosition | DiacriticPosition_EnumValue | no | Position of diacritical characters. Can be DefaultPosition (Default position), LoosePosition (Loose position), MediumPosition (Medium position), TightPosition (Tight position), or OpentypePosition (OpenType position). |
|
|
114
|
+
| DigitsType | DigitsType_EnumValue | no | The type of digits to use. Can be DefaultDigits (Default digits), ArabicDigits (Arabic digits), HindiDigits (Hindi digits), or FarsiDigits (Farsi digits). |
|
|
115
|
+
| DropCapCharacters | short | no | The number of characters to drop for a drop cap. |
|
|
116
|
+
| DropCapLines | short | no | The number of lines to drop for a drop cap. |
|
|
117
|
+
| DropcapDetail | int | no | The detailed size and positioning of the drop cap. |
|
|
118
|
+
| EndJoin | OutlineJoin_EnumValue | no | The stroke join type applied to the characters of the text. Can be MiterEndJoin (Miter end join), RoundEndJoin (Rounded end join), or BevelEndJoin (Beveled end join). |
|
|
119
|
+
| FillColor | string | no | The swatch (color, gradient, tint, or mixed ink) applied to the fill of the text, as a reference to the Self attribute of the swatch. |
|
|
120
|
+
| FillTint | double | no | The tint (as a percentage) of the FillColor of the Paragraph. (To specify a tint percentage, use a number in the range of 0 to 100; to use the inherited or overridden value, use -1.) |
|
|
121
|
+
| FirstLineIndent | double | no | The amount to indent the first line. |
|
|
122
|
+
| FontStyle | string | no | The name of the FontStyle. |
|
|
123
|
+
| GlyphForm | AlternateGlyphForms_EnumValue | no | The glyph variant to substitute for standard glyphs. Can be None (Does not use an alternate form), TraditionalForm (Uses the traditional variant), ExpertForm (Uses the expert variant), JIS78Form (Uses the JIS78 variant), JIS83Form (Uses the JIS83 variant), MonospacedHalfWidthForm (Uses the monospaced half-width variant), ThirdWidthForm (Uses the third- width variant), QuarterWidthForm (Uses the quarter-width variant), NLCForm (Uses the NLC variant), ProportionalWidthForm (Substi- tutes proportional glyphs for half-width and full-width glyphs), FullWidthForm (Uses the full-width variant), JIS04Form (Uses the JIS04 variant), or JIS90Form (Uses the JIS90 variant). |
|
|
124
|
+
| GotoNextX | GotoNextX_EnumValue | no | Abreak character that forces text to the next page or column. |
|
|
125
|
+
| GradientFillAngle | double | no | The angle of a linear gradient applied to the fill of the text. (Range: -180 to 180) |
|
|
126
|
+
| GradientFillLength | double | no | The length (for a linear gradient) or radius (for a radial gradient) applied to the fill of the text. |
|
|
127
|
+
| GradientFillStart | UnitPointType_ TypeDef | no | The starting point (in page coordinates) of a gra- dient applied to the fill of the text, in the format [x, y]. |
|
|
128
|
+
| GradientStroke Angle | double | no | The angle of a linear gradient applied to the stroke of the text. (Range: -180 to 180) |
|
|
129
|
+
| GradientStroke Length | double | no | The length (for a linear gradient) or radius (for a radial gradient) applied to the stroke of the text. |
|
|
130
|
+
| GradientStroke Start | UnitPointType_ TypeDef | no | The starting point (in page coordinates) of a gradient applied to the stroke of the text, in the format [x, y]. |
|
|
131
|
+
| GridAlignFirst LineOnly | boolean | no | If true, aligns only the first line to the frame grid or baseline grid. If false, aligns all lines to the grid. |
|
|
132
|
+
| GridAlignment | GridAlignment_EnumValue | no | The alignment to the frame grid or baseline grid. Can be None (Lines are not aligned to the grid), AlignBaseline (Aligns the text baseline to the grid), AlignEmTop (Aligns the top of the em box to the grid), Align EmCenter (Aligns the center of the em box to the grid), AlignEmBottom (Aligns the bot- tom of the em box to the grid), AlignICFTop (Aligns the top of the ICF box to the grid), or Align ICFBottom (Aligns the bottom of the ICF box to the grid). |
|
|
133
|
+
| GridGyoudori | short | no | The manual gyoudori setting. |
|
|
134
|
+
| HorizontalScale | double | no | The horizontal scaling applied to the text as a percentage of its current size. (Range: 1 to 1000) |
|
|
135
|
+
| HyphenWeight | short | no | The relative desirability of better spacing vs. fewer hyphens. Alower value results in greater use of hyphens. (Range: 0 to 100) |
|
|
136
|
+
| HyphenateAcross Columns | boolean | no | If true, allows the last word in a text column to be hyphenated. |
|
|
137
|
+
| HyphenateAfter First | short | no | The mininum number of letters at the beginning of a word that can be broken by a hyphen. |
|
|
138
|
+
| HyphenateBefore Last | short | no | The minimum number of letters at the end of a word that can be broken by a hyphen. |
|
|
139
|
+
| Hyphenate CapitalizedWords | boolean | no | If true, allows hyphenation of capitalized words. |
|
|
140
|
+
| HyphenateLadder Limit | short | no | The maximum number of hyphens that can appear on consecutive lines. To specify unlim- ited consecutive lines, use zero. |
|
|
141
|
+
| HyphenateLastWord | boolean | no | If true, allows hyphenation in the last word in a paragraph. Note: Valid only when hyphenation is true. |
|
|
142
|
+
| HyphenateWords LongerThan | short | no | The minimum number of letters a word must have in order to qualify for hyphenation. |
|
|
143
|
+
| Hyphenation | boolean | no | If true, allows hyphenation. |
|
|
144
|
+
| HyphenationZone | double | no | The amount of white space allowed at the end of a line of non-justified text before hypenation begins. Note: Valid when composer is single-line composer. |
|
|
145
|
+
| IgnoreEdge Alignment | boolean | no | If true, ignores optical edge alignment for the paragraph. |
|
|
146
|
+
| Jidori | short | no | The number of grid squares in which to arrange the text. |
|
|
147
|
+
| Justification | Justification_ EnumValue | no | The paragraph alignment. Can be LeftAlign (Left aligns the text), CenterAlign (Center aligns the text), RightAlign (Right aligns the text), LeftJustified (Justifies the text and left aligns the last line in the paragraph), RightJustified (Justifies the text and right aligns the last line in the paragraph), Center Justified (Justifies text text and center aligns the last line in the paragraph), FullyJustified (Justifies the text, including the last line in the paragraph), ToBindingSide (Aligns text to the binding spine of the page or spread), or Away FromBindingSide (Aligns text to the side opposite the binding spine of the page). |
|
|
148
|
+
| Kashidas | Kashidas_Enum Value | no | Use of Kashidas for justificationCan be DefaultKashidas (Default kashidas), or KashidasOff (Kashidas off). |
|
|
149
|
+
| KeepAllLines Together | boolean | no | If true, keeps all lines of the paragraph together. If false, allows paragraphs to break across pages or columns. |
|
|
150
|
+
| KeepFirstLines | short | no | The minimum number of lines to keep together in a paragraph before allowing a page break. |
|
|
151
|
+
| KeepLastLines | short | no | The minimum number of lines to keep together in a paragraph after a page break. |
|
|
152
|
+
| KeepLinesTogether | boolean | no | If true, keeps a specified number of lines togeth- er when the paragraph breaks across columns or TextFrames. |
|
|
153
|
+
| KeepRuleAboveIn Frame | boolean | no | If true, forces the rule above the paragraph to remain in the frame bounds. Note: Valid only when rule above is true. |
|
|
154
|
+
| KeepWithNext | short | no | The minimum number of lines to keep with the next paragraph. |
|
|
155
|
+
| KeepWithPrevious | boolean | no | If true, the first line in the paragraph should be kept with the last line of previous paragraph. |
|
|
156
|
+
| KentenAlignment | KentenAlignment_ EnumValue | no | The alignment of kenten characters relative to the parent characters. Can be AlignKenten Left (Aligns kenten with the left of parent char- acters), or AlignKentenCenter (Aligns kenten with the center of parent charactrers). |
|
|
157
|
+
| KentenCharacter Set | KentenCharacter Set_EnumValue | no | The character set used for the custom kenten character. Note: Valid only when kenten kind is custom. Can be CharacterInput (Character input), ShiftJIS (Shift JIS), JIS (JIS), Kuten (Kuten), or Unicode (Unicode). |
|
|
158
|
+
| KentenCustom Character | string | no | The character used for kenten. Note: Valid only when kenten kind is custom. |
|
|
159
|
+
| KentenFontSize | double | no | The size (in points) of kenten characters. |
|
|
160
|
+
| KentenKind | KentenCharacter_ EnumValue | no | The style of kenten characters. Can be None (Does not use kenten), KentenSesameDot (Uses the kenten sesame dot), KentenWhite SesameDot (Uses the kenten white sesame dot), KentenBlackCircle (Uses the kenten black circle), KentenWhiteCircle (Uses the kenten white circle), KentenBlackTriangle (Uses the kenten black triangle), KentenWhite Triangle (Uses the kenten white triangle), KentenBullseye (Uses the kenten bullseye), KentenFisheye (Uses the kenten fisheye), KentenSmallBlackCircle (Uses the kenten small black circle), KentenSmallWhiteCircle (Uses the kenten small white circle), or Custom (Uses a custom kenten style). |
|
|
161
|
+
| KentenOverprint Fill | Adornment Overprint_Enum Value | no | The method of overprinting the kenten fill. Can be Auto (Uses auto overprint), OverprintOn (Turns on overprint), or OverprintOff (Turns off overprint). |
|
|
162
|
+
| KentenOverprint Stroke | Adornment Overprint_Enum Value | no | The method of overprinting the kenten stroke. Can be Auto (Uses auto overprint), Overprint On (Turns on overprint), or OverprintOff (Turns off overprint). |
|
|
163
|
+
| KentenPlacement | double | no | The distance between kenten characters and their parent characters. |
|
|
164
|
+
| KentenPosition | RubyKenten Position_Enum Value | no | The kenten position relative to the parent char- acter. Can be AboveRight (Places kenten or ruby to the right and above the parent charac- ter), or BelowLeft (Places kenten or ruby to the left and below the parent character). |
|
|
165
|
+
| KentenStrokeTint | double | no | The stroke tint (as a percentage) of kenten char- acters. (Range: 0 to 100) |
|
|
166
|
+
| KentenTint | double | no | The fill tint (as a percentage) of kenten charac- ters. (Range: 0 to 100) |
|
|
167
|
+
| KentenWeight | double | no | The stroke weight (in points) of kenten charac- ters. |
|
|
168
|
+
| KentenXScale | double | no | The horizontal size of kenten characters as a per- cent of the original size. |
|
|
169
|
+
| KentenYScale | double | no | The vertical size of kenten charachers as a per- cent of the original size. |
|
|
170
|
+
| KerningMethod | string | no | The type of pair kerning. |
|
|
171
|
+
| KerningValue | double | no | The amount of space to add or remove between characters, specified in thousands of an em. |
|
|
172
|
+
| KeyboardDirection | Character Direction_Enum Value | no | The keyboard direction of the characterCan be DefaultDirection (Default direction), Left ToRightDirection (Left to right direction), or RightToLeftDirection (Right to left direc- tion). |
|
|
173
|
+
| KinsokuHangType | KinsokuHangTypes_ EnumValue | no | The type of hanging punctuation to allow. Note: Valid only when a kinsoku set is in effect. Can be None (Disables hanging punctuation), Kinsoku HangRegular (Enables hanging punctuation and allows punctuation marks to be placed on or outside the TextFrame but allows burasagari characters to hang as little as possible Note: Dif- fers for justified and nonjustified text For infor- mation on justification, see line alignment), or KinsokuHangForce (Enables hanging punctua- tion but forces hanging punctuation outside the TextFrame and does not allow the punctuation to be placed on the TextFrame). |
|
|
174
|
+
| KinsokuType | KinsokuType_Enum Value | no | The type of kinsoku processing for preventing kinsoku characters from beginning or end- ing a line. Note: Valid only when a kinsoku set is defined. Can be KinsokuPushInFirst (Attempts to move characters to the previ- ous line; if the push-in is not possible, pushes characters to the next line), KinsokuPush OutFirst (Attempts to move characters to the next line; if the push-out is not possible, pushes characters to the previous line), KinsokuPush OutOnly (Always moves characters to the next line Does not attempt a push-in), or Kinsoku PrioritizeAdjustmentAmount (The kinsoku prioritize adjustment amount). |
|
|
175
|
+
| LastLineIndent | double | no | The amount to indent the last line in the Para- graph. |
|
|
176
|
+
| LeadingAki | double | no | The amount of space before each character. |
|
|
177
|
+
| LeadingModel | LeadingModel_ EnumValue | no | The point from which leading is measured from line to line. Can be LeadingModelRoman (Measures the space between type baselines), LeadingModelAkiBelow (Measures the space between lines from the aki below), Leading ModelAkiAbove (Measures the space between lines from the aki above), LeadingModel Center (Measures the space between the char- acter center points), or LeadingModelCenter Down (Center down leading model). |
|
|
178
|
+
| LeftIndent | double | no | The width of the left indent. |
|
|
179
|
+
| Ligatures | boolean | no | If true, replaces specific character combinations (e.g., fl, fi) with ligature characters. |
|
|
180
|
+
| LinkResourceID | int | no | This attribute refers to the self attribute of the parent story or XMLstory to which the child story is linked.. |
|
|
181
|
+
| MaximumGlyph Scaling | double | no | The maximum width (as a percentage) of indi- vidual characters. (Range: 50 to 200) |
|
|
182
|
+
| MaximumLetter Spacing | double | no | The maximum letter spacing, specified as a per- centge of the built-in space between letters in the font. (Range: -100 to 500) Note: Valid only when text is justified. |
|
|
183
|
+
| MaximumWord Spacing | double | no | The maximum word spacing, specified as a per- centage of the font word space value. Note: Valid only when text is justified. (Range: 0 to 1000) |
|
|
184
|
+
| MinimumGlyph Scaling | double | no | The minimum width (as a percentage) of indi- vidual characters. (Range: 50 to 200) |
|
|
185
|
+
| MinimumLetter Spacing | double | no | The minimum letter spacing, specified as a per- centge of the built-in space between letters in the font. (Range: -100 to 500) Note: Valid only when text is justified. |
|
|
186
|
+
| MinimumWord Spacing | double | no | The minimum word spacing, specified as a per- centage of the font word space value. Note: Valid only when text is justified. (Range: 0 to 1000) |
|
|
187
|
+
| MiterLimit | double | no | The limit of the ratio of stroke width to miter length before a miter (pointed) join becomes a bevel (squared-off) join. |
|
|
188
|
+
| NoBreak | boolean | no | If true, keeps the text on the same line. |
|
|
189
|
+
| Numbering Alignment | ListAlignment_ EnumValue | no | The alignment of the number. Can be Left Align (Align left), CenterAlign (Align center), or RightAlign (Align right). |
|
|
190
|
+
| NumberingApply RestartPolicy | boolean | no | If true, apply the numbering restart policy. |
|
|
191
|
+
| NumberingContinue | boolean | no | Continue the numbering at this level. |
|
|
192
|
+
| Numbering Expression | string | no | The number string expression for numbering. |
|
|
193
|
+
| NumberingLevel | int | no | The level of the paragraph. |
|
|
194
|
+
| NumberingStartAt | int | no | Determines starting number in a numbered list. |
|
|
195
|
+
| OTFContextual Alternate | boolean | no | If true, uses contextual alternate forms in Open- Type fonts. |
|
|
196
|
+
| OTFDiscretionary Ligature | boolean | no | If true, uses discretionary ligatures in OpenType fonts. |
|
|
197
|
+
| OTFFigureStyle | OTFFigureStyle_ EnumValue | no | The figure style in OpenType fonts. Can be TabularLining (Use monspaced lining fig- ures), ProportionalOldstyle (Use proportional width oldstyle figures), ProportionalLining (Use proportional width lining figures), Tabular Oldstyle (Use monospaced oldstyle figures), or Default (Use the default figure style for the font). |
|
|
198
|
+
| OTFFraction | boolean | no | If true, uses fractions in OpenType fonts. |
|
|
199
|
+
| OTFHVKana | boolean | no | If true, switches hiragana fonts, which have dif- ferent glyphs for horizontal and vertical. |
|
|
200
|
+
| OTFHistorical | boolean | no | If true, use historical forms in OpenType fonts. |
|
|
201
|
+
| OTFJustification Alternate | boolean | no | Whether to use justification alternate forms in OpenType fonts |
|
|
202
|
+
| OTFLocale | boolean | no | If true, uses localized forms in OpenType fonts. |
|
|
203
|
+
| OTFMark | boolean | no | If true, uses mark positioning in OpenType fonts. |
|
|
204
|
+
| OTFOrdinal | boolean | no | If true, uses ordinals in OpenType fonts. |
|
|
205
|
+
| OTFOverlapSwash | boolean | no | If true, use overlapping swash forms in Open- Type fonts. |
|
|
206
|
+
| OTFProportional Metrics | boolean | no | If true, kerns according to proportional CJK metrics in OpenType fonts. |
|
|
207
|
+
| OTFRomanItalics | boolean | no | If true, applies italics to half-width alphanumeric characters. |
|
|
208
|
+
| OTFSlashedZero | boolean | no | If true, use a slashed zeroes in OpenType fonts. |
|
|
209
|
+
| OTFStretched Alternate | boolean | no | Whether to use stretched alternate forms in OpenType fonts. |
|
|
210
|
+
| OTFStylistic Alternate | boolean | no | If true, use stylistic alternate forms in OpenType fonts. |
|
|
211
|
+
| OTFStylisticSets | int | no | The stylistic sets to use in OpenType fonts. |
|
|
212
|
+
| OTFSwash | boolean | no | If true, uses swash forms in OpenType fonts. |
|
|
213
|
+
| OTFTitling | boolean | no | If true, uses titling forms in OpenType fonts. |
|
|
214
|
+
| OverprintFill | boolean | no | If true, the FillColor of the characters will over- print. |
|
|
215
|
+
| OverprintStroke | boolean | no | If true, the stroke of the characters will over- print. |
|
|
216
|
+
| PageNumberType | PageNumberType_ EnumValue | no | The type of the page number marker. Can be AutoPageNumber, NextPageNumber, or PreviousPageNumber . |
|
|
217
|
+
| Paragraph Direction | Paragraph Direction_Enum Value | no | The paragraph composition direction. Can be LeftToRightDirection (Left to Right para- graph direction), or RightToLeftDirection (Right to Left paragraph direction). |
|
|
218
|
+
| ParagraphGyoudori | boolean | no | If true, the gyoudori mode applies to the entire paragraph. If false, the gyoudori mode applies to each line in the paragraph. |
|
|
219
|
+
| Paragraph Justification | Paragraph Justification_ EnumValue | no | Paragraph justificationCan be Default Justification (Default justification), ArabicJustification (Arabic justification), or NaskhJustification (Naskh justification). |
|
|
220
|
+
| PointSize | double | no | The text size. |
|
|
221
|
+
| Position | Position_Enum Value | no | The text position relative to the baseline. Can be Normal (Normal position), Superscript (Superscripts the text), Subscript (Subscripts the text), OTSuperscript (For OpenType fonts, uses-if available-raised glyphs that are sized correctly relative to the surrounding characters), OTSubscript (For OpenType fonts, uses-if available-lowered glyphs that are sized cor- rectly relative to the surrounding characters), OTNumerator (For OpenType fonts, shrinks the text but keeps the top of the characters aligned with the top of the main text Note: Valid only for numeric characters), or OTDenominator (For OpenType fonts, shrinks the text but keeps text on the main text baseline Note: Valid only for |
|
|
222
|
+
| PositionalForm | PositionalForms_ EnumValue | no | The OpenType positional form. Can be None (None), Calculate (Calculated forms), Initial (Initial form), Medial (Medial form), Final (Final form), or Isolated (Isolated form). |
|
|
223
|
+
| Rensuuji | boolean | no | If true, disallows line breaks in numbers. If false, lines can break between digits in multi-digit numbers. |
|
|
224
|
+
| RightIndent | double | no | The width of the right indent. |
|
|
225
|
+
| RotateSingleByte Characters | boolean | no | If true, rotates Roman characters in vertical text. |
|
|
226
|
+
| RubyAlignment | RubyAlignments_ EnumValue | no | The ruby alignment. Can be RubyLeft (Aligns ruby with the left-most character in the parent text), RubyCenter (Centers ruby relative to the parent text), RubyRight (Aligns ruby with the right-most character in the parent text), Ruby FullJustify (Justifies ruby across the parent text), RubyJIS (Ruby JIS), RubyEqualAki (Ruby equal aki), or Ruby1Aki (Ruby 1 aki). |
|
|
227
|
+
| RubyAutoAlign | boolean | no | If true, auto aligns ruby. |
|
|
228
|
+
| RubyAutoScaling | boolean | no | If true, automatically scales ruby to the speci- fied percent of parent text size. For information on specifying a percent, see ruby parent scaling percent. |
|
|
229
|
+
| RubyAutoTcyAutoScale | boolean | no | If true, automatically scales glyphs in auto tcy (tate-chuu-yoko) in ruby to fit one em. |
|
|
230
|
+
| RubyAutoTcyDigits | short | no | The number of digits included in auto tcy (tate- chuu-yoko) in ruby. |
|
|
231
|
+
| RubyAutoTcyIncludeRoman | boolean | no | If true, includes Roman characters in auto tcy (tate-chuu-yoko) in ruby. |
|
|
232
|
+
| RubyFlag | int | no | If true, ruby is on. |
|
|
233
|
+
| RubyFontSize | double | no | The size (in points) of ruby characters. |
|
|
234
|
+
| RubyOpenTypePro | boolean | no | If true, uses OpenType Pro fonts for ruby. |
|
|
235
|
+
| RubyOverhang | boolean | no | If true, constrains ruby overhang to the speci- fied amount. For information on specifying an amount, see ruby parent overhang amount. |
|
|
236
|
+
| RubyOverprintFill | Adornment Overprint_Enum Value | no | The method of overprinting the ruby fill. Can be Auto (Uses auto overprint), OverprintOn (Turns on overprint), or OverprintOff (Turns off overprint). |
|
|
237
|
+
| RubyOverprint Stroke | Adornment Overprint_Enum Value | no | The method of overprinting the ruby stroke. Can be Auto (Uses auto overprint), OverprintOn (Turns on overprint), or OverprintOff (Turns off overprint). |
|
|
238
|
+
| RubyParent OverhangAmount | RubyOverhang_ EnumValue | no | The amount by which ruby characters can over- hang the parent text. Can be None (Does not allow ruby overhang), RubyOverhangOneRuby (Ruby overhang is one ruby), RubyOverhang HalfRuby (Ruby overhang is one-half ruby), RubyOverhangOneChar (Ruby overhang is the size of one character), RubyOverhangHalfChar (Ruby is overhang one-half the size of one chara- racter), or RubyOverhangNoLimit (There is no ruby overhang size limit). |
|
|
239
|
+
| RubyParent ScalingPercent | double | no | The amount (as a percentage) to scale the parent text size to determine the ruby text size. |
|
|
240
|
+
| RubyParentSpacing | RubyParent Spacing_EnumValue | no | The ruby spacing relative to the parent text. Can be RubyParentNoAdjustment (Does not base ruby spacing on parent text), RubyParent BothSides (Ruby parent both sides), Ruby Parent121Aki (Ruby parent 121 aki), Ruby ParentEqualAki (Applies the parent text aki to the ruby characters), or RubyParentFull Justify (Justifies ruby characters to both edges of the parent text). |
|
|
241
|
+
| RubyPosition | RubyKenten Position_Enum Value | no | The position of ruby characters relative to the parent text. Can be AboveRight (Places kenten or ruby to the right and above the parent charac- ter), or BelowLeft (Places kenten or ruby to the left and below the parent character). |
|
|
242
|
+
| RubyString | string | no | The ruby string contents. |
|
|
243
|
+
| RubyStrokeTint | double | no | The stroke tint (as a percentage) of ruby charac- ters. |
|
|
244
|
+
| RubyTint | double | no | The tint (as a percentage) of the ruby FillColor. (Range: 0 to 100) |
|
|
245
|
+
| RubyType | RubyTypes_Enum Value | no | The ruby type. Can be GroupRuby (Provides ruby for a group of characters), or Per CharacterRuby (Provides ruby for each indi- vidual character in the group). |
|
|
246
|
+
| RubyWeight | double | no | The stroke weight (in points) of ruby characters. |
|
|
247
|
+
| RubyXOffset | double | no | The amount of horizontal space between ruby and parent characters. |
|
|
248
|
+
| RubyXScale | double | no | The horizontal size of ruby characters, specified as a percent of the original size. |
|
|
249
|
+
| RubyYOffset | double | no | The amount of vertical space between ruby and parent characters. |
|
|
250
|
+
| RubyYScale | double | no | The vertical size of ruby characters, specified as a percent of the original size. |
|
|
251
|
+
| RuleAbove | boolean | no | If true, places a rule above the paragraph. |
|
|
252
|
+
| RuleAboveGap Overprint | boolean | no | If true, the stroke gap of the paragraph rule above will overprint. Note: Valid only the rule above type is not solid. |
|
|
253
|
+
| RuleAboveGapTint | double | no | The tint (as a percentage) of the stroke gap color of the paragraph rule. (Range: 0 to 100) Note: Valid only when the rule above type is not solid. |
|
|
254
|
+
| RuleAboveLeft Indent | double | no | The distance to indent the left edge of the para- graph rule above (based on either the text width or the column width of the first line in the para- graph. |
|
|
255
|
+
| RuleAboveLine Weight | double | no | The line weight of the rule above |
|
|
256
|
+
| RuleAboveOffset | double | no | The amount to offset the paragraph rule above from the baseline of the first line the paragraph. |
|
|
257
|
+
| RuleAbove Overprint | boolean | no | If true, the paragraph rule above will overprint. |
|
|
258
|
+
| RuleAboveRight Indent | double | no | The distance to indent the right edge of the paragraph rule above (based on either the text width or the column width of the first line in the paragraph. |
|
|
259
|
+
| RuleAboveTint | double | no | The tint (as a percentage) of the paragraph rule above. (Range: 0 to 100) |
|
|
260
|
+
| RuleAboveWidth | RuleWidth_Enum Value | no | The basis (text width or column width) used to calculate the width of the paragraph rule above. Can be TextWidth (Makes the paragraph rule above the width of the first line of text in the paragraph), or ColumnWidth (Makes the rule the width of the column). |
|
|
261
|
+
| RuleBelow | boolean | no | If true, applies a paragraph rule below. |
|
|
262
|
+
| RuleBelowGap Overprint | boolean | no | If true, the gap color of the rule below will over- print. |
|
|
263
|
+
| RuleBelowGapTint | double | no | The tint (as a percentage) of the stroke gap color of the paragraph rule below. (Range: 0 to 100) Note: Valid only when the paragraph rule below type is not solid. |
|
|
264
|
+
| RuleBelowLeft Indent | double | no | The distance to indent the left edge of the para- graph rule below (based on either the text width or the column width of the last line in the para- graph. |
|
|
265
|
+
| RuleBelowLine Weight | double | no | The line weight of the rule below |
|
|
266
|
+
| RuleBelowOffset | double | no | The amount to offset the the paragraph rule below from the baseline of the last line of the paragraph. |
|
|
267
|
+
| RuleBelow Overprint | boolean | no | If true, the rule below will overprint. |
|
|
268
|
+
| RuleBelowRight Indent | double | no | The distance to indent the right edge of the paragraph rule below (based on either the text width or the column width of the last line in the paragraph. |
|
|
269
|
+
| RuleBelowTint | double | no | The tint (as a percentage) of the paragraph rule below. (Range: 0 to 100) |
|
|
270
|
+
| RuleBelowWidth | RuleWidth_Enum Value | no | The basis (text width or column width) used to calculate the width of the paragraph rule below. Can be TextWidth (Makes the paragraph rule above the width of the first line of text in the paragraph), or ColumnWidth (Makes the rule the width of the column). |
|
|
271
|
+
| ScaleAffectsLine Height | boolean | no | If true, the line changes size when characters are scaled. |
|
|
272
|
+
| ShataiAdjust Rotation | boolean | no | If true, applies shatai rotation. |
|
|
273
|
+
| ShataiAdjustTsume | boolean | no | If true, adjusts shatai tsume. |
|
|
274
|
+
| ShataiDegreeAngle | double | no | The shatai lens angle (in degrees). |
|
|
275
|
+
| Shatai Magnification | double | no | The amount (as a percentage) of shatai obliquing to apply. |
|
|
276
|
+
| SingleWord Justification | SingleWord Justification_ EnumValue | no | The alignment to use for lines that contain a single word. Can be LeftAlign (Left aligns the word), CenterAlign (Center aligns the word), RightAlign (Right aligns the word), or Fully Justified (Fully justifies the word). |
|
|
277
|
+
| Skew | double | no | The skew angle of the text. (Range: -85 to 85) |
|
|
278
|
+
| SpaceAfter | double | no | The height of the paragraph space below. |
|
|
279
|
+
| SpaceBefore | double | no | The height of the paragraph space above. |
|
|
280
|
+
| SpanColumnInside Gutter | double | no | The inside gutter if the paragraph splits columns. |
|
|
281
|
+
| SpanColumn OutsideGutter | double | no | The outside gutter if the paragraph splits columns. |
|
|
282
|
+
| SpanColumnType | SpanColumnType Options_EnumValue | no | Whether a paragraph should be a single column, span columns or split columns. Can be SingleColumn, SpanColumns, or SplitColumns . |
|
|
283
|
+
| SpanSplitColumn Count | int | no | The number of columns a paragraph spans or the number of split columns. |
|
|
284
|
+
| StartParagraph | StartParagraph_ EnumValue | no | The location at which to start the paragraph. Can be Anywhere (Starts in the next available space), NextColumn (Starts at the top of the next column), NextFrame (Starts at the top of the next TextFrame in the thread), NextPage (Starts at the top of the next page), NextOddPage (Starts at the top of the next odd-numbered page), or NextEvenPage (Starts at the top of the |
|
|
285
|
+
| StrikeThroughGap Overprint | boolean | no | If true, the gap color of the strikethrough stroke will overprint. Note: Valid when strike through type is not solid. |
|
|
286
|
+
| StrikeThroughGap Tint | double | no | The tint (as a percentage) of the strikethrough stroke gap color. (Range: 0 to 100) Note: Valid when strike through type is not solid. |
|
|
287
|
+
| StrikeThrough Offset | double | no | The amount by which to offset the strikethrough stroke from the text baseline. |
|
|
288
|
+
| StrikeThrough Overprint | boolean | no | If true, the strikethrough stroke will overprint. |
|
|
289
|
+
| StrikeThroughTint | double | no | The tint (as a percentage) of the strikethrough stroke. (Range: 0 to 100) |
|
|
290
|
+
| StrikeThrough Weight | double | no | The stroke weight of the strikethrough stroke. |
|
|
291
|
+
| StrikeThru | boolean | no | If true, draws a strikethrough line through the text. |
|
|
292
|
+
| StrokeAlignment | TextStrokeAlign_ EnumValue | no | The stroke alignment applied to the text. Can be CenterAlignment (The stroke straddles the path), or OutsideAlignment (The stroke is out- side the path, like a picture frame). |
|
|
293
|
+
| StrokeColor | string | no | The swatch (color, gradient, tint, or mixed ink) applied to the stroke of the Paragraph. |
|
|
294
|
+
| StrokeTint | double | no | The tint (as a percentage) of the stroke color of the Paragraph. (To specify a tint percentage, use a number in the range of 0 to 100; to use the inherited or overridden value, use -1.) |
|
|
295
|
+
| StrokeWeight | double | no | The stroke weight applied to the characters of the text. |
|
|
296
|
+
| Tatechuyoko | boolean | no | If true, makes the character horizontal in verti- cal text. |
|
|
297
|
+
| Tatechuyoko XOffset | double | no | The horizontal offset for horizontal characters in vertical text. |
|
|
298
|
+
| Tatechuyoko YOffset | double | no | The vertical offset for horizontal characters in vertical text. |
|
|
299
|
+
| Tracking | double | no | The amount by which to loosen or tighten a block of text, specified in thousands of an em. |
|
|
300
|
+
| TrailingAki | double | no | The amount of SpaceAfter each character. |
|
|
301
|
+
| TreatIdeographic SpaceAsSpace | boolean | no | If true, ideographic spaces will not wrap to the next line like text characters. |
|
|
302
|
+
| Tsume | double | no | The amount of horizontal character compres- sion. |
|
|
303
|
+
| Underline | boolean | no | If true, underlines the text. |
|
|
304
|
+
| UnderlineGap Overprint | boolean | no | If true, the gap color of the underline stroke will overprint. |
|
|
305
|
+
| UnderlineGapTint | double | no | The tint (as a percentage) of the gap color of the underline stroke. (Range: 0 to 100) Note: Valid when underline type is not solid. |
|
|
306
|
+
| UnderlineOffset | double | no | The amount by which to offset the underline from the text baseline. |
|
|
307
|
+
| Underline Overprint | boolean | no | If true, the underline stroke color will overprint. |
|
|
308
|
+
| UnderlineTint | double | no | The underline stroke tint (as a percentage). (Range: 0 to 100) |
|
|
309
|
+
| UnderlineWeight | double | no | The stroke weight of the underline stroke. |
|
|
310
|
+
| VerticalScale | double | no | The vertical scaling applied to the text as a per- centage of its current size. (Range: 1 to 1000) |
|
|
311
|
+
| Warichu | boolean | no | If true, turns on warichu. |
|
|
312
|
+
| WarichuAlignment | WarichuAlignment_ EnumValue | no | The warichu alignment. Can be Auto (Auto- matically aligns warichu characters), Left Align (Aligns warichu on the left side of the TextFrame), CenterAlign (Aligns warichu in the center of the TextFrame), RightAlign (Wari- chu on the rigt side of the TextFrame), Fully Justified (Justifies warichu lines and makes all lines of equal length), LeftJustified (Jus- tifies warichu lines and left aligns the last line), CenterJustified (Justifies warichu lines and center aligns the last line), or RightJustified (Justifies warichu lines and right aligns the last line). |
|
|
313
|
+
| WarichuChars AfterBreak | short | no | The minimum number of characters allowed after a line break. |
|
|
314
|
+
| WarichuChars BeforeBreak | short | no | The minimum number of characters allowed before a line break. |
|
|
315
|
+
| WarichuLine Spacing | double | no | The gap between lines of warichu characters. |
|
|
316
|
+
| WarichuLines | short | no | The number of lines of warichu within a single normal line. |
|
|
317
|
+
| WarichuSize | double | no | The amount (as a percentage) to scale parent text size to determine warichu size. |
|
|
318
|
+
| XOffsetDiacritic | double | no | The X offset for diacritic adjustment |
|
|
319
|
+
| YOffsetDiacritic | double | no | The Y offset for diacritic adjustment |
|
|
320
|
+
|
|
321
|
+
**Table 105**: Common Text Properties Represented as Elements
|
|
322
|
+
|
|
323
|
+
| Name | Type | Req | Description |
|
|
324
|
+
| ------------------------- | ---------------------------------------------------------------------------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
325
|
+
| AllGREPStyles | ListItem | no | Alist of the grep styles in the text. |
|
|
326
|
+
| AllLineStyles | ListItem | no | Alist of the line styles in the text. |
|
|
327
|
+
| AllNestedStyles | ListItem | no | Alist of the nested styles in the text. |
|
|
328
|
+
| AppliedFont | string (a reference to a self attribute) or string | no | The font applied to the text, specified as either a font object or the name of font family. |
|
|
329
|
+
| AppliedNumbering List | string (a reference to a self attribute) or string | no | The list to be part of. |
|
|
330
|
+
| BalanceRagged Lines | boolean or BalanceLines Style_EnumValue | no | If true or set to an enumeration value, bal- ances ragged lines in the paragraph(s) of the Paragraph. Note: Not valid with a single-line text composer. For information, see composer. Can be NoBalancing (Does not balance lines), VeeShape (Prefers shorter last lines), Fully Balanced (Balances lines equally), or Pyramid Shape (Prefers longer last lines). |
|
|
331
|
+
| BulletChar | undefined | no | Bullet character. |
|
|
332
|
+
| BulletsCharacterStyle | string (a reference to a self attribute) or string | no | The CharacterStyle to be used for the text after string. |
|
|
333
|
+
| BulletsFont | string (a reference to a self attribute) or string or AutoEnum_Enum Value | no | The font used for bullet characters. |
|
|
334
|
+
| BulletsFontStyle | string or NothingEnum_Enum Value or Auto Enum_EnumValue | no | The FontStyle used for bullet characters. |
|
|
335
|
+
| CustomGlyph | long or string | no | Acustom glyph. |
|
|
336
|
+
| KentenFillColor | string (a reference to a self attribute) or string | no | The swatch (color, gradient, tint, or mixed ink) applied to the fill of kenten characters. |
|
|
337
|
+
| KentenFont | string (a reference to a self attribute) or string | no | The font to use for kenten characters. |
|
|
338
|
+
| KentenFontStyle | string or NothingEnum_Enum Value | no | The FontStyle of kenten characters. |
|
|
339
|
+
| KentenStrokeColor | string (a reference to a self attribute) or string | no | The swatch (color, gradient, tint, or mixed ink) applied to the stroke of kenten characters. |
|
|
340
|
+
| KinsokuSet | string (a reference to a self attribute) or Kinsoku Set_EnumValue or string | no | The kinsoku set that determines legitimate line breaks. Can return: KinsokuTable, KinsokuSet enumerator or String. Can be Nothing (Does not use a kinsoku set), HardKinsoku (Uses the hard or maximum kinsoku set, which includes all Japanese characters that should not begin or end a line), SoftKinsoku (Uses the soft or weak kinsoku set, which omits from the hard kinsoku set long vowel symbols and small hiragana and katakana characters), KoreanKinsoku (Uses the Korean kinsoku set), SimplifiedChinese Kinsoku (Uses the simplified Chinese kinsoku set), or TraditionalChineseKinsoku (Uses the traditional Chinese kinsoku set). |
|
|
341
|
+
| Leading | double or Leading_EnumValue | no | The leading applied to the text. Can return: Unit or Leading enumerator. |
|
|
342
|
+
| Mojikumi | string (a reference to a self attribute) or string or MojikumiTable Defaults_Enum Value | no | The mojikumi table. For information, see moji- kumi table defaults. Can be Nothing (Turns off mojikumi), LineEndAllOneHalfEmEnum (Uses half-width spacing for all characters), OneEm IndentLineEndUkeOneHalfEmEnum (Indents lines one space and uses line end uke one half space), OneOrOneHalfEmIndentLineEnd UkeOneHalfEmEnum (Indents lines one full or half space and uses line end uke one half space), OneOrOneHalfEmIndentLineEndAllOneEm Enum (Uses full-witdh spacing for all characters except the last character in the line, which uses either full- or half-width spacing), OneEm IndentLineEndAllOneEmEnum (Indents lines one full space and uses full-width spacing for all characters), OneEmIndentLineEndAllNo FloatEnum (Indents lines one full space and uses no float for all characters), OneEmIndent LineEndUkeNoFloatEnum (Indents lines one full space and uses line end uke no float), One OrOneHalfEmIndentLineEndUkeNoFloat Enum (Indents lines one half space or one full space and uses line end uke no float), OneEm IndentLineEndAllOneHalfEmEnum (Indents lines one full space and uses half-width spacing for all characters), LineEndAllOneEmEnum (Uses full-width spacing for all characters), LineEndUkeNoFloatEnum (Uses line end uke no float), OneOrOneHalfEmIndentLine EndPeriodOneEmEnum (Indents lines one or one-half space and uses full-width spacing for punctuation and for the last character in the line), OneEmIndentLineEndPeriodOneEmEnum (Indents lines one full space and uses full-width spacing for punctuation and for the last charac- |
|
|
343
|
+
| Numbering CharacterStyle | string (a reference to a self attribute) or string | no | The CharacterStyle to be used for the number string. |
|
|
344
|
+
| NumberingFormat | NumberingStyle_ EnumValue or string | no | Numbering format options. Can be Upper Roman (Upper roman), LowerRoman (Lower roman), UpperLetters (Upper letters), Lower Letters (Lower letters), Arabic (Arabic), KatakanaModern (Katakana (a, i, u, e, o)), KatakanaTraditional (Katakana (i, ro, ha, ni)), FormatNone (Do not add characters), SingleLeadingZeros (Add single leading zeros), Kanji (Kanji), DoubleLeadingZeros (Add double leading zeros), or Triple LeadingZeros (Add triple leading zeros). |
|
|
345
|
+
| NumberingRestart Policies | undefined | no | Numbering restart policies. |
|
|
346
|
+
| OpenTypeFeatures | ListItem | no | OpenType features. |
|
|
347
|
+
| RubyFill | string (a reference to a self attribute) or string | no | The swatch (color, gradient, tint, or mixed ink) applied to the fill of ruby characters. |
|
|
348
|
+
| RubyFont | string (a reference to a self attribute) or string | no | The font applied to ruby characters. |
|
|
349
|
+
| RubyFontStyle | string or NothingEnum_Enum Value | no | The FontStyle of ruby characters. |
|
|
350
|
+
| RubyStroke | string (a reference to a self attribute) or string | no | The swatch (color, gradient, tint, or mixed ink) applied to the stroke of ruby characters. |
|
|
351
|
+
| RuleAboveColor | string (a reference to a self attribute) or string | no | The swatch (color, gradient, tint, or mixed ink) applied to the paragraph rule above. |
|
|
352
|
+
| RuleAboveGapColor | string (a reference to a self attribute) or string | no | The swatch (color, gradient, tint, or mixed ink) applied to the stroke gap of the paragraph rule above. Note: Valid only when the paragraph rule above type is not solid. |
|
|
353
|
+
| RuleAboveType | string (a reference to a self attribute) or string | no | The stroke type of the rule above the paragraph. |
|
|
354
|
+
| RuleBelowColor | string (a reference to a self attribute) or string | no | The swatch (color, gradient, tint, or mixed ink) applied to the paragraph rule below. Can return: Swatch or String. |
|
|
355
|
+
| RuleBelowGapColor | string (a reference to a self attribute) or string | no | The swatch (color, gradient, tint, or mixed ink) applied to the stroke gap of the paragraph rule below. Note: Valid only when the paragraph rule below type is not solid. |
|
|
356
|
+
| RuleBelowType | string (a reference to a self attribute) or string | no | The stroke type of the rule below the paragraph. |
|
|
357
|
+
| StrikeThrough Color | string (a reference to a self attribute) or string | no | The swatch (color, gradient, tint, or mixed ink) applied to the strikethrough stroke. |
|
|
358
|
+
| StrikeThroughGap Color | string (a reference to a self attribute) or string | no | The swatch (color, gradient, tint, or mixed ink) applied to the gap of the strikethrough stroke. |
|
|
359
|
+
| StrikeThroughType | string (a reference to a self attribute) or string | no | The stroke type of the strikethrough stroke. Can return: StrokeStyle or String. |
|
|
360
|
+
| TabList | ListItem | no | Alist of all of the properties of all of the para- graph's tab stops. Can return: Array of Arrays of Property Name/Value Pairs. |
|
|
361
|
+
| UnderlineColor | string (a reference to a self attribute) or string | no | The swatch (color, gradient, tint, or mixed ink) applied to the underline stroke. Can return: Swatch or String. |
|
|
362
|
+
| UnderlineGapColor | string (a reference to a self attribute) or string | no | The swatch (color, gradient, tint, or mixed ink) applied to the gap of the underline stroke. Note: Valid when underline type is not solid. Can return: Swatch or String. |
|
|
363
|
+
| UnderlineType | string (a reference to a self attribute) or string | no | The stroke type of the underline stroke. Can return: StrokeStyle or String. |
|
|
364
|
+
|
|
365
|
+
#### Attributes and Elements Related to Japanese Features
|
|
366
|
+
|
|
367
|
+
Attributes such as Ruby Font, Mojikumi, and Warichu Lines are specific to the Japanese feature set. IDML recognizes these settings because In Design supports a number of different platforms and locales. For example, an IDML package create by Japanese version of In Design can be opened without error in English version of In Design (just as a binary file created by one language version can be opened in another language version).
|
|
368
|
+
|
|
369
|
+
### 10.4.7 Story Schema
|
|
370
|
+
|
|
371
|
+
The attributes and elements of a <Story> element define text content and text formatting of the story. In Design stories can contain page items, such as TextFrames or graphics, notes, footnotes, hyperlinks, and other objects. The <Story> element can contain everything that can appear in a story in an In Design document.
|
|
372
|
+
|
|
373
|
+
Most of the attributes and elements defined in the schema for a story concern the text formatting defaults and preference settings of the story. Story attributes such as AppliedParagraphStyle, AppliedCharacterStyle, and FontStyle define the default text formatting of the story. They can be overridden by related attributes in text child elements that appear inside the story, such as the <ParagraphStyleRange> element.
|
|
374
|
+
|
|
375
|
+
**Schema Example**
|
|
376
|
+
|
|
377
|
+
```
|
|
378
|
+
Story_Object = element Story { attribute Self { xsd:string }, attribute AppliedTOCStyle { xsd:string }?, attribute FontStyle { xsd:string }?, attribute PointSize { xsd:double }?, attribute KerningMethod { xsd:string }?, attribute Tracking { xsd:double }?, attribute Capitalization { Capitalization_EnumValue }?, attribute Position { Position_EnumValue }?, attribute Underline { xsd:boolean }?, attribute StrikeThru { xsd:boolean }?, attribute Ligatures { xsd:boolean }?, attribute NoBreak { xsd:boolean }?, attribute HorizontalScale { xsd:double }?, attribute VerticalScale { xsd:double }?, attribute BaselineShift { xsd:double }?, attribute Skew { xsd:double }?, attribute FillTint { xsd:double }?, attribute StrokeTint { xsd:double }?, attribute StrokeWeight { xsd:double }?, attribute OverprintStroke { xsd:boolean }?, attribute OverprintFill { xsd:boolean }?, attribute OTFFigureStyle { OTFFigureStyle_EnumValue }?, attribute OTFOrdinal { xsd:boolean }?, attribute OTFFraction { xsd:boolean }?, attribute OTFDiscretionaryLigature { xsd:boolean }?, attribute OTFTitling { xsd:boolean }?, attribute OTFContextualAlternate { xsd:boolean }?, attribute OTFSwash { xsd:boolean }?, attribute UnderlineTint { xsd:double }?, attribute UnderlineGapTint { xsd:double }?, attribute UnderlineOverprint { xsd:boolean }?, attribute UnderlineGapOverprint { xsd:boolean }?, attribute UnderlineOffset { xsd:double }?, attribute UnderlineWeight { xsd:double }?, attribute StrikeThroughTint { xsd:double }?, attribute StrikeThroughGapTint { xsd:double }?, attribute StrikeThroughOverprint { xsd:boolean }?, attribute StrikeThroughGapOverprint { xsd:boolean }?, attribute StrikeThroughOffset { xsd:double }?, attribute StrikeThroughWeight { xsd:double }?, attribute FillColor { xsd:string }?, attribute StrokeColor { xsd:string }?, attribute AppliedLanguage { xsd:string }?, attribute ParagraphKashidaWidth { xsd:double }?, attribute FirstLineIndent { xsd:double }?, attribute LeftIndent { xsd:double }?, attribute RightIndent { xsd:double }?, attribute SpaceBefore { xsd:double }?, attribute SpaceAfter { xsd:double }?, attribute Justification { Justification_EnumValue }?, attribute SingleWordJustification { SingleWordJustification_EnumValue }?, attribute AutoLeading { xsd:double }?, attribute DropCapLines { xsd:short {minInclusive="0" maxInclusive="25"} }?, attribute DropCapCharacters { xsd:short {minInclusive="0" maxInclusive="150"} }?, attribute KeepLinesTogether { xsd:boolean }?, attribute KeepAllLinesTogether { xsd:boolean }?, attribute KeepWithNext { xsd:short {minInclusive="0" maxInclusive="5"} }?, attribute KeepFirstLines { xsd:short {minInclusive="1" maxInclusive="50"} }?, attribute KeepLastLines { xsd:short {minInclusive="1" maxInclusive="50"} }?, attribute StartParagraph { StartParagraph_EnumValue }?, attribute Composer { xsd:string }?, attribute MinimumWordSpacing { xsd:double }?, attribute MaximumWordSpacing { xsd:double }?, attribute DesiredWordSpacing { xsd:double }?, attribute MinimumLetterSpacing { xsd:double }?, attribute MaximumLetterSpacing { xsd:double }?, attribute DesiredLetterSpacing { xsd:double }?, attribute MinimumGlyphScaling { xsd:double }?, attribute MaximumGlyphScaling { xsd:double }?, attribute DesiredGlyphScaling { xsd:double }?, attribute RuleAbove { xsd:boolean }?, attribute RuleAboveOverprint { xsd:boolean }?, attribute RuleAboveLineWeight { xsd:double }?, attribute RuleAboveTint { xsd:double }?, attribute RuleAboveOffset { xsd:double }?, attribute RuleAboveLeftIndent { xsd:double }?, attribute RuleAboveRightIndent { xsd:double }?, attribute RuleAboveWidth { RuleWidth_EnumValue }?, attribute RuleAboveGapTint { xsd:double }?, attribute RuleAboveGapOverprint { xsd:boolean }?, attribute RuleBelow { xsd:boolean }?, attribute RuleBelowLineWeight { xsd:double }?, attribute RuleBelowTint { xsd:double }?, attribute RuleBelowOffset { xsd:double }?, attribute RuleBelowLeftIndent { xsd:double }?, attribute RuleBelowRightIndent { xsd:double }?, attribute RuleBelowWidth { RuleWidth_EnumValue }?, attribute RuleBelowGapTint { xsd:double }?, attribute HyphenateCapitalizedWords { xsd:boolean }?, attribute Hyphenation { xsd:boolean }?, attribute HyphenateBeforeLast { xsd:short {minInclusive="1" maxInclusive="15"} }?, attribute HyphenateAfterFirst { xsd:short {minInclusive="1" maxInclusive="15"} }?, attribute HyphenateWordsLongerThan { xsd:short {minInclusive="3" maxInclusive="25"} }?, attribute HyphenateLadderLimit { xsd:short {minInclusive="0" maxInclusive="25"} }?, attribute HyphenationZone { xsd:double }?, attribute HyphenWeight { xsd:short {minInclusive="0" maxInclusive="10"} }?, attribute AppliedParagraphStyle { xsd:string }?, attribute AppliedCharacterStyle { xsd:string }?, attribute LastLineIndent { xsd:double }?, attribute HyphenateLastWord { xsd:boolean }?, attribute OTFSlashedZero { xsd:boolean }?, attribute OTFHistorical { xsd:boolean }?, attribute OTFStylisticSets { xsd:int }?, attribute GradientFillLength { xsd:double }?, attribute GradientFillAngle { xsd:double }?, attribute GradientStrokeLength { xsd:double }?, attribute GradientStrokeAngle { xsd:double }?, attribute GradientFillStart { UnitPointType_TypeDef }?, attribute GradientStrokeStart { UnitPointType_TypeDef }?, attribute KeepWithPrevious { xsd:boolean }?, attribute SpanColumnType { SpanColumnTypeOptions_EnumValue }?, attribute SplitColumnInsideGutter { xsd:double }?, attribute SplitColumnOutsideGutter { xsd:double }?, attribute SpanColumnMinSpaceBefore { xsd:double }?, attribute SpanColumnMinSpaceAfter { xsd:double }?, attribute RuleBelowOverprint { xsd:boolean }?, attribute RuleBelowGapOverprint { xsd:boolean }?, attribute DropcapDetail { xsd:int }?, attribute HyphenateAcrossColumns { xsd:boolean }?, attribute KeepRuleAboveInFrame { xsd:boolean }?, attribute IgnoreEdgeAlignment { xsd:boolean }?, attribute OTFMark { xsd:boolean }?, attribute OTFLocale { xsd:boolean }?, attribute PositionalForm { PositionalForms_EnumValue }?, attribute ParagraphDirection { ParagraphDirectionOptions_EnumValue }?, attribute ParagraphJustification { ParagraphJustificationOptions_EnumValue }?, attribute MiterLimit { xsd:double {minInclusive="0" maxInclusive="1000"} }?, attribute StrokeAlignment { TextStrokeAlign_EnumValue }?, attribute EndJoin { OutlineJoin_EnumValue }?, attribute OTFOverlapSwash { xsd:boolean }?, attribute OTFStylisticAlternate { xsd:boolean }?, attribute OTFJustificationAlternate { xsd:boolean }?, attribute OTFStretchedAlternate { xsd:boolean }?, attribute CharacterDirection { CharacterDirectionOptions_EnumValue }?, attribute KeyboardDirection { CharacterDirectionOptions_EnumValue }?, attribute DigitsType { DigitsTypeOptions_EnumValue }?, attribute Kashidas { KashidasOptions_EnumValue }?, attribute DiacriticPosition { DiacriticPositionOptions_EnumValue }?, attribute XOffsetDiacritic { xsd:double }?, attribute YOffsetDiacritic { xsd:double }?, attribute ParagraphBreakType { ParagraphBreakTypes_EnumValue }?, attribute PageNumberType { PageNumberTypes_EnumValue }?, attribute LinkResourceId { xsd:int }?, attribute TrackChanges { xsd:boolean }?, attribute StoryTitle { xsd:string }?, attribute AppliedNamedGrid { xsd:string }?, attribute GridAlignFirstLineOnly { xsd:boolean }?, attribute GridAlignment { GridAlignment_EnumValue }?, attribute GridGyoudori { xsd:short }?, attribute AutoTcy { xsd:short }?, attribute AutoTcyIncludeRoman { xsd:boolean }?, attribute KinsokuType { KinsokuType_EnumValue }?, attribute KinsokuHangType { KinsokuHangTypes_EnumValue }?, attribute BunriKinshi { xsd:boolean }?, attribute Rensuuji { xsd:boolean }?, attribute RotateSingleByteCharacters { xsd:boolean }?, attribute LeadingModel { LeadingModel_EnumValue }?, attribute CharacterAlignment { CharacterAlignment_EnumValue }?, attribute Tsume { xsd:double }?, attribute LeadingAki { xsd:double }?, attribute TrailingAki { xsd:double }?, attribute CharacterRotation { xsd:double }?, attribute Jidori { xsd:short }?, attribute ShataiMagnification { xsd:double }?, attribute ShataiDegreeAngle { xsd:double }?, attribute ShataiAdjustRotation { xsd:boolean }?, attribute ShataiAdjustTsume { xsd:boolean }?, attribute Tatechuyoko { xsd:boolean }?, attribute TatechuyokoXOffset { xsd:double }?, attribute TatechuyokoYOffset { xsd:double }?, attribute KentenTint { xsd:double }?, attribute KentenStrokeTint { xsd:double }?, attribute KentenWeight { xsd:double }?, attribute KentenOverprintFill { AdornmentOverprint_EnumValue }?, attribute KentenOverprintStroke { AdornmentOverprint_EnumValue }?, attribute KentenKind { KentenCharacter_EnumValue }?, attribute KentenPlacement { xsd:double }?, attribute KentenAlignment { KentenAlignment_EnumValue }?, attribute KentenPosition { RubyKentenPosition_EnumValue }?, attribute KentenFontSize { xsd:double }?, attribute KentenXScale { xsd:double }?, attribute KentenYScale { xsd:double }?, attribute KentenCustomCharacter { xsd:string }?, attribute KentenCharacterSet { KentenCharacterSet_EnumValue }?, attribute RubyTint { xsd:double }?, attribute RubyWeight { xsd:double }?, attribute RubyOverprintFill { AdornmentOverprint_EnumValue }?, attribute RubyOverprintStroke { AdornmentOverprint_EnumValue }?, attribute RubyStrokeTint { xsd:double }?, attribute RubyFontSize { xsd:double }?, attribute RubyOpenTypePro { xsd:boolean }?, attribute RubyXScale { xsd:double }?, attribute RubyYScale { xsd:double }?, attribute RubyType { RubyTypes_EnumValue }?, attribute RubyAlignment { RubyAlignments_EnumValue }?, attribute RubyPosition { RubyKentenPosition_EnumValue }?, attribute RubyXOffset { xsd:double }?, attribute RubyYOffset { xsd:double }?, attribute RubyParentSpacing { RubyParentSpacing_EnumValue }?, attribute RubyAutoAlign { xsd:boolean }?, attribute RubyOverhang { xsd:boolean }?, attribute RubyAutoScaling { xsd:boolean }?, attribute RubyParentScalingPercent { xsd:double }?, attribute RubyParentOverhangAmount { RubyOverhang_EnumValue }?, attribute Warichu { xsd:boolean }?, attribute WarichuSize { xsd:double }?, attribute WarichuLines { xsd:short }?, attribute WarichuLineSpacing { xsd:double }?, attribute WarichuAlignment { WarichuAlignment_EnumValue }?, attribute WarichuCharsAfterBreak { xsd:short }?, attribute WarichuCharsBeforeBreak { xsd:short }?, attribute OTFProportionalMetrics { xsd:boolean }?, attribute OTFHVKana { xsd:boolean }?, attribute OTFRomanItalics { xsd:boolean }?, attribute ScaleAffectsLineHeight { xsd:boolean }?, attribute CjkGridTracking { xsd:boolean }?, attribute GlyphForm { AlternateGlyphForms_EnumValue }?, attribute RubyFlag { xsd:int }?, attribute RubyString { xsd:string }?, attribute ParagraphGyoudori { xsd:boolean }?, attribute RubyAutoTcyDigits { xsd:short }?, attribute RubyAutoTcyIncludeRoman { xsd:boolean }?, attribute RubyAutoTcyAutoScale { xsd:boolean }?, attribute TreatIdeographicSpaceAsSpace { xsd:boolean }?, attribute AllowArbitraryHyphenation { xsd:boolean }?, attribute BulletsAndNumberingListType { ListType_EnumValue }?, attribute NumberingExpression { xsd:string }?, attribute BulletsTextAfter { xsd:string }?, attribute NumberingLevel { xsd:int }?, attribute NumberingContinue { xsd:boolean }?, attribute NumberingStartAt { xsd:int }?, attribute NumberingApplyRestartPolicy { xsd:boolean }?, attribute BulletsAlignment { ListAlignment_EnumValue }?, attribute NumberingAlignment { ListAlignment_EnumValue }?, element Properties { element ExcelImportPreferences { list_type, element ListItem { (enum_type, AlignmentStyleOptions_EnumValue ) | (long_type, xsd:int ) | (bool_type, xsd:boolean ) | (enum_type, TableFormattingOptions_EnumValue ) | (string_type, xsd:string ) }* }?& element WordRTFImportPreferences { list_type, element ListItem { (bool_type, xsd:boolean ) | (enum_type, ConvertPageBreaks_EnumValue ) | (enum_type, ConvertTablesOptions_EnumValue ) | (enum_type, ResolveStyleClash_EnumValue ) | (long_type, xsd:int ) }* }?& element TextImportPreferences { list_type, element ListItem { (bool_type, xsd:boolean ) | (long_type, xsd:int ) | (enum_type, TextImportCharacterSet_EnumValue ) | (enum_type, ImportPlatform_EnumValue ) | (short_type, xsd:short ) }* }?& element StyleMappingPreferences { list_type, element ListItem { list_type, element ListItem { string_type, xsd:string }* }, element ListItem { list_type, element ListItem { string_type, xsd:string }* } }?& element AppliedFont { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element Leading { (unit_type, xsd:double ) | (enum_type, Leading_EnumValue ) }?& element UnderlineColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element UnderlineGapColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element UnderlineType { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element StrikeThroughColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element StrikeThroughGapColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element StrikeThroughType { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element BalanceRaggedLines { (bool_type, xsd:boolean ) | (enum_type, BalanceLinesStyle_EnumValue ) }?& element RuleAboveColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element RuleAboveGapColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element RuleAboveType { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element RuleBelowColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element RuleBelowGapColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element RuleBelowType { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element SpanSplitColumnCount { (short_type, xsd:short {minInclusive="1" maxInclusive="40"} ) | (enum_type, SpanColumnCountOptions_EnumValue ) }?& element AllLineStyles { list_type, element ListItem { record_type, ( element AppliedCharacterStyle { object_type, xsd:string }& element LineCount { long_type, xsd:int }& element RepeatLast { long_type, xsd:int }) }* }?& element AllGREPStyles { list_type, element ListItem { record_type, ( element AppliedCharacterStyle { object_type, xsd:string }& element GrepExpression { string_type, xsd:string }) }* }?& element AllNestedStyles { list_type, element ListItem { record_type, ( element AppliedCharacterStyle { object_type, xsd:string }& element Delimiter { (string_type, xsd:string ) | (enum_type, NestedStyleDelimiters_EnumValue ) }& element Repetition { long_type, xsd:int }& element Inclusive { bool_type, xsd:boolean }) }* }?& element TabList { list_type, element ListItem { record_type, ( element Alignment { enum_type, TabStopAlignment_EnumValue }& element AlignmentCharacter { string_type, xsd:string }& element Leader { string_type, xsd:string }& element Position { unit_type, xsd:double }) }* }?& element OpenTypeFeatures { list_type, element ListItem { list_type, element ListItem { (string_type, xsd:string ) | (long_type, xsd:int ) }, element ListItem { (string_type, xsd:string ) | (long_type, xsd:int ) } }* }?& element KinsokuSet { (object_type, xsd:string ) | (enum_type, KinsokuSet_EnumValue ) | (string_type, xsd:string ) }?& element Mojikumi { (object_type, xsd:string ) | (string_type, xsd:string ) | (enum_type, MojikumiTableDefaults_EnumValue ) }?& element KentenFillColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element KentenStrokeColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element KentenFont { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element KentenFontStyle { (string_type, xsd:string ) | (enum_type, NothingEnum_EnumValue ) }?& element RubyFill { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element RubyStroke { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element RubyFont { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element RubyFontStyle { (string_type, xsd:string ) | (enum_type, NothingEnum_EnumValue ) }?& element BulletChar { attribute BulletCharacterType { BulletCharacterType_EnumValue }, attribute BulletCharacterValue { xsd:int } }?& 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 ) }?& element BulletsCharacterStyle { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element NumberingCharacterStyle { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element AppliedNumberingList { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element NumberingFormat { (enum_type, NumberingStyle_EnumValue ) | (string_type, xsd:string ) }?& element NumberingRestartPolicies { attribute RestartPolicy { RestartPolicy_EnumValue }, attribute LowerLevel { xsd:int }, attribute UpperLevel { xsd:int } }?& element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ?, ( StoryPreference_Object?, GridDataInformation_Object?, (MetadataPacketPreference_Object?& InCopyExportOption_Object?), (GaijiOwnedItemObject_Object*& Footnote_Object*& TextVariableInstance_Object*& ParagraphStyleRange_Object*& CharacterStyleRange_Object*& XMLElement_Object*& Table_Object*& ParaStyleMapping_Object*& CharStyleMapping_Object*& TableStyleMapping_Object*& CellStyleMapping_Object*& Link_Object*& Note_Object*& Change_Object*& Button_Object*& HiddenText_Object*& element Content {text}*& element Br {empty}*) ) }
|
|
379
|
+
```
|
|
380
|
+
|
|
381
|
+
Most of the properties of a story that are expressed as attributes can be found in the listing of common text element attributes (see 'Common Text Properties').
|
|
382
|
+
|
|
383
|
+
**Table 106**: Story Properties Represented as Attributes
|
|
384
|
+
|
|
385
|
+
| Name | Type | Req | Description |
|
|
386
|
+
| ------------------ | --------- | ------- | -------------------------------------- |
|
|
387
|
+
| AppliedNamedGrid | string | no | The named grid in use. |
|
|
388
|
+
| AppliedTOCStyle | string | no | The applied TOC style. |
|
|
389
|
+
| StoryTitle | string | no | Title for this story |
|
|
390
|
+
| TrackChanges | boolean | no | If true, TrackChanges is turned on. |
|
|
391
|
+
|
|
392
|
+
Most of the properties of a story that are expressed as elements can be found in the listing of common text properties elements (see 'Common Text Properties'). Stories can also contain a number of elements that are unique to the <Story> element. These elements are described in the following table.
|
|
393
|
+
|
|
394
|
+
**Table 107**: Story Properties Represented as Elements
|
|
395
|
+
|
|
396
|
+
| Name | Type | Req | Description |
|
|
397
|
+
| -------------------------- | ---------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
398
|
+
| ExcelImport Preferences | ListItem | no | Aseries of ListItem elements defining the properties of the Excel import preferences. InDesign exports these properties to maintain round-trip accuracy of the data in the IDML document; there is no need to include them in IDML documents you create yourself. |
|
|
399
|
+
| StyleMapping Preferences | ListItem | no | Aseries of ListItem elements defining the properties of the style mapping import prefer- ences. InDesign exports these properties to maintain round-trip accuracy of the data in the IDML document; there is no need to include them in IDML documents you create yourself. |
|
|
400
|
+
| TextImport Preferences | ListItem | no | Aseries of ListItem elements defining the properties of the text import preferences. InDe- sign exports these properties to maintain round- trip accuracy of the data in the IDML document; there is no need to include them in IDML docu- ments you create yourself. |
|
|
401
|
+
| WordRTFImport Preferences | ListItem | no | Aseries of ListItem elements defining the properties of the Word/RTF import preferences. InDesign exports these properties to maintain round-trip accuracy of the data in the IDML document; there is no need to include them in IDML documents you create yourself. |
|
|
402
|
+
|
|
403
|
+
### 10.4.8 Text Child Elements
|
|
404
|
+
|
|
405
|
+
Text child elements represent unique objects within the story, such as ranges of text, inline or anchored objects (groups or frames), notes, tables, and hyperlinks. These fall into two categories based on their representation in the IDML format: inline elements or text range elements.
|
|
406
|
+
|
|
407
|
+
Some inline text child elements may contain text content themselves-a note, for example, will contain further <ParagraphStyleRange> and <CharacterStyleRange> elements, which, in turn, can also contain anchored or inline items. An anchored TextFrame will contain a reference to another <Story> element, which, in turn, can contain <ParagraphStyleRange> and <CharacterStyleRange> elements and text child elements of its own.
|
|
408
|
+
|
|
409
|
+
## Text Range Elements
|
|
410
|
+
|
|
411
|
+
Text range elements are the XML elements that define a range of text in a story. In general, a text range element contains a continuous 'run' of text formatting. These objects are further broken up into <ParagraphStyleRange> elements, which contain ranges of continuous paragraph formatting. <ParagraphStyleRange> elements contain <CharacterStyleRange> elements, which define a continuous range of character formatting. All of the text in a <Story> element is contained inside <Content> elements within <CharacterStyleRange> elements.
|
|
412
|
+
|
|
413
|
+
**Schema Example 79. Paragraph Style Range**
|
|
414
|
+
|
|
415
|
+
```
|
|
416
|
+
ParagraphStyleRange_Object = element ParagraphStyleRange { attribute KerningValue { xsd:double }?, attribute FontStyle { xsd:string }?, attribute PointSize { xsd:double }?, attribute KerningMethod { xsd:string }?, attribute Tracking { xsd:double }?, attribute Capitalization { Capitalization_EnumValue }?, attribute Position { Position_EnumValue }?, attribute Underline { xsd:boolean }?, attribute StrikeThru { xsd:boolean }?, attribute Ligatures { xsd:boolean }?, attribute NoBreak { xsd:boolean }?, attribute HorizontalScale { xsd:double }?, attribute VerticalScale { xsd:double }?, attribute BaselineShift { xsd:double }?, attribute Skew { xsd:double }?, attribute FillTint { xsd:double }?, attribute StrokeTint { xsd:double }?, attribute StrokeWeight { xsd:double }?, attribute OverprintStroke { xsd:boolean }?, attribute OverprintFill { xsd:boolean }?, attribute OTFFigureStyle { OTFFigureStyle_EnumValue }?, attribute OTFOrdinal { xsd:boolean }?, attribute OTFFraction { xsd:boolean }?, attribute OTFDiscretionaryLigature { xsd:boolean }?, attribute OTFTitling { xsd:boolean }?, attribute OTFContextualAlternate { xsd:boolean }?, attribute OTFSwash { xsd:boolean }?, attribute UnderlineTint { xsd:double }?, attribute UnderlineGapTint { xsd:double }?, attribute UnderlineOverprint { xsd:boolean }?, attribute UnderlineGapOverprint { xsd:boolean }?, attribute UnderlineOffset { xsd:double }?, attribute UnderlineWeight { xsd:double }?, attribute StrikeThroughTint { xsd:double }?, attribute StrikeThroughGapTint { xsd:double }?, attribute StrikeThroughOverprint { xsd:boolean }?, attribute StrikeThroughGapOverprint { xsd:boolean }?, attribute StrikeThroughOffset { xsd:double }?, attribute StrikeThroughWeight { xsd:double }?, attribute FillColor { xsd:string }?, attribute StrokeColor { xsd:string }?, attribute AppliedLanguage { xsd:string }?, attribute ParagraphKashidaWidth { xsd:double }?, attribute FirstLineIndent { xsd:double }?, attribute LeftIndent { xsd:double }?, attribute RightIndent { xsd:double }?, attribute SpaceBefore { xsd:double }?, attribute SpaceAfter { xsd:double }?, attribute Justification { Justification_EnumValue }?, attribute SingleWordJustification { SingleWordJustification_EnumValue }?, attribute AutoLeading { xsd:double }?, attribute DropCapLines { xsd:short {minInclusive="0" maxInclusive="25"} }?, attribute DropCapCharacters { xsd:short {minInclusive="0" maxInclusive="150"} }?, attribute KeepLinesTogether { xsd:boolean }?, attribute KeepAllLinesTogether { xsd:boolean }?, attribute KeepWithNext { xsd:short {minInclusive="0" maxInclusive="5"} }?, attribute KeepFirstLines { xsd:short {minInclusive="1" maxInclusive="50"} }?, attribute KeepLastLines { xsd:short {minInclusive="1" maxInclusive="50"} }?, attribute StartParagraph { StartParagraph_EnumValue }?, attribute Composer { xsd:string }?, attribute MinimumWordSpacing { xsd:double }?, attribute MaximumWordSpacing { xsd:double }?, attribute DesiredWordSpacing { xsd:double }?, attribute MinimumLetterSpacing { xsd:double }?, attribute MaximumLetterSpacing { xsd:double }?, attribute DesiredLetterSpacing { xsd:double }?, attribute MinimumGlyphScaling { xsd:double }?, attribute MaximumGlyphScaling { xsd:double }?, attribute DesiredGlyphScaling { xsd:double }?, attribute RuleAbove { xsd:boolean }?, attribute RuleAboveOverprint { xsd:boolean }?, attribute RuleAboveLineWeight { xsd:double }?, attribute RuleAboveTint { xsd:double }?, attribute RuleAboveOffset { xsd:double }?, attribute RuleAboveLeftIndent { xsd:double }?, attribute RuleAboveRightIndent { xsd:double }?, attribute RuleAboveWidth { RuleWidth_EnumValue }?, attribute RuleAboveGapTint { xsd:double }?, attribute RuleAboveGapOverprint { xsd:boolean }?, attribute RuleBelow { xsd:boolean }?, attribute RuleBelowLineWeight { xsd:double }?, attribute RuleBelowTint { xsd:double }?, attribute RuleBelowOffset { xsd:double }?, attribute RuleBelowLeftIndent { xsd:double }?, attribute RuleBelowRightIndent { xsd:double }?, attribute RuleBelowWidth { RuleWidth_EnumValue }?, attribute RuleBelowGapTint { xsd:double }?, attribute HyphenateCapitalizedWords { xsd:boolean }?, attribute Hyphenation { xsd:boolean }?, attribute HyphenateBeforeLast { xsd:short {minInclusive="1" maxInclusive="15"} }?, attribute HyphenateAfterFirst { xsd:short {minInclusive="1" maxInclusive="15"} }?, attribute HyphenateWordsLongerThan { xsd:short {minInclusive="3" maxInclusive="25"} }?, attribute HyphenateLadderLimit { xsd:short {minInclusive="0" maxInclusive="25"} }?, attribute HyphenationZone { xsd:double }?, attribute HyphenWeight { xsd:short {minInclusive="0" maxInclusive="10"} }?, attribute AppliedParagraphStyle { xsd:string }?, attribute AppliedCharacterStyle { xsd:string }?, attribute LastLineIndent { xsd:double }?, attribute HyphenateLastWord { xsd:boolean }?, attribute OTFSlashedZero { xsd:boolean }?, attribute OTFHistorical { xsd:boolean }?, attribute OTFStylisticSets { xsd:int }?, attribute GradientFillLength { xsd:double }?, attribute GradientFillAngle { xsd:double }?, attribute GradientStrokeLength { xsd:double }?, attribute GradientStrokeAngle { xsd:double }?, attribute GradientFillStart { UnitPointType_TypeDef }?, attribute GradientStrokeStart { UnitPointType_TypeDef }?, attribute KeepWithPrevious { xsd:boolean }?, attribute SpanColumnType { SpanColumnTypeOptions_EnumValue }?, attribute SplitColumnInsideGutter { xsd:double }?, attribute SplitColumnOutsideGutter { xsd:double }?, attribute SpanColumnMinSpaceBefore { xsd:double }?, attribute SpanColumnMinSpaceAfter { xsd:double }?, attribute RuleBelowOverprint { xsd:boolean }?, attribute RuleBelowGapOverprint { xsd:boolean }?, attribute DropcapDetail { xsd:int }?, attribute HyphenateAcrossColumns { xsd:boolean }?, attribute KeepRuleAboveInFrame { xsd:boolean }?, attribute IgnoreEdgeAlignment { xsd:boolean }?, attribute OTFMark { xsd:boolean }?, attribute OTFLocale { xsd:boolean }?, attribute PositionalForm { PositionalForms_EnumValue }?, attribute ParagraphDirection { ParagraphDirectionOptions_EnumValue }?, attribute ParagraphJustification { ParagraphJustificationOptions_EnumValue }?, attribute MiterLimit { xsd:double {minInclusive="0" maxInclusive="1000"} }?, attribute StrokeAlignment { TextStrokeAlign_EnumValue }?, attribute EndJoin { OutlineJoin_EnumValue }?, attribute OTFOverlapSwash { xsd:boolean }?, attribute OTFStylisticAlternate { xsd:boolean }?, attribute OTFJustificationAlternate { xsd:boolean }?, attribute OTFStretchedAlternate { xsd:boolean }?, attribute CharacterDirection { CharacterDirectionOptions_EnumValue }?, attribute KeyboardDirection { CharacterDirectionOptions_EnumValue }?, attribute DigitsType { DigitsTypeOptions_EnumValue }?, attribute Kashidas { KashidasOptions_EnumValue }?, attribute DiacriticPosition { DiacriticPositionOptions_EnumValue }?, attribute XOffsetDiacritic { xsd:double }?, attribute YOffsetDiacritic { xsd:double }?, attribute ParagraphBreakType { ParagraphBreakTypes_EnumValue }?, attribute PageNumberType { PageNumberTypes_EnumValue }?, attribute AppliedConditions { list { xsd:string * } }?, attribute GridAlignFirstLineOnly { xsd:boolean }?, attribute GridAlignment { GridAlignment_EnumValue }?, attribute GridGyoudori { xsd:short }?, attribute AutoTcy { xsd:short }?, attribute AutoTcyIncludeRoman { xsd:boolean }?, attribute KinsokuType { KinsokuType_EnumValue }?, attribute KinsokuHangType { KinsokuHangTypes_EnumValue }?, attribute BunriKinshi { xsd:boolean }?, attribute Rensuuji { xsd:boolean }?, attribute RotateSingleByteCharacters { xsd:boolean }?, attribute LeadingModel { LeadingModel_EnumValue }?, attribute CharacterAlignment { CharacterAlignment_EnumValue }?, attribute Tsume { xsd:double }?, attribute LeadingAki { xsd:double }?, attribute TrailingAki { xsd:double }?, attribute CharacterRotation { xsd:double }?, attribute Jidori { xsd:short }?, attribute ShataiMagnification { xsd:double }?, attribute ShataiDegreeAngle { xsd:double }?, attribute ShataiAdjustRotation { xsd:boolean }?, attribute ShataiAdjustTsume { xsd:boolean }?, attribute Tatechuyoko { xsd:boolean }?, attribute TatechuyokoXOffset { xsd:double }?, attribute TatechuyokoYOffset { xsd:double }?, attribute KentenTint { xsd:double }?, attribute KentenStrokeTint { xsd:double }?, attribute KentenWeight { xsd:double }?, attribute KentenOverprintFill { AdornmentOverprint_EnumValue }?, attribute KentenOverprintStroke { AdornmentOverprint_EnumValue }?, attribute KentenKind { KentenCharacter_EnumValue }?, attribute KentenPlacement { xsd:double }?, attribute KentenAlignment { KentenAlignment_EnumValue }?, attribute KentenPosition { RubyKentenPosition_EnumValue }?, attribute KentenFontSize { xsd:double }?, attribute KentenXScale { xsd:double }?, attribute KentenYScale { xsd:double }?, attribute KentenCustomCharacter { xsd:string }?, attribute KentenCharacterSet { KentenCharacterSet_EnumValue }?, attribute RubyTint { xsd:double }?, attribute RubyWeight { xsd:double }?, attribute RubyOverprintFill { AdornmentOverprint_EnumValue }?, attribute RubyOverprintStroke { AdornmentOverprint_EnumValue }?, attribute RubyStrokeTint { xsd:double }?, attribute RubyFontSize { xsd:double }?, attribute RubyOpenTypePro { xsd:boolean }?, attribute RubyXScale { xsd:double }?, attribute RubyYScale { xsd:double }?, attribute RubyType { RubyTypes_EnumValue }?, attribute RubyAlignment { RubyAlignments_EnumValue }?, attribute RubyPosition { RubyKentenPosition_EnumValue }?, attribute RubyXOffset { xsd:double }?, attribute RubyYOffset { xsd:double }?, attribute RubyParentSpacing { RubyParentSpacing_EnumValue }?, attribute RubyAutoAlign { xsd:boolean }?, attribute RubyOverhang { xsd:boolean }?, attribute RubyAutoScaling { xsd:boolean }?, attribute RubyParentScalingPercent { xsd:double }?, attribute RubyParentOverhangAmount { RubyOverhang_EnumValue }?, attribute Warichu { xsd:boolean }?, attribute WarichuSize { xsd:double }?, attribute WarichuLines { xsd:short }?, attribute WarichuLineSpacing { xsd:double }?, attribute WarichuAlignment { WarichuAlignment_EnumValue }?, attribute WarichuCharsAfterBreak { xsd:short }?, attribute WarichuCharsBeforeBreak { xsd:short }?, attribute OTFProportionalMetrics { xsd:boolean }?, attribute OTFHVKana { xsd:boolean }?, attribute OTFRomanItalics { xsd:boolean }?, attribute ScaleAffectsLineHeight { xsd:boolean }?, attribute CjkGridTracking { xsd:boolean }?, attribute GlyphForm { AlternateGlyphForms_EnumValue }?, attribute RubyFlag { xsd:int }?, attribute RubyString { xsd:string }?, attribute ParagraphGyoudori { xsd:boolean }?, attribute RubyAutoTcyDigits { xsd:short }?, attribute RubyAutoTcyIncludeRoman { xsd:boolean }?, attribute RubyAutoTcyAutoScale { xsd:boolean }?, attribute TreatIdeographicSpaceAsSpace { xsd:boolean }?, attribute AllowArbitraryHyphenation { xsd:boolean }?, attribute BulletsAndNumberingListType { ListType_EnumValue }?, attribute NumberingExpression { xsd:string }?, attribute BulletsTextAfter { xsd:string }?, attribute NumberingLevel { xsd:int }?, attribute NumberingContinue { xsd:boolean }?, attribute NumberingStartAt { xsd:int }?, attribute NumberingApplyRestartPolicy { xsd:boolean }?, attribute BulletsAlignment { ListAlignment_EnumValue }?, attribute NumberingAlignment { ListAlignment_EnumValue }?, element Properties { element AppliedFont { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element Leading { (unit_type, xsd:double ) | (enum_type, Leading_EnumValue ) }?& element UnderlineColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element UnderlineGapColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element UnderlineType { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element StrikeThroughColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element StrikeThroughGapColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element StrikeThroughType { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element CustomGlyph { (long_type, xsd:int ) | (string_type, xsd:string ) }?& element BalanceRaggedLines { (bool_type, xsd:boolean ) | (enum_type, BalanceLinesStyle_EnumValue ) }?& element RuleAboveColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element RuleAboveGapColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element RuleAboveType { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element RuleBelowColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element RuleBelowGapColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element RuleBelowType { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element SpanSplitColumnCount { (short_type, xsd:short {minInclusive="1" maxInclusive="40"} ) | (enum_type, SpanColumnCountOptions_EnumValue ) }?& element AllLineStyles { list_type, element ListItem { record_type, ( element AppliedCharacterStyle { object_type, xsd:string }& element LineCount { long_type, xsd:int }& element RepeatLast { long_type, xsd:int }) }* }?& element AllGREPStyles { list_type, element ListItem { record_type, ( element AppliedCharacterStyle { object_type, xsd:string }& element GrepExpression { string_type, xsd:string }) }* }?& element AllNestedStyles { list_type, element ListItem { record_type, ( element AppliedCharacterStyle { object_type, xsd:string }& element Delimiter { (string_type, xsd:string ) | (enum_type, NestedStyleDelimiters_EnumValue ) }& element Repetition { long_type, xsd:int }& element Inclusive { bool_type, xsd:boolean }) }* }?& element TabList { list_type, element ListItem { record_type, ( element Alignment { enum_type, TabStopAlignment_EnumValue }& element AlignmentCharacter { string_type, xsd:string }& element Leader { string_type, xsd:string }& element Position { unit_type, xsd:double }) }* }?& element OpenTypeFeatures { list_type, element ListItem { list_type, element ListItem { (string_type, xsd:string ) | (long_type, xsd:int ) }, element ListItem { (string_type, xsd:string ) | (long_type, xsd:int ) } }* }?& element KinsokuSet { (object_type, xsd:string ) | (enum_type, KinsokuSet_EnumValue ) | (string_type, xsd:string ) }?& element Mojikumi { (object_type, xsd:string ) | (string_type, xsd:string ) | (enum_type, MojikumiTableDefaults_EnumValue ) }?& element KentenFillColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element KentenStrokeColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element KentenFont { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element KentenFontStyle { (string_type, xsd:string ) | (enum_type, NothingEnum_EnumValue ) }?& element RubyFill { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element RubyStroke { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element RubyFont { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element RubyFontStyle { (string_type, xsd:string ) | (enum_type, NothingEnum_EnumValue ) }?& element BulletChar { attribute BulletCharacterType { BulletCharacterType_EnumValue }, attribute BulletCharacterValue { xsd:int } }?& 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 ) }?& element BulletsCharacterStyle { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element NumberingCharacterStyle { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element AppliedNumberingList { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element NumberingFormat { (enum_type, NumberingStyle_EnumValue ) | (string_type, xsd:string ) }?& element NumberingRestartPolicies { attribute RestartPolicy { RestartPolicy_EnumValue }, attribute LowerLevel { xsd:int }, attribute UpperLevel { xsd:int } }? } ?, ( Footnote_Object*& GaijiOwnedItemObject_Object*& Note_Object*& Table_Object*& TextVariableInstance_Object*& HyperlinkTextDestination_Object*& Change_Object*& HiddenText_Object*& XMLElement_Object*& XMLComment_Object*& XMLInstruction_Object*& DTD_Object*& Oval_Object*& Rectangle_Object*& GraphicLine_Object*& Polygon_Object*& Group_Object*& TextFrame_Object*& Button_Object*& FormField_Object*& MultiStateObject_Object*& EPSText_Object*& CharacterStyleRange_Object*& HyperlinkTextSource_Object*& PageReference_Object*& ParagraphDestination_Object*& CrossReferenceSource_Object*& element Content {text}*& element Br {empty}* ) }
|
|
417
|
+
```
|
|
418
|
+
|
|
419
|
+
## Paragraph Style Range Attributes
|
|
420
|
+
|
|
421
|
+
The properties of a <ParagraphStyleRange> that are expressed as attributes can be found in the listing of common text element attributes (see 'Common Text Properties').
|
|
422
|
+
|
|
423
|
+
## Paragraph Style Range Elements
|
|
424
|
+
|
|
425
|
+
The properties of a <ParagraphStyleRange> that are expressed as elements can be found in the listing of common text elements (see 'Common Text Properties').
|
|
426
|
+
|
|
427
|
+
## CharacterStyleRange
|
|
428
|
+
|
|
429
|
+
Inside a <ParagraphStyleRange> element, you'll find one or more <CharacterStyleRange> elements. <CharacterStyleRange> elements represent a continuous run of text formatting.
|
|
430
|
+
|
|
431
|
+
**Schema Example 80. CharacterStyleRange**
|
|
432
|
+
|
|
433
|
+
```
|
|
434
|
+
CharacterStyleRange_Object = element CharacterStyleRange { attribute KerningValue { xsd:double }?, attribute FontStyle { xsd:string }?, attribute PointSize { xsd:double }?, attribute KerningMethod { xsd:string }?, attribute Tracking { xsd:double }?, attribute Capitalization { Capitalization_EnumValue }?, attribute Position { Position_EnumValue }?, attribute Underline { xsd:boolean }?, attribute StrikeThru { xsd:boolean }?, attribute Ligatures { xsd:boolean }?, attribute NoBreak { xsd:boolean }?, attribute HorizontalScale { xsd:double }?, attribute VerticalScale { xsd:double }?, attribute BaselineShift { xsd:double }?, attribute Skew { xsd:double }?, attribute FillTint { xsd:double }?, attribute StrokeTint { xsd:double }?, attribute StrokeWeight { xsd:double }?, attribute OverprintStroke { xsd:boolean }?, attribute OverprintFill { xsd:boolean }?, attribute OTFFigureStyle { OTFFigureStyle_EnumValue }?, attribute OTFOrdinal { xsd:boolean }?, attribute OTFFraction { xsd:boolean }?, attribute OTFDiscretionaryLigature { xsd:boolean }?, attribute OTFTitling { xsd:boolean }?, attribute OTFContextualAlternate { xsd:boolean }?, attribute OTFSwash { xsd:boolean }?, attribute UnderlineTint { xsd:double }?, attribute UnderlineGapTint { xsd:double }?, attribute UnderlineOverprint { xsd:boolean }?, attribute UnderlineGapOverprint { xsd:boolean }?, attribute UnderlineOffset { xsd:double }?, attribute UnderlineWeight { xsd:double }?, attribute StrikeThroughTint { xsd:double }?, attribute StrikeThroughGapTint { xsd:double }?, attribute StrikeThroughOverprint { xsd:boolean }?, attribute StrikeThroughGapOverprint { xsd:boolean }?, attribute StrikeThroughOffset { xsd:double }?, attribute StrikeThroughWeight { xsd:double }?, attribute FillColor { xsd:string }?, attribute StrokeColor { xsd:string }?, attribute AppliedLanguage { xsd:string }?, attribute ParagraphKashidaWidth { xsd:double }?, attribute FirstLineIndent { xsd:double }?, attribute LeftIndent { xsd:double }?, attribute RightIndent { xsd:double }?, attribute SpaceBefore { xsd:double }?, attribute SpaceAfter { xsd:double }?, attribute Justification { Justification_EnumValue }?, attribute SingleWordJustification { SingleWordJustification_EnumValue }?, attribute AutoLeading { xsd:double }?, attribute DropCapLines { xsd:short {minInclusive="0" maxInclusive="25"} }?, attribute DropCapCharacters { xsd:short {minInclusive="0" maxInclusive="150"} }?, attribute KeepLinesTogether { xsd:boolean }?, attribute KeepAllLinesTogether { xsd:boolean }?, attribute KeepWithNext { xsd:short {minInclusive="0" maxInclusive="5"} }?, attribute KeepFirstLines { xsd:short {minInclusive="1" maxInclusive="50"} }?, attribute KeepLastLines { xsd:short {minInclusive="1" maxInclusive="50"} }?, attribute StartParagraph { StartParagraph_EnumValue }?, attribute Composer { xsd:string }?, attribute MinimumWordSpacing { xsd:double }?, attribute MaximumWordSpacing { xsd:double }?, attribute DesiredWordSpacing { xsd:double }?, attribute MinimumLetterSpacing { xsd:double }?, attribute MaximumLetterSpacing { xsd:double }?, attribute DesiredLetterSpacing { xsd:double }?, attribute MinimumGlyphScaling { xsd:double }?, attribute MaximumGlyphScaling { xsd:double }?, attribute DesiredGlyphScaling { xsd:double }?, attribute RuleAbove { xsd:boolean }?, attribute RuleAboveOverprint { xsd:boolean }?, attribute RuleAboveLineWeight { xsd:double }?, attribute RuleAboveTint { xsd:double }?, attribute RuleAboveOffset { xsd:double }?, attribute RuleAboveLeftIndent { xsd:double }?, attribute RuleAboveRightIndent { xsd:double }?, attribute RuleAboveWidth { RuleWidth_EnumValue }?, attribute RuleAboveGapTint { xsd:double }?, attribute RuleAboveGapOverprint { xsd:boolean }?, attribute RuleBelow { xsd:boolean }?, attribute RuleBelowLineWeight { xsd:double }?, attribute RuleBelowTint { xsd:double }?, attribute RuleBelowOffset { xsd:double }?, attribute RuleBelowLeftIndent { xsd:double }?, attribute RuleBelowRightIndent { xsd:double }?, attribute RuleBelowWidth { RuleWidth_EnumValue }?, attribute RuleBelowGapTint { xsd:double }?, attribute HyphenateCapitalizedWords { xsd:boolean }?, attribute Hyphenation { xsd:boolean }?, attribute HyphenateBeforeLast { xsd:short {minInclusive="1" maxInclusive="15"} }?, attribute HyphenateAfterFirst { xsd:short {minInclusive="1" maxInclusive="15"} }?, attribute HyphenateWordsLongerThan { xsd:short {minInclusive="3" maxInclusive="25"} }?, attribute HyphenateLadderLimit { xsd:short {minInclusive="0" maxInclusive="25"} }?, attribute HyphenationZone { xsd:double }?, attribute HyphenWeight { xsd:short {minInclusive="0" maxInclusive="10"} }?, attribute AppliedParagraphStyle { xsd:string }?, attribute AppliedCharacterStyle { xsd:string }?, attribute LastLineIndent { xsd:double }?, attribute HyphenateLastWord { xsd:boolean }?, attribute OTFSlashedZero { xsd:boolean }?, attribute OTFHistorical { xsd:boolean }?, attribute OTFStylisticSets { xsd:int }?, attribute GradientFillLength { xsd:double }?, attribute GradientFillAngle { xsd:double }?, attribute GradientStrokeLength { xsd:double }?, attribute GradientStrokeAngle { xsd:double }?, attribute GradientFillStart { UnitPointType_TypeDef }?, attribute GradientStrokeStart { UnitPointType_TypeDef }?, attribute KeepWithPrevious { xsd:boolean }?, attribute SpanColumnType { SpanColumnTypeOptions_EnumValue }?, attribute SplitColumnInsideGutter { xsd:double }?, attribute SplitColumnOutsideGutter { xsd:double }?, attribute SpanColumnMinSpaceBefore { xsd:double }?, attribute SpanColumnMinSpaceAfter { xsd:double }?, attribute RuleBelowOverprint { xsd:boolean }?, attribute RuleBelowGapOverprint { xsd:boolean }?, attribute DropcapDetail { xsd:int }?, attribute HyphenateAcrossColumns { xsd:boolean }?, attribute KeepRuleAboveInFrame { xsd:boolean }?, attribute IgnoreEdgeAlignment { xsd:boolean }?, attribute OTFMark { xsd:boolean }?, attribute OTFLocale { xsd:boolean }?, attribute PositionalForm { PositionalForms_EnumValue }?, attribute ParagraphDirection { ParagraphDirectionOptions_EnumValue }?, attribute ParagraphJustification { ParagraphJustificationOptions_EnumValue }?, attribute MiterLimit { xsd:double {minInclusive="0" maxInclusive="1000"} }?, attribute StrokeAlignment { TextStrokeAlign_EnumValue }?, attribute EndJoin { OutlineJoin_EnumValue }?, attribute OTFOverlapSwash { xsd:boolean }?, attribute OTFStylisticAlternate { xsd:boolean }?, attribute OTFJustificationAlternate { xsd:boolean }?, attribute OTFStretchedAlternate { xsd:boolean }?, attribute CharacterDirection { CharacterDirectionOptions_EnumValue }?, attribute KeyboardDirection { CharacterDirectionOptions_EnumValue }?, attribute DigitsType { DigitsTypeOptions_EnumValue }?, attribute Kashidas { KashidasOptions_EnumValue }?, attribute DiacriticPosition { DiacriticPositionOptions_EnumValue }?, attribute XOffsetDiacritic { xsd:double }?, attribute YOffsetDiacritic { xsd:double }?, attribute ParagraphBreakType { ParagraphBreakTypes_EnumValue }?, attribute PageNumberType { PageNumberTypes_EnumValue }?, attribute AppliedConditions { list { xsd:string * } }?, attribute GridAlignFirstLineOnly { xsd:boolean }?, attribute GridAlignment { GridAlignment_EnumValue }?, attribute GridGyoudori { xsd:short }?, attribute AutoTcy { xsd:short }?, attribute AutoTcyIncludeRoman { xsd:boolean }?, attribute KinsokuType { KinsokuType_EnumValue }?, attribute KinsokuHangType { KinsokuHangTypes_EnumValue }?, attribute BunriKinshi { xsd:boolean }?, attribute Rensuuji { xsd:boolean }?, attribute RotateSingleByteCharacters { xsd:boolean }?, attribute LeadingModel { LeadingModel_EnumValue }?, attribute CharacterAlignment { CharacterAlignment_EnumValue }?, attribute Tsume { xsd:double }?, attribute LeadingAki { xsd:double }?, attribute TrailingAki { xsd:double }?, attribute CharacterRotation { xsd:double }?, attribute Jidori { xsd:short }?, attribute ShataiMagnification { xsd:double }?, attribute ShataiDegreeAngle { xsd:double }?, attribute ShataiAdjustRotation { xsd:boolean }?, attribute ShataiAdjustTsume { xsd:boolean }?, attribute Tatechuyoko { xsd:boolean }?, attribute TatechuyokoXOffset { xsd:double }?, attribute TatechuyokoYOffset { xsd:double }?, attribute KentenTint { xsd:double }?, attribute KentenStrokeTint { xsd:double }?, attribute KentenWeight { xsd:double }?, attribute KentenOverprintFill { AdornmentOverprint_EnumValue }?, attribute KentenOverprintStroke { AdornmentOverprint_EnumValue }?, attribute KentenKind { KentenCharacter_EnumValue }?, attribute KentenPlacement { xsd:double }?, attribute KentenAlignment { KentenAlignment_EnumValue }?, attribute KentenPosition { RubyKentenPosition_EnumValue }?, attribute KentenFontSize { xsd:double }?, attribute KentenXScale { xsd:double }?, attribute KentenYScale { xsd:double }?, attribute KentenCustomCharacter { xsd:string }?, attribute KentenCharacterSet { KentenCharacterSet_EnumValue }?, attribute RubyTint { xsd:double }?, attribute RubyWeight { xsd:double }?, attribute RubyOverprintFill { AdornmentOverprint_EnumValue }?, attribute RubyOverprintStroke { AdornmentOverprint_EnumValue }?, attribute RubyStrokeTint { xsd:double }?, attribute RubyFontSize { xsd:double }?, attribute RubyOpenTypePro { xsd:boolean }?, attribute RubyXScale { xsd:double }?, attribute RubyYScale { xsd:double }?, attribute RubyType { RubyTypes_EnumValue }?, attribute RubyAlignment { RubyAlignments_EnumValue }?, attribute RubyPosition { RubyKentenPosition_EnumValue }?, attribute RubyXOffset { xsd:double }?, attribute RubyYOffset { xsd:double }?, attribute RubyParentSpacing { RubyParentSpacing_EnumValue }?, attribute RubyAutoAlign { xsd:boolean }?, attribute RubyOverhang { xsd:boolean }?, attribute RubyAutoScaling { xsd:boolean }?, attribute RubyParentScalingPercent { xsd:double }?, attribute RubyParentOverhangAmount { RubyOverhang_EnumValue }?, attribute Warichu { xsd:boolean }?, attribute WarichuSize { xsd:double }?, attribute WarichuLines { xsd:short }?, attribute WarichuLineSpacing { xsd:double }?, attribute WarichuAlignment { WarichuAlignment_EnumValue }?, attribute WarichuCharsAfterBreak { xsd:short }?, attribute WarichuCharsBeforeBreak { xsd:short }?, attribute OTFProportionalMetrics { xsd:boolean }?, attribute OTFHVKana { xsd:boolean }?, attribute OTFRomanItalics { xsd:boolean }?, attribute ScaleAffectsLineHeight { xsd:boolean }?, attribute CjkGridTracking { xsd:boolean }?, attribute GlyphForm { AlternateGlyphForms_EnumValue }?, attribute RubyFlag { xsd:int }?, attribute RubyString { xsd:string }?, attribute ParagraphGyoudori { xsd:boolean }?, attribute RubyAutoTcyDigits { xsd:short }?, attribute RubyAutoTcyIncludeRoman { xsd:boolean }?, attribute RubyAutoTcyAutoScale { xsd:boolean }?, attribute TreatIdeographicSpaceAsSpace { xsd:boolean }?, attribute AllowArbitraryHyphenation { xsd:boolean }?, attribute BulletsAndNumberingListType { ListType_EnumValue }?, attribute NumberingExpression { xsd:string }?, attribute BulletsTextAfter { xsd:string }?, attribute NumberingLevel { xsd:int }?, attribute NumberingContinue { xsd:boolean }?, attribute NumberingStartAt { xsd:int }?, attribute NumberingApplyRestartPolicy { xsd:boolean }?, attribute BulletsAlignment { ListAlignment_EnumValue }?, attribute NumberingAlignment { ListAlignment_EnumValue }?, element Properties { element AppliedFont { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element Leading { (unit_type, xsd:double ) | (enum_type, Leading_EnumValue ) }?& element UnderlineColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element UnderlineGapColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element UnderlineType { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element StrikeThroughColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element StrikeThroughGapColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element StrikeThroughType { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element CustomGlyph { (long_type, xsd:int ) | (string_type, xsd:string ) }?& element BalanceRaggedLines { (bool_type, xsd:boolean ) | (enum_type, BalanceLinesStyle_EnumValue ) }?& element RuleAboveColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element RuleAboveGapColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element RuleAboveType { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element RuleBelowColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element RuleBelowGapColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element RuleBelowType { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element SpanSplitColumnCount { (short_type, xsd:short {minInclusive="1" maxInclusive="40"} ) | (enum_type, SpanColumnCountOptions_EnumValue ) }?& element AllLineStyles { list_type, element ListItem { record_type, ( element AppliedCharacterStyle { object_type, xsd:string }& element LineCount { long_type, xsd:int }& element RepeatLast { long_type, xsd:int }) }* }?& element AllGREPStyles { list_type, element ListItem { record_type, ( element AppliedCharacterStyle { object_type, xsd:string }& element GrepExpression { string_type, xsd:string }) }* }?& element AllNestedStyles { list_type, element ListItem { record_type, ( element AppliedCharacterStyle { object_type, xsd:string }& element Delimiter { (string_type, xsd:string ) | (enum_type, NestedStyleDelimiters_EnumValue ) }& element Repetition { long_type, xsd:int }& element Inclusive { bool_type, xsd:boolean }) }* }?& element TabList { list_type, element ListItem { record_type, ( element Alignment { enum_type, TabStopAlignment_EnumValue }& element AlignmentCharacter { string_type, xsd:string }& element Leader { string_type, xsd:string }& element Position { unit_type, xsd:double }) }* }?& element OpenTypeFeatures { list_type, element ListItem { list_type, element ListItem { (string_type, xsd:string ) | (long_type, xsd:int ) }, element ListItem { (string_type, xsd:string ) | (long_type, xsd:int ) } }* }?& element KinsokuSet { (object_type, xsd:string ) | (enum_type, KinsokuSet_EnumValue ) | (string_type, xsd:string ) }?& element Mojikumi { (object_type, xsd:string ) | (string_type, xsd:string ) | (enum_type, MojikumiTableDefaults_EnumValue ) }?& element KentenFillColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element KentenStrokeColor { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element KentenFont { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element KentenFontStyle { (string_type, xsd:string ) | (enum_type, NothingEnum_EnumValue ) }?& element RubyFill { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element RubyStroke { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element RubyFont { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element RubyFontStyle { (string_type, xsd:string ) | (enum_type, NothingEnum_EnumValue ) }?& element BulletChar { attribute BulletCharacterType { BulletCharacterType_EnumValue }, attribute BulletCharacterValue { xsd:int } }?& 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 ) }?& element BulletsCharacterStyle { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element NumberingCharacterStyle { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element AppliedNumberingList { (object_type, xsd:string ) | (string_type, xsd:string ) }?& element NumberingFormat { (enum_type, NumberingStyle_EnumValue ) | (string_type, xsd:string ) }?& element NumberingRestartPolicies { attribute RestartPolicy { RestartPolicy_EnumValue }, attribute LowerLevel { xsd:int }, attribute UpperLevel { xsd:int } }? } ?, ( Footnote_Object*& GaijiOwnedItemObject_Object*& Note_Object*& Table_Object*& TextVariableInstance_Object*& HyperlinkTextDestination_Object*& Change_Object*& HiddenText_Object*& XMLElement_Object*& XMLComment_Object*& XMLInstruction_Object*& DTD_Object*& Oval_Object*& Rectangle_Object*& GraphicLine_Object*& Polygon_Object*& Group_Object*& TextFrame_Object*& Button_Object*& FormField_Object*& MultiStateObject_Object*& EPSText_Object*& PageReference_Object*& HyperlinkTextSource_Object*& ParagraphDestination_Object*& CrossReferenceSource_Object*& element Content {text}*& element Br {empty}* ) }
|
|
435
|
+
```
|
|
436
|
+
|
|
437
|
+
#### CharacterStyleRange Attributes
|
|
438
|
+
|
|
439
|
+
The properties of a <CharacterStyleRange> that are expressed as attributes can be found in the listing of common text element attributes (see 'Common Text Properties').
|
|
440
|
+
|
|
441
|
+
#### CharacterStyleRange Elements
|
|
442
|
+
|
|
443
|
+
Most of the properties of a <CharacterStyleRange> that are expressed as elements can be found in the listing of common text elements (see 'Common Text Properties'). A <CharacterStyleRange> can also contain an element that is unique. This element is described in the following table.
|
|
444
|
+
|
|
445
|
+
**Table 108**: CharacterStyleRange Elements
|
|
446
|
+
|
|
447
|
+
| Name | Type | Req | Description |
|
|
448
|
+
| --------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------- |
|
|
449
|
+
| Content | string | yes | The content of the <CharacterStyleRange> . Can be a string of text, or a reference to an inline element. |
|
|
450
|
+
|
|
451
|
+
In the following example, the story contains three characters, 'A,' 'B', and 'C.' The middle character has slightly different formatting than the surrounding characters (it's been formatted using the FontStyle 'Italic'), and so occupies a different CharacterStyleRange. The story has only one <ParagraphStyleRange>, and three <CharacterStyleRange> elements.
|
|
452
|
+
|
|
453
|
+
**IDML Example 47. ParagraphStyleRange and CharacterStyleRange**
|
|
454
|
+
|
|
455
|
+
```xml
|
|
456
|
+
<Story Self="ucb" AppliedTOCStyle="n" TrackChanges="false" StoryTitle="$ID/" AppliedNamedGrid="n"> <StoryPreference Self="ucb StoryPreference1" OpticalMarginAlignment="false" OpticalMarginSize="12" FrameType="TextFrame Type" StoryOrientation="Horizontal" StoryDirection="Left To Right Direction"/> <ParagraphStyleRange AppliedParagraphStyle= "Paragraph Style\k Normal Paragraph Style"> <CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\k[No CharacterStyle]"> <Content>A</Content> </CharacterStyleRange> <CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\k[No CharacterStyle]" FontStyle="Italic"> <Content>B</Content> </CharacterStyleRange> <CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\k[No CharacterStyle]"> <Content>C</Content> </CharacterStyleRange> </ParagraphStyleRange> </Story>
|
|
457
|
+
```
|
|
458
|
+
|
|
459
|
+
Figure 31. Minimal Story with Multiple Character Formats
|
|
460
|
+
|
|
461
|
+

|
|
462
|
+
|
|
463
|
+
Multiple paragraphs can appear in a single <ParagraphStyleRange> . The following example shows how the text in the single <CharacterStyleRange> in a <ParagraphStyleRange> is broken into separate <Content> elements using the <br/> element. An empty <br/> element represents a return character; optional attributes attached to the element can specify other break characters. We've omitted the minimal <Story> element in this example.
|
|
464
|
+
|
|
465
|
+
**IDML Example 48. ParagrapBreaksn a CharacterStyleRange**
|
|
466
|
+
|
|
467
|
+
```xml
|
|
468
|
+
<ParagraphStyleRange AppliedParagraphStyle="ParagraphStyle\NormalParagraphStyle"> <CharacterStyleRange AppliedCharacterStyle="CharacterStyle\[No CharacterStyle]"> <Content>ABC</Content> <br/> <Content>DEF</Content> <br/> <Content>GHI</Content> </CharacterStyleRange> </ParagraphStyleRange>
|
|
469
|
+
```
|
|
470
|
+
|
|
471
|
+
**Figure 32**: Breaking <Content> elements with <br/>
|
|
472
|
+
|
|
473
|
+

|
|
474
|
+
|
|
475
|
+
The following example demonstrates the use of special 'break' characters in a <CharacterRange> element. We've inserted a column break after the third example paragraph ('GHI'), which forces the fourth paragraph ('JKL') to the next column or TextFrame. The break character is applied as an attribute of the <CharacterStyleRange> element. The <Content> element of that <CharacterStyleRange> element contains only a <br/> element.
|
|
476
|
+
|
|
477
|
+
The meaning of the <br/> element is defined by the Go To Next X attribute of the <CharacterStyleRange> element. This attribute can be Anywhere (the default, which can be omitted), Next Column, Next Frame, Next Page, Next Odd Page, or Next Even Page .
|
|
478
|
+
|
|
479
|
+
**IDML Example 49. ParagraphStyleRange Elements and Column Breaks**
|
|
480
|
+
|
|
481
|
+
```xml
|
|
482
|
+
<ParagraphStyleRange AppliedParagraphStyle="Paragraph Style\Normal Paragraph Style"> <CharacterStyleRange AppliedCharacterStyle="CharacterStyle\[No CharacterStyle]"> <Content>ABC</Content> <br/> <Content>DEF</Content> <br/> <Content>GHI</Content> </CharacterStyleRange> <CharacterStyleRange AppliedCharacterStyle="CharacterStyle\[No CharacterStyle]" GotoNextX="Next Column"> <br/> </CharacterStyleRange> <CharacterStyleRange AppliedCharacterStyle="CharacterStyle\[No CharacterStyle]"> <Content>JKL</Content> </CharacterStyleRange> </ParagraphStyleRange>
|
|
483
|
+
```
|
|
484
|
+
|
|
485
|
+
Figure 33. Column Break
|
|
486
|
+
|
|
487
|
+

|
|
488
|
+
|
|
489
|
+
Note: In general, it is better to use paragraph style properties (the Start Paragraph attribute of the <ParagraphStyle> element) to force paragraphs to new columns or pages instead of using break characters.
|
|
490
|
+
|
|
491
|
+
The following example shows an example of multiple <ParagraphStyleRange> elements. In this example, the second paragraph ('DEF') has different formatting from the first ('ABC') and third ('GHI') paragraphs-it has a paragraph style named 'Heading' applied to it.
|
|
492
|
+
|
|
493
|
+
**IDML Example 50. Multiple Paragraph Style Range Elements**
|
|
494
|
+
|
|
495
|
+
```xml
|
|
496
|
+
<ParagraphStyleRange AppliedParagraphStyle="Paragraph Style\Normal Paragraph Style"> <CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\[No CharacterStyle]"> <Content>ABC</Content> <br/> </CharacterStyleRange> </Paragraph Style Range> <ParagraphStyleRange AppliedParagraphStyle="Paragraph Style\Heading"> <CharacterStyleRange AppliedCharacterStyle="CharacterStyle\[No CharacterStyle]"> <Content>DEF</Content> <br/> </CharacterStyleRange> </Paragraph Style Range> <ParagraphStyleRange AppliedParagraphStyle="Paragraph Style\Normal Paragraph Style"> <CharacterStyleRange AppliedCharacterStyle="CharacterStyle\[No CharacterStyle]"> <Content>GHI</Content> </CharacterStyleRange> </Paragraph Style Range>
|
|
497
|
+
```
|
|
498
|
+
|
|
499
|
+
Figure 34. Minimal Story with Multiple <ParagraphStyleRange> Elements
|
|
500
|
+
|
|
501
|
+

|
|
502
|
+
|
|
503
|
+
**IDML Example 51. Multi-Column ('Straddle') Paragraphs**
|
|
504
|
+
|
|
505
|
+
```xml
|
|
506
|
+
<ParagraphStyleRange AppliedParagraphStyle="ParagraphStyle/$ID/
|
|
507
|
+
NormalParagraphStyle" SpaceAfter="12" SpanColumnType="SpanColumns">
|
|
508
|
+
<Properties>
|
|
509
|
+
<SpanSplitColumnCount type="short">2</SpanSplitColumnCount>
|
|
510
|
+
</Properties>
|
|
511
|
+
<CharacterStyleRange AppliedCharacterStyle="CharacterStyle/$ID/[No character
|
|
512
|
+
style]" FontStyle="Bold Condensed" PointSize="20">
|
|
513
|
+
<Properties>
|
|
514
|
+
<Leading type="unit">24</Leading>
|
|
515
|
+
<AppliedFont type="string">Myriad Pro</AppliedFont>
|
|
516
|
+
</Properties>
|
|
517
|
+
<Content>Multi-Column Headline</Content>
|
|
518
|
+
<Br/>
|
|
519
|
+
</CharacterStyleRange>
|
|
520
|
+
</ParagraphStyleRange>
|
|
521
|
+
<ParagraphStyleRange AppliedParagraphStyle="ParagraphStyle/$ID/
|
|
522
|
+
NormalParagraphStyle">
|
|
523
|
+
<CharacterStyleRange AppliedCharacterStyle="CharacterStyle/$ID/[No character
|
|
524
|
+
style]">
|
|
525
|
+
<Properties>
|
|
526
|
+
<Leading type="unit">12</Leading>
|
|
527
|
+
</Properties>
|
|
528
|
+
<Content>Ris curenat, quament. Besuam inatus nimum imorterra tam inum sid
|
|
529
|
+
senimum med C. Scivis a re, noverraverce iae elinterei ca pre hil consupicae dica;
|
|
530
|
+
noc, seniamdit. As cres ac ta invo, Palis rei si propost quit publicauro visses
|
|
531
|
+
cur us, senaritimmor quam deesilis addum se nulem hiculi prae, caelicae ta, nos
|
|
532
|
+
consum nem auconvo, molis hos co poensuludem et di poeris satquam mo</Content>
|
|
533
|
+
</CharacterStyleRange>
|
|
534
|
+
</ParagraphStyleRange>
|
|
535
|
+
```
|
|
536
|
+
|
|
537
|
+
**IDML Example 52. XML Element**
|
|
538
|
+
|
|
539
|
+
```xml
|
|
540
|
+
<Story Self="ud8">
|
|
541
|
+
<XMLElement Self="di2i3" MarkupTag="
|
|
542
|
+
XMLTag\cStory"
|
|
543
|
+
XMLContent="ud8">
|
|
544
|
+
<ParagraphStyleRange
|
|
545
|
+
AppliedParagraphStyle="
|
|
546
|
+
ParagraphStyle\
|
|
547
|
+
cheading 1">
|
|
548
|
+
<CharacterStyleRange
|
|
549
|
+
AppliedCharacterStyle=
|
|
550
|
+
"CharacterStyle\
|
|
551
|
+
k[No character style]"/>
|
|
552
|
+
</ParagraphStyleRange>
|
|
553
|
+
<XMLElement Self="di2i3i6" MarkupTag="
|
|
554
|
+
XMLTag\cheading_1">
|
|
555
|
+
<ParagraphStyleRange
|
|
556
|
+
AppliedParagraphStyle="
|
|
557
|
+
ParagraphStyle\
|
|
558
|
+
cheading 1">
|
|
559
|
+
<CharacterStyleRange
|
|
560
|
+
AppliedCharacterStyle=
|
|
561
|
+
"CharacterStyle\
|
|
562
|
+
k[No character style]">
|
|
563
|
+
<Content>Heading 1</Content>
|
|
564
|
+
<br/>
|
|
565
|
+
</CharacterStyleRange>
|
|
566
|
+
</ParagraphStyleRange>
|
|
567
|
+
</XMLElement>
|
|
568
|
+
<ParagraphStyleRange
|
|
569
|
+
AppliedParagraphStyle="
|
|
570
|
+
ParagraphStyle\
|
|
571
|
+
cpara 1">
|
|
572
|
+
<CharacterStyleRange
|
|
573
|
+
AppliedCharacterStyle=
|
|
574
|
+
"CharacterStyle\
|
|
575
|
+
k[No character style]"/>
|
|
576
|
+
</ParagraphStyleRange>
|
|
577
|
+
<XMLElement Self="di2i3i5" MarkupTag="
|
|
578
|
+
XMLTag\cpara_1">
|
|
579
|
+
<ParagraphStyleRange
|
|
580
|
+
AppliedParagraphStyle="
|
|
581
|
+
ParagraphStyle\
|
|
582
|
+
cpara 1">
|
|
583
|
+
<CharacterStyleRange
|
|
584
|
+
AppliedCharacterStyle=
|
|
585
|
+
"CharacterStyle\
|
|
586
|
+
k[No character style]">
|
|
587
|
+
<Content>This is the first paragraph in the article.</Content>
|
|
588
|
+
<br/>
|
|
589
|
+
</CharacterStyleRange>
|
|
590
|
+
</ParagraphStyleRange>
|
|
591
|
+
</XMLElement>
|
|
592
|
+
<ParagraphStyleRange
|
|
593
|
+
AppliedParagraphStyle="
|
|
594
|
+
ParagraphStyle\
|
|
595
|
+
cbody text">
|
|
596
|
+
<CharacterStyleRange
|
|
597
|
+
AppliedCharacterStyle=
|
|
598
|
+
"CharacterStyle\
|
|
599
|
+
k[No character style]"/>
|
|
600
|
+
</ParagraphStyleRange>
|
|
601
|
+
<XMLElement Self="di2i3i4" MarkupTag="
|
|
602
|
+
XMLTag\cbody_text">
|
|
603
|
+
<ParagraphStyleRange
|
|
604
|
+
AppliedParagraphStyle="
|
|
605
|
+
ParagraphStyle\
|
|
606
|
+
cbody text">
|
|
607
|
+
<CharacterStyleRange
|
|
608
|
+
AppliedCharacterStyle=
|
|
609
|
+
"CharacterStyle\
|
|
610
|
+
k[No character style]">
|
|
611
|
+
<Content>This is the second paragraph in the article.</Content>
|
|
612
|
+
<br/>
|
|
613
|
+
</CharacterStyleRange>
|
|
614
|
+
</ParagraphStyleRange>
|
|
615
|
+
</XMLElement>
|
|
616
|
+
<ParagraphStyleRange
|
|
617
|
+
AppliedParagraphStyle="
|
|
618
|
+
ParagraphStyle\
|
|
619
|
+
cheading 2">
|
|
620
|
+
<CharacterStyleRange
|
|
621
|
+
AppliedCharacterStyle=
|
|
622
|
+
"CharacterStyle\
|
|
623
|
+
k[No character style]"/>
|
|
624
|
+
</ParagraphStyleRange>
|
|
625
|
+
<XMLElement Self="di2i3i3" MarkupTag="
|
|
626
|
+
XMLTag\cheading_2">
|
|
627
|
+
<ParagraphStyleRange
|
|
628
|
+
AppliedParagraphStyle="
|
|
629
|
+
ParagraphStyle\
|
|
630
|
+
cheading 2">
|
|
631
|
+
<CharacterStyleRange
|
|
632
|
+
AppliedCharacterStyle=
|
|
633
|
+
"CharacterStyle\
|
|
634
|
+
k[No character style]">
|
|
635
|
+
<Content>Heading 2</Content>
|
|
636
|
+
<br/>
|
|
637
|
+
</CharacterStyleRange>
|
|
638
|
+
</ParagraphStyleRange>
|
|
639
|
+
</XMLElement>
|
|
640
|
+
<ParagraphStyleRange
|
|
641
|
+
AppliedParagraphStyle="
|
|
642
|
+
ParagraphStyle\
|
|
643
|
+
cpara 1">
|
|
644
|
+
<CharacterStyleRange
|
|
645
|
+
AppliedCharacterStyle=
|
|
646
|
+
"CharacterStyle\
|
|
647
|
+
k[No character style]"/>
|
|
648
|
+
</ParagraphStyleRange>
|
|
649
|
+
<XMLElement Self="di2i3i2" MarkupTag="
|
|
650
|
+
XMLTag\cpara_1">
|
|
651
|
+
<ParagraphStyleRange
|
|
652
|
+
AppliedParagraphStyle="
|
|
653
|
+
ParagraphStyle\
|
|
654
|
+
cpara 1">
|
|
655
|
+
<CharacterStyleRange
|
|
656
|
+
AppliedCharacterStyle=
|
|
657
|
+
"CharacterStyle\
|
|
658
|
+
k[No character style]">
|
|
659
|
+
<Content>This is the first paragraph following the subhead.</Content>
|
|
660
|
+
<br/>
|
|
661
|
+
</CharacterStyleRange>
|
|
662
|
+
</ParagraphStyleRange>
|
|
663
|
+
</XMLElement>
|
|
664
|
+
<ParagraphStyleRange
|
|
665
|
+
AppliedParagraphStyle="
|
|
666
|
+
ParagraphStyle\
|
|
667
|
+
cbody text">
|
|
668
|
+
<CharacterStyleRange
|
|
669
|
+
AppliedCharacterStyle=
|
|
670
|
+
"CharacterStyle\
|
|
671
|
+
k[No character style]">
|
|
672
|
+
<XMLElement Self="di2i3i1" MarkupTag="
|
|
673
|
+
XMLTag\cbody_text">
|
|
674
|
+
<Content>This is the second paragraph following the subhead.</Content>
|
|
675
|
+
<br/>
|
|
676
|
+
</XMLElement>
|
|
677
|
+
</CharacterStyleRange>
|
|
678
|
+
</ParagraphStyleRange>
|
|
679
|
+
</XMLElement>
|
|
680
|
+
</Story
|
|
681
|
+
```
|
|
682
|
+
|
|
683
|
+
Figure 35. Multi-Column Paragraph
|
|
684
|
+
|
|
685
|
+
#### Multi-Column Headline
|
|
686
|
+
|
|
687
|
+
Ris curenat, quament. Besuam inatus nimum-imorterra tam inum sid senimum med C. Scivis a re, noverraverce
|
|
688
|
+
|
|
689
|
+
### 10.4.9 XML Elements in Text
|
|
690
|
+
|
|
691
|
+
All XML text elements that have been placed in an In Design layout appear as text ranges in the <Story> element they are associated with. Only unplaced XML elements (i.e., XML elements that have not been associated with a page item or story) appear in the Backing Story.xml file in the XML folder in the IDML package.
|
|
692
|
+
|
|
693
|
+
The text in <XMLElement> elements is contained by <ParagraphStyleRange> elements and <CharacterStyleRange> elements inside the <XMLElement> elements. For more on the <XMLElement> element, refer to the'XML.'
|
|
694
|
+
|
|
695
|
+
**XML Element**
|
|
696
|
+
|
|
697
|
+
```xml
|
|
698
|
+
<Story Self="ud8"> <XMLElement Self="di2i3" MarkupTag="XMLTag\c Story" XMLContent="ud8"> <ParagraphStyleRange AppliedParagraphStyle="Paragraph Style\cheading 1">
|
|
699
|
+
iae elinterei ca. pre hil consupicae dica; noc, seniamdit.As cres ac ta invo, Palis rei si propost quit publicauro visses cur us, senaritimmor quam deesilis addum se nulem hiculi prae, caelicae ta, nos consum nem-auconvo, molis hos co. poensuludem et di poeris satquam mo#
|
|
700
|
+
<CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\k[No CharacterStyle]"/> </Paragraph Style Range> <XMLElement Self="di2i3i6" MarkupTag="XMLTag\cheading_1"> <ParagraphStyleRange AppliedParagraphStyle="Paragraph Style\cheading 1"> <CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\k[No CharacterStyle]"> <Content>Heading 1</Content> <br/> </CharacterStyleRange> </Paragraph Style Range> </XMLElement> <ParagraphStyleRange AppliedParagraphStyle="Paragraph Style\cpara 1"> <CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\k[No CharacterStyle]"/> </Paragraph Style Range> <XMLElement Self="di2i3i5" MarkupTag="XMLTag\cpara_1"> <ParagraphStyleRange AppliedParagraphStyle="Paragraph Style\cpara 1"> <CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\k[No CharacterStyle]"> <Content>This is the first paragraph in the article.</Content> <br/> </CharacterStyleRange> </Paragraph Style Range> </XMLElement> <ParagraphStyleRange AppliedParagraphStyle="Paragraph Style\cbody text"> <CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\k[No CharacterStyle]"/> </Paragraph Style Range> <XMLElement Self="di2i3i4" MarkupTag="XMLTag\cbody_text"> <ParagraphStyleRange AppliedParagraphStyle="Paragraph Style\cbody text"> <CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\k[No CharacterStyle]"> <Content>This is the second paragraph in the article.</Content> <br/> </CharacterStyleRange> </Paragraph Style Range> </XMLElement> <ParagraphStyleRange AppliedParagraphStyle="Paragraph Style\cheading 2"> <CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\k[No CharacterStyle]"/> </Paragraph Style Range> <XMLElement Self="di2i3i3" MarkupTag="XMLTag\cheading_2"> <ParagraphStyleRange AppliedParagraphStyle="Paragraph Style\cheading 2"> <CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\k[No CharacterStyle]"> <Content>Heading 2</Content> <br/> </CharacterStyleRange> </Paragraph Style Range> </XMLElement> <ParagraphStyleRange AppliedParagraphStyle="Paragraph Style\cpara 1"> <CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\k[No CharacterStyle]"/></Paragraph Style Range> <XMLElement Self="di2i3i2" MarkupTag="XMLTag\cpara_1"> <ParagraphStyleRange AppliedParagraphStyle="Paragraph Style\cpara 1"> <CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\k[No CharacterStyle]"> <Content>This is the first paragraph following the subhead.</Content> <br/> </CharacterStyleRange> </Paragraph Style Range> </XMLElement> <ParagraphStyleRange AppliedParagraphStyle="Paragraph Style\cbody text"> <CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\k[No CharacterStyle]"> <XMLElement Self="di2i3i1" MarkupTag="XMLTag\cbody_text"> <Content>This is the second paragraph following the subhead.</Content> <br/> </XMLElement> </CharacterStyleRange> </ParagraphStyleRange> </XMLElement> </Story
|
|
701
|
+
```
|
|
702
|
+
|
|
703
|
+
**Figure 36**: XML Elements in Text
|
|
704
|
+
|
|
705
|
+

|
|
706
|
+
|
|
707
|
+
### 10.4.10 Rules for Breaking Text Range Elements
|
|
708
|
+
|
|
709
|
+
In a complex In Design layout, situations can arise in which the logical boundaries for creating text range elements overlap. What happens when an <XMLElement> element overlaps a <CharacterStyleRange> element? Or when a <CharacterStyleRange> element apppears in the middle of a <HyperlinkTextSource> element?
|
|
710
|
+
|
|
711
|
+
In Design relies on a hierarchy of rules for deciding where to break text style ranges as it exports IDML. The following list shows the order in which In Design will break text style range elements, from strongest (never break) to weakest.
|
|
712
|
+
|
|
713
|
+
```xml
|
|
714
|
+
1. <XML>
|
|
715
|
+
2. <Hyperlink>
|
|
716
|
+
3. <ChangedText>
|
|
717
|
+
4. <ParagraphStyleRange>
|
|
718
|
+
5. <CharacterStyleRange>
|
|
719
|
+
6. <Content>
|
|
720
|
+
```
|
|
721
|
+
|
|
722
|
+
## 6.4.1 Inline Elements
|
|
723
|
+
|
|
724
|
+
In Design stories can contain page items, such as rectangles containing imported graphics or TextFrames containing text. Tables, footnotes and form fields are other examples of inline objects. These inline (or anchored) element are represented as text child elements of a <CharacterStyleRange> element, and appear as siblings of the <Content> element. The following sections discuss the different types of inline elements that can appear as text child elements of a <CharacterStyleRange> element.
|
|
725
|
+
|
|
726
|
+
#### Tables
|
|
727
|
+
|
|
728
|
+
In Design tables contain rows, columns, and cells, and each cell can contain text, imported graphics, or another table. In IDML, the <Table> element contains <Row>, <Column>, and <Cell> elements, which can, in turn, contain other elements. For more on In Design tables, refer to the online help.
|
|
729
|
+
|
|
730
|
+
**Schema Example 81. Table**
|
|
731
|
+
|
|
732
|
+
```
|
|
733
|
+
Table_Object = element Table { attribute Self { xsd:string }, attribute HeaderRowCount { xsd:int {minInclusive="0" maxInclusive="25"} }?, attribute FooterRowCount { xsd:int {minInclusive="0" maxInclusive="25"} }?, attribute TopBorderStrokeWeight { xsd:double }?, attribute TopBorderStrokeType { xsd:string }?, attribute TopBorderStrokeColor { xsd:string }?, attribute TopBorderStrokeTint { xsd:double }?, attribute TopBorderStrokeOverprint { xsd:boolean }?, attribute TopBorderStrokeGapColor { xsd:string }?, attribute TopBorderStrokeGapTint { xsd:double }?, attribute TopBorderStrokeGapOverprint { xsd:boolean }?, attribute LeftBorderStrokeWeight { xsd:double }?, attribute LeftBorderStrokeType { xsd:string }?, attribute LeftBorderStrokeColor { xsd:string }?, attribute LeftBorderStrokeTint { xsd:double }?, attribute LeftBorderStrokeOverprint { xsd:boolean }?, attribute LeftBorderStrokeGapColor { xsd:string }?, attribute LeftBorderStrokeGapTint { xsd:double }?, attribute LeftBorderStrokeGapOverprint { xsd:boolean }?, attribute BottomBorderStrokeWeight { xsd:double }?, attribute BottomBorderStrokeType { xsd:string }?, attribute BottomBorderStrokeColor { xsd:string }?, attribute BottomBorderStrokeTint { xsd:double }?, attribute BottomBorderStrokeOverprint { xsd:boolean }?, attribute BottomBorderStrokeGapColor { xsd:string }?, attribute BottomBorderStrokeGapTint { xsd:double }?, attribute BottomBorderStrokeGapOverprint { xsd:boolean }?, attribute RightBorderStrokeWeight { xsd:double }?, attribute RightBorderStrokeType { xsd:string }?, attribute RightBorderStrokeColor { xsd:string }?, attribute RightBorderStrokeTint { xsd:double }?, attribute RightBorderStrokeOverprint { xsd:boolean }?, attribute RightBorderStrokeGapColor { xsd:string }?, attribute RightBorderStrokeGapTint { xsd:double }?, attribute RightBorderStrokeGapOverprint { xsd:boolean }?, attribute SpaceBefore { xsd:double }?, attribute SpaceAfter { xsd:double }?, attribute SkipFirstAlternatingStrokeRows { xsd:int }?, attribute SkipLastAlternatingStrokeRows { xsd:int }?, attribute StartRowStrokeCount { xsd:int }?, attribute StartRowStrokeColor { xsd:string }?, attribute StartRowStrokeWeight { xsd:double }?, attribute StartRowStrokeType { xsd:string }?, attribute StartRowStrokeTint { xsd:double }?, attribute StartRowStrokeGapOverprint { xsd:boolean }?, attribute StartRowStrokeGapColor { xsd:string }?, attribute StartRowStrokeGapTint { xsd:double }?, attribute StartRowStrokeOverprint { xsd:boolean }?, attribute EndRowStrokeCount { xsd:int }?, attribute EndRowStrokeColor { xsd:string }?, attribute EndRowStrokeWeight { xsd:double }?, attribute EndRowStrokeType { xsd:string }?, attribute EndRowStrokeTint { xsd:double }?, attribute EndRowStrokeOverprint { xsd:boolean }?, attribute EndRowStrokeGapColor { xsd:string }?, attribute EndRowStrokeGapTint { xsd:double }?, attribute EndRowStrokeGapOverprint { xsd:boolean }?, attribute SkipFirstAlternatingStrokeColumns { xsd:int }?, attribute SkipLastAlternatingStrokeColumns { xsd:int }?, attribute StartColumnStrokeCount { xsd:int }?, attribute StartColumnStrokeColor { xsd:string }?, attribute StartColumnStrokeWeight { xsd:double }?, attribute StartColumnStrokeType { xsd:string }?, attribute StartColumnStrokeTint { xsd:double }?, attribute StartColumnStrokeOverprint { xsd:boolean }?, attribute StartColumnStrokeGapColor { xsd:string }?, attribute StartColumnStrokeGapTint { xsd:double }?, attribute StartColumnStrokeGapOverprint { xsd:boolean }?, attribute EndColumnStrokeCount { xsd:int }?, attribute EndColumnStrokeColor { xsd:string }?, attribute EndColumnStrokeWeight { xsd:double }?, attribute EndColumnLineStyle { xsd:string }?, attribute EndColumnStrokeTint { xsd:double }?, attribute EndColumnStrokeOverprint { xsd:boolean }?, attribute EndColumnStrokeGapColor { xsd:string }?, attribute EndColumnStrokeGapTint { xsd:double }?, attribute EndColumnStrokeGapOverprint { xsd:boolean }?, attribute ColumnFillsPriority { xsd:boolean }?, attribute SkipFirstAlternatingFillRows { xsd:int }?, attribute SkipLastAlternatingFillRows { xsd:int }?, attribute StartRowFillColor { xsd:string }?, attribute StartRowFillCount { xsd:int }?, attribute StartRowFillTint { xsd:double }?, attribute StartRowFillOverprint { xsd:boolean }?, attribute EndRowFillCount { xsd:int }?, attribute EndRowFillColor { xsd:string }?, attribute EndRowFillTint { xsd:double }?, attribute EndRowFillOverprint { xsd:boolean }?, attribute SkipFirstAlternatingFillColumns { xsd:int }?, attribute SkipLastAlternatingFillColumns { xsd:int }?, attribute StartColumnFillCount { xsd:int }?, attribute StartColumnFillColor { xsd:string }?, attribute StartColumnFillTint { xsd:double }?, attribute StartColumnFillOverprint { xsd:boolean }?, attribute EndColumnFillCount { xsd:int }?, attribute EndColumnFillColor { xsd:string }?, attribute EndColumnFillTint { xsd:double }?, attribute EndColumnFillOverprint { xsd:boolean }?, attribute BreakHeaders { HeaderFooterBreakTypes_EnumValue }?, attribute BreakFooters { HeaderFooterBreakTypes_EnumValue }?, attribute SkipFirstHeader { xsd:boolean }?, attribute SkipLastFooter { xsd:boolean }?, attribute StrokeOrder { StrokeOrderTypes_EnumValue }?, attribute TopInset { xsd:double }?, attribute LeftInset { xsd:double }?, attribute BottomInset { xsd:double }?, attribute RightInset { xsd:double }?, attribute FillColor { xsd:string }?, attribute FillTint { xsd:double }?, attribute OverprintFill { xsd:boolean }?, attribute TopLeftDiagonalLine { xsd:boolean }?, attribute TopRightDiagonalLine { xsd:boolean }?, attribute DiagonalLineInFront { xsd:boolean }?, attribute DiagonalLineStrokeWeight { xsd:double }?, attribute DiagonalLineStrokeType { xsd:string }?, attribute DiagonalLineStrokeColor { xsd:string }?, attribute DiagonalLineStrokeTint { xsd:double }?, attribute DiagonalLineStrokeOverprint { xsd:boolean }?, attribute DiagonalLineStrokeGapColor { xsd:string }?, attribute DiagonalLineStrokeGapTint { xsd:double }?, attribute DiagonalLineStrokeGapOverprint { xsd:boolean }?, attribute ClipContentToCell { xsd:boolean }?, attribute FirstBaselineOffset { FirstBaseline_EnumValue }?, attribute VerticalJustification { VerticalJustification_EnumValue }?, attribute ParagraphSpacingLimit { xsd:double }?, attribute MinimumFirstBaselineOffset { xsd:double {minInclusive="0" maxInclusive="8640"} }?, attribute RotationAngle { xsd:double }?, attribute WritingDirection { xsd:boolean }?, attribute MinimumHeight { xsd:double }?, attribute MaximumHeight { xsd:double }?, attribute KeepWithNextRow { xsd:boolean }?, attribute StartRow { StartParagraph_EnumValue }?, attribute AutoGrow { xsd:boolean }?, attribute DefaultRowStrokeWeight { xsd:double }?, attribute DefaultRowStrokeType { xsd:string }?, attribute DefaultRowStrokeColor { xsd:string }?, attribute DefaultRowStrokeTint { xsd:double }?, attribute DefaultRowStrokeOverprint { xsd:boolean }?, attribute DefaultRowStrokeGapColor { xsd:string }?, attribute DefaultRowStrokeGapTint { xsd:double }?, attribute DefaultRowStrokeGapOverprint { xsd:boolean }?, attribute DefaultColumnStrokeWeight { xsd:double }?, attribute DefaultColumnStrokeType { xsd:string }?, attribute DefaultColumnStrokeColor { xsd:string }?, attribute DefaultColumnStrokeTint { xsd:double }?, attribute DefaultColumnStrokeOverprint { xsd:boolean }?, attribute DefaultColumnStrokeGapColor { xsd:string }?, attribute DefaultColumnStrokeGapTint { xsd:double }?, attribute DefaultColumnStrokeGapOverprint { xsd:boolean }?, attribute BodyRowCount { xsd:int {minInclusive="1" maxInclusive="10000"} }?, attribute ColumnCount { xsd:int {minInclusive="1" maxInclusive="200"} }?, attribute SingleRowHeight { xsd:double }?, attribute SingleColumnWidth { xsd:double }?, attribute AppliedTableStyle { xsd:string }?, attribute TableDirection { TableDirectionOptions_EnumValue }?, attribute DisplayCollapsed { xsd:boolean }?, attribute DisplayOrder { DisplayOrderOptions_EnumValue }?, element Properties { element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ?, ( Cell_Object*& Row_Object*& Column_Object* ) }
|
|
734
|
+
```
|
|
735
|
+
|
|
736
|
+
**Table 109**: Table Properties Represented as Attributes
|
|
737
|
+
|
|
738
|
+
| Name | Type | Req | Description |
|
|
739
|
+
| ------------------------------------ | --------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
740
|
+
| AppliedTableStyle | string | no | The table style applied to the table. |
|
|
741
|
+
| AutoGrow | boolean | no | If true, increase the height of a cell to fit the con- tent of the cell. |
|
|
742
|
+
| BodyRowCount | int | no | The number of body rows. |
|
|
743
|
+
| BottomBorderStrokeColor | string | no | The color, specified as a swatch (color, gradient, tint, or mixed ink), of the bottom border stroke. |
|
|
744
|
+
| BottomBorderStrokeGapColor | string | no | The gap color, specified as a swatch (color, gradi- ent, tint, or mixed ink), of the bottom border stroke. Note: Valid only when bottom border stroke type is not solid. |
|
|
745
|
+
| BottomBorderStrokeGapOverprint | boolean | no | If true, the gap of the bottom border stroke will overprint. Note: Valid only when bottom border stroke type is not solid. |
|
|
746
|
+
| BottomBorderStrokeGapTint | double | no | The tint (as a percentage) of the gap color of the bottom border stroke. (Range: 0 to 100) Note: Valid only when bottom border stroke type is not solid. |
|
|
747
|
+
| BottomBorderStrokeOverprint | boolean | no | If true, the bottom border stroke will overprint. |
|
|
748
|
+
| BottomBorderStrokeTint | double | no | The tint (as a percentage) of the bottom border stroke. (Range: 0 to 100) |
|
|
749
|
+
| BottomBorderStrokeType | string | no | The stroke type of the bottom border. |
|
|
750
|
+
| BottomBorderStrokeWeight | double | no | The stroke weight of the bottom border stroke. |
|
|
751
|
+
| BreakFooters | HeaderFooter BreakTypes_Enum Value | no | The footer placement. Can be InAllText Columns (Places headers or footers in each text column), OncePerTextFrame (Repeats headers or footers in each TextFrame), or OncePerPage (Places one instance of headers or footers per page). |
|
|
752
|
+
| BreakHeaders | HeaderFooter BreakTypes_Enum Value | no | The header placement. Can be InAllText Columns (Places headers or footers in each text column), OncePerTextFrame (Repeats headers or footers in each TextFrame), or OncePerPage (Places one instance of headers or footers per page). |
|
|
753
|
+
| ColumnCount | int | no | The number of columns. |
|
|
754
|
+
| ColumnFills Priority | boolean | no | If true, hides alternating row fills. If false, hides alternating column fills. |
|
|
755
|
+
| DefaultColumn StrokeColor | string | no | The default stroke color for cells in new col- umns. |
|
|
756
|
+
| DefaultColumn StrokeGapColor | string | no | The default stroke gap color for cells in new col- umns. |
|
|
757
|
+
| DefaultColumn StrokeGap Overprint | boolean | no | The default stroke gap overprint setting for cells in new columns. |
|
|
758
|
+
| DefaultColumn StrokeGapTint | double | no | The default stroke gap tint for cells in new col- umns. |
|
|
759
|
+
| DefaultColumn StrokeOverprint | boolean | no | The default stroke overprint setting for cells in new columns. |
|
|
760
|
+
| DefaultColumn StrokeTint | double | no | The default stroke tint for cells in new columns. |
|
|
761
|
+
| DefaultColumn StrokeType | string | no | The default stroke type for cells in new columns. |
|
|
762
|
+
| DefaultColumn StrokeWeight | double | no | The default stroke weight for cells in new col- umns. |
|
|
763
|
+
| DefaultRowStroke Color | string | no | The default stroke color for cells in new rows. |
|
|
764
|
+
| DefaultRowStroke GapColor | string | no | The default stroke gap color for cells in new rows. |
|
|
765
|
+
| DefaultRowStroke GapOverprint | boolean | no | The default stroke gap overprint setting for cells in new rows. |
|
|
766
|
+
| DefaultRowStroke GapTint | double | no | The default stroke gap tint for cells in new rows. |
|
|
767
|
+
| DefaultRowStroke Overprint | boolean | no | The default stroke overprint setting for cells in new rows. |
|
|
768
|
+
| DefaultRowStroke Tint | double | no | The default stroke tint for cells in new rows. |
|
|
769
|
+
| DefaultRowStroke Type | string | no | The default stroke type for cells in new rows. |
|
|
770
|
+
| DefaultRowStroke Weight | double | no | The default stroke weight for cells in new col- umns. |
|
|
771
|
+
| DisplayCollapsed | boolean | no | If true, then the table will show collapsed in story and galley views. |
|
|
772
|
+
| DisplayOrder | DisplayOrder Options_EnumValue | no | Specifies the order the table cells will display in when viewing in story and galley views. Can be OrderByRows (Order by rows), or OrderBy Columns (Order by columns). |
|
|
773
|
+
| EndColumnFill Color | string | no | The FillColor, specified as a swatch (color, gra- dient, tint, or mixed ink), of columns in the second alternating fill group. Note: Valid when alternating fills are defined for table columns. |
|
|
774
|
+
| EndColumnFill Count | int | no | The number of columns in the second alternat- ing fills group. Note: Valid when alternating fills are defined for table columns. |
|
|
775
|
+
| EndColumnFill Overprint | boolean | no | If true, the columns in the second alternating fills group will overprint. Note: Valid when alternating fills are defined for table columns. |
|
|
776
|
+
| EndColumnFillTint | double | no | The tint (as a percentage) of the columns in the second alternating fills group. (Range: 0 to 100) Note: Valid when alternating fills are defined for table columns. |
|
|
777
|
+
| EndColumnLine Style | string | no | The stroke type of columns in the second alter- nating strokes group. |
|
|
778
|
+
| EndColumnStroke Color | string | no | The stroke color, specified as a swatch (color, gradient, tint, or mixed ink), of column borders in the second alternating column strokes group. Note: Valid when end column stroke count is 1 or greater. |
|
|
779
|
+
| EndColumnStroke Count | int | no | The number of columns in the second alternat- ing column strokes group. |
|
|
780
|
+
| EndColumnStroke GapColor | string | no | The stroke gap color, specified as a swatch (color, gradient, tint, or mixed ink), of column borders in the second alternating column strokes group. Note: Valid when end column stroke count is 1 or greater. |
|
|
781
|
+
| EndColumnStroke GapOverprint | boolean | no | If true, the gap of the column border stroke in the second alternating column strokes group will overprint. Note: Valid when end column stroke count is 1 or greater. |
|
|
782
|
+
| EndColumnStroke GapTint | double | no | The tint (as a percentage) of the gap color of col- umn borders in the second alternating column strokes group. (Range: 0 to 100) Note: Valid when end column stroke count is 1 or greater. |
|
|
783
|
+
| EndColumnStroke Overprint | boolean | no | If true, the column borders in the second alter- nating column strokes group will overprint. Note: Valid when end column stroke count is 1 or greater. |
|
|
784
|
+
| EndColumnStroke Tint | double | no | The tint (as a percentage) of column borders in the second alternating column strokes group. (Range: 0 to 100) Note: Valid when end column stroke count is 1 or greater. |
|
|
785
|
+
| EndColumnStroke Weight | double | no | The stroke weight of column borders in the second alternating column strokes group. Note: Valid when end column stroke count is 1 or greater. |
|
|
786
|
+
| EndRowFillColor | string | no | The FillColor, specified as a swatch (color, gradi- ent, tint, or mixed ink), of rows in the second alternating fills group. Note: Valid when alter- nating fills are defined for table rows. |
|
|
787
|
+
| EndRowFillCount | int | no | The number of rows in the second alternating fills group. Note: Valid when alternating fills are defined for table rows. |
|
|
788
|
+
| EndRowFill Overprint | boolean | no | If true, the rows in the second alternating fills group will overprint. Note: Valid when alternat- ing fills are defined for table rows. |
|
|
789
|
+
| EndRowFillTint | double | no | The tint (as a percentage) of the rows in the second alternating fills group. (Range: 0 to 100) Note: Valid when alternating fills are defined for table rows. |
|
|
790
|
+
| EndRowStrokeColor | string | no | The stroke color, specified as a swatch (color, gradient, tint, or mixed ink), of row borders in the second alternating row strokes group. Note: Valid when end row stroke count is 1 or greater. |
|
|
791
|
+
| EndRowStrokeCount | int | no | The number of rows in the second alternating row strokes group. |
|
|
792
|
+
| EndRowStrokeGapColor | string | no | The gap color, specified as a swatch (color, gradi- ent, tint, or mixed ink), of row borders in the second alternating rows group. Note: Valid when end row stroke count is 1 or greater. |
|
|
793
|
+
| EndRowStrokeGapOverprint | boolean | no | If true, the gap of the row borders in the second alternating rows group will overprint. Note: Valid when end row stroke count is 1 or greater. |
|
|
794
|
+
| EndRowStrokeGapTint | double | no | The tint (as a percentage) of the gap color of rows in the second alternating strokes group. (Range: 0 to 100) Note: Valid when end row stroke count is 1 or greater and end row stroke type is not solid. |
|
|
795
|
+
| EndRowStrokeOverprint | boolean | no | If true, the rows in the second alternating rows group will overprint. Note: Valid when end row stroke count is 1 or greater. |
|
|
796
|
+
| EndRowStrokeTint | double | no | The tint (as a percentage) of the row borders in the second alternating strokes group. (Range: 0 to 100) Note: Valid when end row stroke count is 1 or greater. |
|
|
797
|
+
| EndRowStrokeType | string | no | The stroke type of rows in the second alternating strokes group. |
|
|
798
|
+
| EndRowStrokeWeight | double | no | The stroke weight of row borders in the second alternating row strokes group. Note: Valid when end row stroke count is 1 or greater. |
|
|
799
|
+
| FooterRowCount | int | no | The number of footer rows. |
|
|
800
|
+
| HeaderRowCount | int | no | The number of header rows. |
|
|
801
|
+
| KeepWithNextRow | boolean | no | If true, keep the row with the next row. |
|
|
802
|
+
| LeftBorderStrokeColor | string | no | The color, specified as a swatch (color, gradient, tint, or mixed ink), of the left border stroke. |
|
|
803
|
+
| LeftBorderStrokeGapColor | string | no | The gap color, specified as a swatch (color, gradi- ent, tint, or mixed ink), of the left border stroke. Note: Valid only when left border stroke type is not solid. |
|
|
804
|
+
| LeftBorderStrokeGapOverprint | boolean | no | If true, the gap of the left border stroke will overprint. Note: Valid only when left border stroke type is not solid. |
|
|
805
|
+
| LeftBorderStrokeGapTint | double | no | The tint (as a percentage) of the gap color of the left border stroke. (Range: 0 to 100) Note: Valid only when left border stroke type is not solid. |
|
|
806
|
+
| LeftBorderStrokeOverprint | boolean | no | If true, the left border stroke will overprint. |
|
|
807
|
+
| LeftBorderStrokeTint | double | no | The tint (as a percentage) of the left border stroke. (Range: 0 to 100) |
|
|
808
|
+
| LeftBorderStrokeType | string | no | The stroke type of the left border. |
|
|
809
|
+
| LeftBorderStrokeWeight | double | no | The stroke weight of the left border stroke. |
|
|
810
|
+
| MaximumHeight | double | no | The maximum height of the cell. |
|
|
811
|
+
| MinimumHeight | double | no | The minimum height of the cell. |
|
|
812
|
+
| RightBorderStrokeColor | string | no | The color, specified as a swatch (color, gradient, tint, or mixed ink), of the right border stroke. |
|
|
813
|
+
| RightBorderStrokeGapColor | string | no | The gap color, specified as a swatch (color, gra- dient, tint, or mixed ink), of the right border stroke. Note: Valid only when right border stroke type is not solid. |
|
|
814
|
+
| RightBorderStrokeGapOverprint | boolean | no | If true, the gap color of the right border stroke will overprint. Note: Valid only when right bor- der stroke type is not solid. |
|
|
815
|
+
| RightBorderStrokeGapTint | double | no | The tint (as a percentage) of the gap color of the right border stroke. (Range: 0 to 100) Note: Valid only when right border stroke type is not solid. |
|
|
816
|
+
| RightBorderStrokeOverprint | boolean | no | If true, the right border stroke will overprint. |
|
|
817
|
+
| RightBorderStrokeTint | double | no | The tint (as a percentage) of the right border stroke. (Range: 0 to 100) |
|
|
818
|
+
| RightBorderStrokeType | string | no | The stroke type of the right border. |
|
|
819
|
+
| RightBorderStrokeWeight | double | no | The stroke weight of the right border stroke. |
|
|
820
|
+
| SingleColumnWidth | double | no | The width of a column. |
|
|
821
|
+
| SingleRowHeight | double | no | The height of a row. |
|
|
822
|
+
| SkipFirst AlternatingFill Columns | int | no | The number of columns on the left side of the table to skip before applying the column fill col- or. Note: Valid when alternating fills are defined for table columns. |
|
|
823
|
+
| SkipFirst AlternatingFill Rows | int | no | The number of body rows at the beginning of the table to skip before applying the row FillColor. Note: Valid when alternating fills are defined for table rows. |
|
|
824
|
+
| SkipFirst Alternating StrokeColumns | int | no | The number of columns on the left of the table in which to skip border stroke formatting. Note: Valid when start column stroke count is 1 or greater and/or end column stroke count is 1 or greater. |
|
|
825
|
+
| SkipFirst Alternating StrokeRows | int | no | The number of body rows at the beginning of the table in which to skip border stroke format- ting. Note: Valid when start row stroke count is 1 or greater and/or end row stroke count is 1 or greater. |
|
|
826
|
+
| SkipFirstHeader | boolean | no | If true, skips the first occurrence of header rows. |
|
|
827
|
+
| SkipLast AlternatingFill Columns | int | no | The number columns on the right side of the table in which to not apply the column FillColor. Note: Valid when alternating fills are defined for table columns. |
|
|
828
|
+
| SkipLast AlternatingFill Rows | int | no | The number of body rows at the end of the table in which to not apply the row FillColor. Note: Valid when alternating fills are defined for table rows. |
|
|
829
|
+
| SkipLast Alternating StrokeColumns | int | no | The number of columns on the right side of the table in which to skip border stroke formatting. Note: Valid when start column stroke count is 1 or greater and/or end column stroke count is 1 or greater. |
|
|
830
|
+
| SkipLast Alternating StrokeRows | int | no | The number of body rows at the end of the table in which to skip border stroke formatting. Note: Valid when start row stroke count is 1 or greater and/or end row stroke count is 1 or greater. |
|
|
831
|
+
| SkipLastFooter | boolean | no | If true, skips the last occurrence of footer rows. |
|
|
832
|
+
| SpaceAfter | double | no | The space below the table. |
|
|
833
|
+
| SpaceBefore | double | no | The space above the table. |
|
|
834
|
+
| StartColumnFill Color | string | no | The FillColor, specified as a swatch (color, gradi- ent, tint, or mixed ink), of columns in the first alternating fills group. Note: Valid when alter- nating fills are defined for table columns. |
|
|
835
|
+
| StartColumnFill Count | int | no | The number of columns in the first alternating fills group. Note: Valid when alternating fills are defined for table columns. |
|
|
836
|
+
| StartColumnFill Overprint | boolean | no | If true, the columns in the first alternating fills group will overprint. Note: Valid when alternat- ing fills are defined for table columns. |
|
|
837
|
+
| StartColumnFill Tint | double | no | The tint (as a percentage) of the columns in the first alternating fills group. (Range: 0 to 100) Note: Valid when alternating fills are defined for table columns. |
|
|
838
|
+
| StartColumn StrokeColor | string | no | The stroke color, specified as a swatch (color, gradient, tint, or mixed ink), of column borders in the first alternating column strokes group. |
|
|
839
|
+
| StartColumn StrokeCount | int | no | The number of columns in the first alternating column strokes group. |
|
|
840
|
+
| StartColumn StrokeGapColor | string | no | The stroke gap color, specified as a swatch (color, gradient, tint, or mixed ink), of column borders in the first alternating column strokes group. Note: Valid when start column stroke count is 1 or greater. |
|
|
841
|
+
| StartColumn StrokeGap Overprint | boolean | no | If true, the gap of the column borders in the first alternating column strokes group will overprint. Note: Valid when start column stroke count is 1 or greater. |
|
|
842
|
+
| StartColumn StrokeGapTint | double | no | The tint (as a percentage) of the gap color of column borders in the first alternating column strokes group. (Range: 0 to 100) Note: Valid when start column stroke count is 1 or greater. |
|
|
843
|
+
| StartColumn StrokeOverprint | boolean | no | If true, the column borders in the first alternat- ing column strokes group will overprint. Note: Valid when start column stroke count is 1 or greater. |
|
|
844
|
+
| StartColumn StrokeTint | double | no | The tint (as a percentage) of column borders in the first alternating column strokes group. (Range: 0 to 100) Note: Valid when start column stroke count is 1 or greater. |
|
|
845
|
+
| StartColumn StrokeType | string | no | The stroke type of columns in the first alternat- ing strokes group. |
|
|
846
|
+
| StartColumn StrokeWeight | double | no | The stroke weight of column borders in the first alternating column strokes group. Note: Valid when start column stroke count is 1 or greater. |
|
|
847
|
+
| StartRow | StartParagraph_ EnumValue | no | Can be Anywhere (Starts in the next available space), NextColumn (Starts at the top of the next column), NextFrame (Starts at the top of the next TextFrame in the thread), NextPage (Starts at the top of the next page), NextOddPage (Starts at the top of the next odd-numbered page), or NextEvenPage (Starts at the top of the next even-numbered page). |
|
|
848
|
+
| StartRowFillColor | string | no | The FillColor, specified as a swatch (color, gradi- ent, tint, or mixed ink), of rows in the first alter- nating fills group. Note: Valid when alternating fills are defined for table rows. |
|
|
849
|
+
| StartRowFillCount | int | no | The number of rows in the first alternating fills group. Note: Valid when alternating fills are defined for table rows. |
|
|
850
|
+
| StartRowFill Overprint | boolean | no | If true, the rows in the first alternating fills group will overprint. Note: Valid when alternat- ing fills are defined for table rows. |
|
|
851
|
+
| StartRowFillTint | double | no | The tint (as a percentage) of the rows in the first alternating fills group. (Range: 0 to 100) Note: Valid when alternating fills are defined for table rows. |
|
|
852
|
+
| StartRowStrokeColor | string | no | The color, specified as a swatch (color, gradient, tint, or mixed ink), of row borders in the first alternating row strokes group. Note: Valid when start row stroke count is 1 or greater. |
|
|
853
|
+
| StartRowStroke Count | int | no | The number of rows in the first alternating row strokes group. |
|
|
854
|
+
| StartRowStrokeGapColor | string | no | The stroke gap color of row borders in the first alternating row strokes group, specified as a swatch (color, gradient, tint, or mixed ink). Note: Valid when start row stroke count is 1 or greater. |
|
|
855
|
+
| StartRowStroke GapOverprint | boolean | no | If true, the gap color of the row border stroke in the first alternating row strokes group will over- print. Note: Valid when start row stroke count is 1 or greater. |
|
|
856
|
+
| StartRowStrokeGapTint | double | no | The tint (as a percentage) of the gap color of row borders in the first alternating rows group. (Range: 0 to 100) Note: Valid when start row stroke count is 1 or greater. |
|
|
857
|
+
| StartRowStrokeOverprint | boolean | no | If true, the row borders in the first alternating row strokes group will overprint. Note: Valid when start row stroke count is 1 or greater. |
|
|
858
|
+
| StartRowStrokeTint | double | no | The tint (as a percentage) of the borders in the first alternating row strokes group. (Range: 0 to 100) Note: Valid when start row stroke count is 1 or greater. |
|
|
859
|
+
| StartRowStrokeType | string | no | The stroke type of rows in the first alternating strokes group. |
|
|
860
|
+
| StartRowStrokeWeight | double | no | The stroke weight of row borders in the first alternating row strokes group. Note: Valid when start row stroke count is 1 or greater. |
|
|
861
|
+
| StrokeOrder | StrokeOrderTypes_ EnumValue | no | The order in which to display row and column strokes at corners. Can be RowOnTop (Places row strokes in front of column strokes), Column OnTop (Places column strokes in front of row strokes), BestJoins (Places row strokes in front of column strokes when row and col- umn strokes are different colors; joins striped strokes and connects crossing points), or Indesign2Compatibility (Places row strokes in front when row and column strokes are dif- ferent colors; joins striped strokes only at points where strokes cross in a T-shape). |
|
|
862
|
+
| TableDirection | TableDirection_ EnumValue | no | The direction of the the table. Can be LeftTo RightDirection (Set left to right table direc- tion), or RightToLeftDirection (Set right to left table direction). |
|
|
863
|
+
| TopBorderStrokeColor | string | no | The color, specified as a swatch (color, gradi- ent, tint, or mixed ink), of the table's top border stroke. |
|
|
864
|
+
| TopBorderStrokeGapColor | string | no | The gap color, specified as a swatch (color, gradi- ent, tint, or mixed ink), of the table's top border stroke. Note: Valid only when top border stroke type is not solid. |
|
|
865
|
+
| TopBorderStrokeGapOverprint | boolean | no | If true, the gap of the top border stroke will overprint. Note: Valid only when top border stroke type is not solid. |
|
|
866
|
+
| TopBorderStrokeGapTint | double | no | The tint (as a percentage) of the gap color of the table's top border stroke. (Range: 0 to 100) Note: Valid only when top border stroke type is not solid. |
|
|
867
|
+
| TopBorderStrokeOverprint | boolean | no | If true, the top border strokes will overprint. |
|
|
868
|
+
| TopBorderStrokeTint | double | no | The tint (as a percentage) of the table's top bor- der stroke. (Range: 0 to 100) |
|
|
869
|
+
| TopBorderStrokeType | string | no | The stroke type of the top border. |
|
|
870
|
+
| TopBorderStrokeWeight | double | no | The stroke weight of the table's top border stroke. |
|
|
871
|
+
|
|
872
|
+
A simple table (one row, three columns) would appear as follows (again, we've omitted the details of the <Story> element for clarity). Note that the <Cell> elements contain <ParagraphStyleRange> and <CharacterStyleRange> elements that follow the same pattern as they do in the body of the <Story> element.
|
|
873
|
+
|
|
874
|
+
**IDML Example 53. Table**
|
|
875
|
+
|
|
876
|
+
```xml
|
|
877
|
+
<ParagraphStyleRange AppliedParagraphStyle="Paragraph Style\Normal Paragraph Style"> <CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\[No CharacterStyle]"> <Table Self="uddie2" Story Offset="ucb Insertion Point0" Header Row Count="0" Footer Row Count="0" Body Row Count="1" Column Count="3" AppliedTable Style="Table Style\[Basic Table]" Table Direction="Left To Right Direction"> <Row Self="uddie2Row0" Name="0" Single Row Height="16.3203125"/> <Column Self="uddie2Column0" Name="0" Single Column Width="180"/> <Column Self="uddie2Column1" Name="1" Single Column Width="180"/> <Column Self="uddie2Column2" Name="2" Single Column Width="180"/> <Cell Self="uddie2i0" Name="0:0" Row Span="1" Column Span="1" Applied Cell Style="Cell Style\[None]" Applied Cell Style Priority="0"> <ParagraphStyleRange AppliedParagraph Style= "Paragraph Style\Normal Paragraph Style"> <CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\[No CharacterStyle]"> <Content>ABC</Content> </CharacterStyleRange> </Paragraph Style Range> </Cell> <Cell Self="uddie2i1" Name="1:0" Row Span="1" Column Span="1" Applied Cell Style="Cell Style\[None]" Applied Cell Style Priority="0"> <ParagraphStyleRange AppliedParagraph Style= "Paragraph Style\Normal Paragraph Style"> <CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\[No CharacterStyle]"> <Content>DEF</Content> </CharacterStyleRange> </Paragraph Style Range> </Cell> <Cell Self="uddie2i2" Name="2:0" Row Span="1" Column Span="1" Applied Cell Style="Cell Style\[None]" Applied Cell Style Priority="0"> <ParagraphStyleRange AppliedParagraph Style= "Paragraph Style\Normal Paragraph Style"> <CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\[No CharacterStyle]"> <Content>GHI</Content> </CharacterStyleRange> </Paragraph Style Range> </Cell> </Table> </CharacterStyleRange>
|
|
878
|
+
</ParagraphStyleRange>
|
|
879
|
+
```
|
|
880
|
+
|
|
881
|
+
## Cell
|
|
882
|
+
|
|
883
|
+
**Schema Example 82. Cell**
|
|
884
|
+
|
|
885
|
+
```
|
|
886
|
+
Cell_Object = element Cell { attribute Self { xsd:string }, attribute Name { xsd:string }, attribute RowSpan { xsd:int }?, attribute ColumnSpan { xsd:int }?, attribute TopInset { xsd:double }?, attribute LeftInset { xsd:double }?, attribute BottomInset { xsd:double }?, attribute RightInset { xsd:double }?, attribute FillColor { xsd:string }?, attribute FillTint { xsd:double }?, attribute OverprintFill { xsd:boolean }?, attribute TopLeftDiagonalLine { xsd:boolean }?, attribute TopRightDiagonalLine { xsd:boolean }?, attribute DiagonalLineInFront { xsd:boolean }?, attribute DiagonalLineStrokeWeight { xsd:double }?, attribute DiagonalLineStrokeType { xsd:string }?, attribute DiagonalLineStrokeColor { xsd:string }?, attribute DiagonalLineStrokeTint { xsd:double }?, attribute DiagonalLineStrokeOverprint { xsd:boolean }?, attribute DiagonalLineStrokeGapColor { xsd:string }?, attribute DiagonalLineStrokeGapTint { xsd:double }?, attribute DiagonalLineStrokeGapOverprint { xsd:boolean }?, attribute ClipContentToCell { xsd:boolean }?, attribute FirstBaselineOffset { FirstBaseline_EnumValue }?, attribute VerticalJustification { VerticalJustification_EnumValue }?, attribute ParagraphSpacingLimit { xsd:double }?, attribute MinimumFirstBaselineOffset { xsd:double {minInclusive="0" maxInclusive="8640"} }?, attribute RotationAngle { xsd:double }?, attribute LeftEdgeStrokeWeight { xsd:double }?, attribute LeftEdgeStrokeType { xsd:string }?, attribute LeftEdgeStrokeColor { xsd:string }?, attribute LeftEdgeStrokeTint { xsd:double }?, attribute LeftEdgeStrokeOverprint { xsd:boolean }?, attribute LeftEdgeStrokeGapColor { xsd:string }?, attribute LeftEdgeStrokeGapTint { xsd:double }?, attribute LeftEdgeStrokeGapOverprint { xsd:boolean }?, attribute TopEdgeStrokeWeight { xsd:double }?, attribute TopEdgeStrokeType { xsd:string }?, attribute TopEdgeStrokeColor { xsd:string }?, attribute TopEdgeStrokeTint { xsd:double }?, attribute TopEdgeStrokeOverprint { xsd:boolean }?, attribute TopEdgeStrokeGapColor { xsd:string }?, attribute TopEdgeStrokeGapTint { xsd:double }?, attribute TopEdgeStrokeGapOverprint { xsd:boolean }?, attribute RightEdgeStrokeWeight { xsd:double }?, attribute RightEdgeStrokeType { xsd:string }?, attribute RightEdgeStrokeColor { xsd:string }?, attribute RightEdgeStrokeTint { xsd:double }?, attribute RightEdgeStrokeOverprint { xsd:boolean }?, attribute RightEdgeStrokeGapColor { xsd:string }?, attribute RightEdgeStrokeGapTint { xsd:double }?, attribute RightEdgeStrokeGapOverprint { xsd:boolean }?, attribute BottomEdgeStrokeWeight { xsd:double }?, attribute BottomEdgeStrokeType { xsd:string }?, attribute BottomEdgeStrokeColor { xsd:string }?, attribute BottomEdgeStrokeTint { xsd:double }?, attribute BottomEdgeStrokeOverprint { xsd:boolean }?, attribute BottomEdgeStrokeGapColor { xsd:string }?, attribute BottomEdgeStrokeGapTint { xsd:double }?, attribute BottomEdgeStrokeGapOverprint { xsd:boolean }?, attribute InnerRowStrokeWeight { xsd:double }?, attribute InnerRowStrokeType { xsd:string }?, attribute InnerRowStrokeColor { xsd:string }?, attribute InnerRowStrokeTint { xsd:double }?, attribute InnerRowStrokeOverprint { xsd:boolean }?, attribute InnerRowStrokeGapColor { xsd:string }?, attribute InnerRowStrokeGapTint { xsd:double }?, attribute InnerRowStrokeGapOverprint { xsd:boolean }?, attribute InnerColumnStrokeWeight { xsd:double }?, attribute InnerColumnStrokeType { xsd:string }?, attribute InnerColumnStrokeColor { xsd:string }?, attribute InnerColumnStrokeTint { xsd:double }?, attribute InnerColumnStrokeOverprint { xsd:boolean }?, attribute InnerColumnStrokeGapColor { xsd:string }?, attribute InnerColumnStrokeGapTint { xsd:double }?, attribute InnerColumnStrokeGapOverprint { xsd:boolean }?, attribute TopEdgeStrokePriority { xsd:int }?, attribute LeftEdgeStrokePriority { xsd:int }?, attribute BottomEdgeStrokePriority { xsd:int }?, attribute RightEdgeStrokePriority { xsd:int }?, attribute AppliedCellStyle { xsd:string }?, attribute WritingDirection { xsd:boolean }?, attribute AppliedCellStylePriority { xsd:int }?, element Properties { element AllCellGradientAttrList { list_type, element ListItem { (double_type, xsd:double ) | (list_type, element ListItem { unit_type, xsd:double }, element ListItem { unit_type, xsd:double }) }* }?& element Label { list_type, element ListItem { list_type, element ListItem { string_type, xsd:string }, element ListItem { string_type, xsd:string } }* }? } ?, ( GaijiOwnedItemObject_Object*& TextVariableInstance_Object*& Table_Object*& ParagraphStyleRange_Object*& CharacterStyleRange_Object*& Change_Object*& Note_Object*& Button_Object*& HiddenText_Object* ) }
|
|
887
|
+
```
|
|
888
|
+
|
|
889
|
+
**Table 110.** Cell Properties Represented as Attributes
|
|
890
|
+
|
|
891
|
+
| Name | Type | Req | Description |
|
|
892
|
+
| -------------------------------- | --------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
893
|
+
| AppliedCellStyle | string | no | The cell style applied to the cell. |
|
|
894
|
+
| AppliedCellStyle Priority | int | no | |
|
|
895
|
+
| BottomEdgeStrokeColor | string | no | The swatch (color, gradient, tint, or mixed ink) applied to the bottom edge border stroke. |
|
|
896
|
+
| BottomEdgeStrokeGapColor | string | no | The swatch (color, gradient, tint, or mixed ink) applied to the gap of the bottom edge border stroke. Note: Not valid when bottom edge stroke type is solid. |
|
|
897
|
+
| BottomEdgeStrokeGapOverprint | boolean | no | If true, the gap color of the bottom edge border stroke will overprint. Note: Not valid when bot- tom edge stroke type is solid. |
|
|
898
|
+
| BottomEdgeStrokeGapTint | double | no | The tint (as a percentage) of the bottom edge border stroke gap color. (Range: 0 to 100) Note: Not valid when bottom edge stroke type is solid. |
|
|
899
|
+
| BottomEdgeStrokeOverprint | boolean | no | If true, the bottom edge border stroke will over- print. |
|
|
900
|
+
| BottomEdgeStrokePriority | int | no | The priority of a stroke determines the order in which it will be drawn, relative to the other strokes on the cell. Higher values equal higher priority. |
|
|
901
|
+
| BottomEdgeStrokeTint | double | no | The tint (as a percentage) of the bottom edge border stroke. |
|
|
902
|
+
| BottomEdgeStrokeType | string | no | The stroke type of the bottom edge. |
|
|
903
|
+
| BottomEdgeStrokeWeight | double | no | The stroke weight of the bottom edge border stroke. |
|
|
904
|
+
| BottomInset | double | no | The bottom inset of the cell. |
|
|
905
|
+
| ClipContentToCell | boolean | no | If true, clips the cell's content to width and height of the cell. |
|
|
906
|
+
| ColumnSpan | int | no | The number of columns that the cell spans. |
|
|
907
|
+
| DiagonalLineIn Front | boolean | no | If true, draws the diagonal line in front of cell contents. |
|
|
908
|
+
| DiagonalLine StrokeColor | string | no | The diagonal line color, specified as a swatch. |
|
|
909
|
+
| DiagonalLine StrokeGapColor | string | no | The swatch (color, gradient, tint, or mixed ink) applied to the gap of the diagonal line stroke. Note: Not valid when diagonal line stroke type is solid. |
|
|
910
|
+
| DiagonalLine StrokeGap Overprint | boolean | no | If true, the stroke gap of the diagonal line will overprint. Note: Not valid when diagonal line stroke type is solid. |
|
|
911
|
+
| DiagonalLine StrokeGapTint | double | no | The tint (as a percentage) of the diagonal line stroke gap color. Note: Not valid when diagonal line stroke type is solid. |
|
|
912
|
+
| DiagonalLine StrokeOverprint | boolean | no | If true, the diagonal line stroke will overprint. |
|
|
913
|
+
| DiagonalLine StrokeTint | double | no | The diagonal line tint (as a percentage). (Range: 0 to 100) |
|
|
914
|
+
| DiagonalLine StrokeType | string | no | The stroke type of the diagonal line(s). |
|
|
915
|
+
| DiagonalLine StrokeWeight | double | no | The diagonal line stroke weight. |
|
|
916
|
+
| FillColor | string | no | The swatch (color, gradient, tint, or mixed ink) applied to the fill of the cell. |
|
|
917
|
+
| FillTint | double | no | The tint (as a percentage) of the fill of the cell. |
|
|
918
|
+
| FirstBaseline Offset | FirstBaseline_ EnumValue | no | The distance between the baseline of the text and the top inset of the cell. Can be Ascent Offset (The tallest character in the font falls below the top inset of the object), CapHeight (The tops of upper case letters touch the top inset of the object), LeadingOffset (The text leading value defines the distance between the baseline of the text and the top inset of the object), EmboxHeight (The text em box height is the distance between the baseline of the text and the top inset of the object), XHeight (The tops of lower case letters touch the top inset of the object), or FixedHeight (Uses the value specified for minimum first baseline offset as the distance between the baseline of the text and the top inset of the object). |
|
|
919
|
+
| InnerColumn StrokeColor | string | no | The color, specified as a swatch, of the inner col- umn border stroke. |
|
|
920
|
+
| InnerColumn StrokeGapColor | string | no | The swatch (color, gradient, tint, or mixed ink) applied to the gap of the inner column border stroke. Note: Not valid when inner column stroke type is solid. |
|
|
921
|
+
| InnerColumn StrokeGap Overprint | boolean | no | If true, the gap color of the inner column bor- der stroke will overprint. Note: Not valid when inner column stroke type is solid. |
|
|
922
|
+
| InnerColumn StrokeGapTint | double | no | The tint (as a percentage) of the inner column border stroke gap color. (Range: 0 to 100) Note: Not valid when inner column stroke type is solid. |
|
|
923
|
+
| InnerColumn StrokeOverprint | boolean | no | If true, the inner column border stroke will overprint. |
|
|
924
|
+
| InnerColumn StrokeTint | double | no | The tint (as a percentage) of the inner column border stroke. (Range: 0 to 100) |
|
|
925
|
+
| InnerColumn StrokeType | string | no | The stroke type of the inner column. |
|
|
926
|
+
| InnerColumn StrokeWeight | double | no | The stroke weight of the inner column border stroke. |
|
|
927
|
+
| InnerRowStroke Color | string | no | The color, specified as a swatch, of the inner row border stroke. |
|
|
928
|
+
| InnerRowStroke GapColor | string | no | The swatch (color, gradient, tint, or mixed ink) applied to the gap of the inner row border stroke. Note: Not valid when inner row stroke type is solid. |
|
|
929
|
+
| InnerRowStroke GapOverprint | boolean | no | If true, the gap color of the inner row border stroke will overprint. Note: Not valid when inner row stroke type is solid. |
|
|
930
|
+
| InnerRowStroke GapTint | double | no | The tint (as a percentage) of the inner row border stroke. (Range: 0 to 100) Note: Not valid when inner row stroke type is solid. |
|
|
931
|
+
| InnerRowStroke Overprint | boolean | no | If true, the inner row border stroke will over- print. |
|
|
932
|
+
| InnerRowStroke Tint | double | no | The tint (as a percentage) of the inner row border stroke. (Range: 0 to 100) |
|
|
933
|
+
| InnerRowStroke Type | string | no | The stroke type of the inner row. |
|
|
934
|
+
| InnerRowStroke Weight | double | no | The stroke weight of the inner row border strokes. |
|
|
935
|
+
| LeftEdgeStrokeColor | string | no | The swatch (color, gradient, tint, or mixed ink) applied to the left edge border stroke. |
|
|
936
|
+
| LeftEdgeStrokeGapColor | string | no | The swatch (color, gradient, tint, or mixed ink) applied to the gap of the left edge border stroke. Note: Not valid when left edge stroke type is solid. |
|
|
937
|
+
| LeftEdgeStrokeGapOverprint | boolean | no | If true, the gap color of the left edge border stroke will overprint. Note: Not valid when left edge stroke type is solid. |
|
|
938
|
+
| LeftEdgeStrokeGapTint | double | no | The tint (as a percentage) of the left edge border stroke gap color. (Range: 0 to 100) Note: Not valid when left edge stroke type is solid. |
|
|
939
|
+
| LeftEdgeStrokeOverprint | boolean | no | If true, the left edge border stroke will overprint. |
|
|
940
|
+
| LeftEdgeStrokePriority | int | no | The priority of a stroke determines the order in which it will be drawn, relative to the other strokes on the cell. Higher values equal higher priority. |
|
|
941
|
+
| LeftEdgeStrokeTint | double | no | The tint (as a percentage) of the left edge border stroke. (Range: 0 to 100) |
|
|
942
|
+
| LeftEdgeStrokeType | string | no | The stroke type of the left edge. |
|
|
943
|
+
| LeftEdgeStrokeWeight | double | no | The stroke weight of the left edge border stroke. |
|
|
944
|
+
| LeftInset | double | no | The left inset of the cell. |
|
|
945
|
+
| MinimumFirst BaselineOffset | double | no | The space between the baseline of the text and the top inset of the frame or cell. |
|
|
946
|
+
| OverprintFill | boolean | no | If true, the fill of the cell will overprint. |
|
|
947
|
+
| ParagraphSpacing Limit | double | no | The maximum space that can be added between paragraphs in a cell. Note: Valid only when ver- tical justification is justified. |
|
|
948
|
+
| RightEdgeStrokeColor | string | no | The color, specified as a swatch, of the right edge border stroke. |
|
|
949
|
+
| RightEdgeStrokeGapColor | string | no | The swatch (color, gradient, tint, or mixed ink) applied to the gap of the right edge border stroke. Note: Not valid when right edge stroke type is solid. |
|
|
950
|
+
| RightEdgeStrokeGapOverprint | boolean | no | If true, the gap color of the right edge border stroke will overprint. Note: Not valid when right edge stroke type is solid. |
|
|
951
|
+
| RightEdgeStrokeGapTint | double | no | The tint (as a percentage) of the right edge bor- der stroke gap color. (Range: 0 to 100) Note: Not valid when right edge stroke type is solid. |
|
|
952
|
+
| RightEdgeStrokeOverprint | boolean | no | If true, the right edge border stroke will over- print. |
|
|
953
|
+
| RightEdgeStrokePriority | int | no | The priority of a stroke determines the order in which it will be drawn, relative to the other strokes on the cell. Higher values equal higher priority. |
|
|
954
|
+
| RightEdgeStrokeTint | double | no | The tint (as a percentage) of the right edge bor- der stroke. (Range: 0 to 100) |
|
|
955
|
+
| RightEdgeStrokeType | string | no | The stroke type of the right edge. |
|
|
956
|
+
| RightEdgeStrokeWeight | double | no | The stroke weight of the right edge border stroke. |
|
|
957
|
+
| RightInset | double | no | The right inset of the cell. |
|
|
958
|
+
| RotationAngle | double | no | The rotation angle (in degrees) of the cell, speci- fied as one of the following values: 0, 90, 180, or 270. |
|
|
959
|
+
| RowSpan | int | no | The number of rows that the cell spans. |
|
|
960
|
+
| TopEdgeStrokeColor | string | no | The swatch (color, gradient, tint, or mixed ink) applied to the top edge border stroke. |
|
|
961
|
+
| TopEdgeStrokeGapColor | string | no | The swatch (color, gradient, tint, or mixed ink) applied to the gap of the top edge border stroke. Note: Not valid when top edge stroke type is solid. |
|
|
962
|
+
| TopEdgeStrokeGapOverprint | boolean | no | If true, the gap color of the top edge border stroke will overprint. Note: Not valid when top edge stroke type is solid. |
|
|
963
|
+
| TopEdgeStrokeGapTint | double | no | The tint (as a percentage) of the top edge border stroke gap color. (Range: 0 to 100) Note: Not valid when top edge stroke type is solid. |
|
|
964
|
+
| TopEdgeStrokeOverprint | boolean | no | If true, the top edge border stroke will overprint. |
|
|
965
|
+
| TopEdgeStrokePriority | int | no | The priority of a stroke determines the order in which it will be drawn, relative to the other strokes on the cell. Higher values equal higher priority. |
|
|
966
|
+
| TopEdgeStrokeTint | double | no | The tint (as a percentage) of the top edge border stroke. (Range: 0 to 100) |
|
|
967
|
+
| TopEdgeStrokeType | string | no | The stroke type of the top edge. |
|
|
968
|
+
| TopEdgeStrokeWeight | double | no | The stroke weight of the top edge border stroke. |
|
|
969
|
+
| TopInset | double | no | The top inset of the cell. |
|
|
970
|
+
| TopLeftDiagonal Line | boolean | no | If true, draws a diagonal line starting from the top left. |
|
|
971
|
+
| TopRightDiagonal Line | boolean | no | If true, draws a diagonal line starting from the top right. |
|
|
972
|
+
| Vertical Justification | Vertical Justification_ EnumValue | no | The vertical alignment of cell. Can be Top Align (Text is aligned at the top of the object), CenterAlign (Text is center aligned vertically in the object), BottomAlign (Text is aligned at the bottom of the object), or JustifyAlign (Lines of text are evenly distributed vertically between the top and bottom of the object). |
|
|
973
|
+
| WritingDirection | boolean | no | The direction of the text in the cell. |
|
|
974
|
+
|
|
975
|
+
**Table 111**: Cell Properties Represented as Elements
|
|
976
|
+
|
|
977
|
+
| AllCellGradient | ListItem or | no |
|
|
978
|
+
| -------------------- | --------------- | ------ |
|
|
979
|
+
| AttrList | double | |
|
|
980
|
+
|
|
981
|
+
## Column
|
|
982
|
+
|
|
983
|
+
**Schema Example 83. Column**
|
|
984
|
+
|
|
985
|
+
```
|
|
986
|
+
Column_Object = element Column { attribute Self { xsd:string }, attribute Name { xsd:string }, attribute TopInset { xsd:double }?, attribute LeftInset { xsd:double }?, attribute BottomInset { xsd:double }?, attribute RightInset { xsd:double }?, attribute FillColor { xsd:string }?, attribute FillTint { xsd:double }?, attribute OverprintFill { xsd:boolean }?, attribute TopLeftDiagonalLine { xsd:boolean }?, attribute TopRightDiagonalLine { xsd:boolean }?, attribute DiagonalLineInFront { xsd:boolean }?, attribute DiagonalLineStrokeWeight { xsd:double }?, attribute DiagonalLineStrokeType { xsd:string }?, attribute DiagonalLineStrokeColor { xsd:string }?, attribute DiagonalLineStrokeTint { xsd:double }?, attribute DiagonalLineStrokeOverprint { xsd:boolean }?, attribute DiagonalLineStrokeGapColor { xsd:string }?, attribute DiagonalLineStrokeGapTint { xsd:double }?, attribute DiagonalLineStrokeGapOverprint { xsd:boolean }?, attribute ClipContentToCell { xsd:boolean }?, attribute FirstBaselineOffset { FirstBaseline_EnumValue }?, attribute VerticalJustification { VerticalJustification_EnumValue }?, attribute ParagraphSpacingLimit { xsd:double }?, attribute MinimumFirstBaselineOffset { xsd:double {minInclusive="0" maxInclusive="8640"} }?, attribute RotationAngle { xsd:double }?, attribute WritingDirection { xsd:boolean }?, attribute SingleColumnWidth { xsd:double }? }
|
|
987
|
+
```
|
|
988
|
+
|
|
989
|
+
Table 112. Column Properties Represented as Attributes
|
|
990
|
+
|
|
991
|
+
| Name | Type | Req | Description |
|
|
992
|
+
| --------------------------- | --------- | ------- | -------------------------------------------------------------------- |
|
|
993
|
+
| BottomInset | double | no | The bottom inset of the cell. |
|
|
994
|
+
| ClipContentToCell | boolean | no | If true, clips the cell's content to width and height of the cell. |
|
|
995
|
+
| DiagonalLineIn Front | boolean | no | If true, draws the diagonal line in front of cell contents. |
|
|
996
|
+
| DiagonalLine StrokeColor | string | no | The diagonal line color, specified as a swatch. |
|
|
997
|
+
| DiagonalLine StrokeGapColor | string | no | The swatch (color, gradient, tint, or mixed ink) applied to the gap of the diagonal line stroke. Note: Not valid when diagonal line stroke type is solid. |
|
|
998
|
+
| DiagonalLine StrokeGap Overprint | boolean | no | If true, the stroke gap of the diagonal line will overprint. Note: Not valid when diagonal line stroke type is solid. |
|
|
999
|
+
| DiagonalLine StrokeGapTint | double | no | The tint (as a percentage) of the diagonal line stroke gap color. Note: Not valid when diagonal line stroke type is solid. |
|
|
1000
|
+
| DiagonalLine StrokeOverprint | boolean | no | If true, the diagonal line stroke will overprint. |
|
|
1001
|
+
| DiagonalLine StrokeTint | double | no | The diagonal line tint (as a percentage). (Range: 0 to 100) |
|
|
1002
|
+
| DiagonalLine StrokeType | string | no | The stroke type of the diagonal line(s). |
|
|
1003
|
+
| DiagonalLine StrokeWeight | double | no | The diagonal line stroke weight. |
|
|
1004
|
+
| FillColor | string | no | The swatch (color, gradient, tint, or mixed ink) applied to the fill of the Column. |
|
|
1005
|
+
| FillTint | double | no | The tint (as a percentage) of the fill of the Col- umn. |
|
|
1006
|
+
| FirstBaseline Offset | FirstBaseline_ EnumValue | no | The distance between the baseline of the text and the top inset of the cell. Can be Ascent Offset (The tallest character in the font falls below the top inset of the object), CapHeight (The tops of upper case letters touch the top inset of the object), LeadingOffset (The text leading value defines the distance between the baseline of the text and the top inset of the object), EmboxHeight (The text em box height is the distance between the baseline of the text and the top inset of the object), XHeight (The tops of lower case letters touch the top inset of the object), or FixedHeight (Uses the value specified for minimum first baseline offset as the distance between the baseline of the text and the top inset of the object). |
|
|
1007
|
+
| LeftInset | double | no | The left inset of the cell. |
|
|
1008
|
+
| MinimumFirst BaselineOffset | double | no | The space between the baseline of the text and the top inset of the frame or cell. |
|
|
1009
|
+
| Name | string | yes | The name of the column. |
|
|
1010
|
+
| OverprintFill | boolean | no | If true, the fill of the Column will overprint. |
|
|
1011
|
+
| ParagraphSpacing Limit | double | no | The maximum space that can be added between paragraphs in a cell. Note: Valid only when ver- tical justification is justified. |
|
|
1012
|
+
| RightInset | double | no | The right inset of the cell. |
|
|
1013
|
+
| RotationAngle | double | no | The rotation angle (in degrees) of the cell, speci- fied as one of the following values: 0, 90, 180, or 270. |
|
|
1014
|
+
| SingleColumnWidth | double | no | The width of a single column. |
|
|
1015
|
+
| TopInset | double | no | The top inset of the cell. |
|
|
1016
|
+
| TopLeftDiagonal Line | boolean | no | If true, draws a diagonal line starting from the top left. |
|
|
1017
|
+
| TopRightDiagonal Line | boolean | no | If true, draws a diagonal line starting from the top right. |
|
|
1018
|
+
| Vertical Justification | Vertical Justification_ EnumValue | no | The vertical alignment of cell. Can be Top Align (Text is aligned at the top of the object), CenterAlign (Text is center aligned vertically in the object), BottomAlign (Text is aligned at the bottom of the object), or JustifyAlign (Lines of text are evenly distributed vertically between the top and bottom of the object). |
|
|
1019
|
+
| WritingDirection | boolean | no | The direction of the text in the cell. |
|
|
1020
|
+
|
|
1021
|
+
## Row
|
|
1022
|
+
|
|
1023
|
+
**Schema Example 84. Row**
|
|
1024
|
+
|
|
1025
|
+
```
|
|
1026
|
+
Row_Object = element Row { attribute Self { xsd:string }, attribute Name { xsd:string }, attribute TopInset { xsd:double }?, attribute LeftInset { xsd:double }?, attribute BottomInset { xsd:double }?, attribute RightInset { xsd:double }?, attribute FillColor { xsd:string }?, attribute FillTint { xsd:double }?, attribute OverprintFill { xsd:boolean }?, attribute TopLeftDiagonalLine { xsd:boolean }?, attribute TopRightDiagonalLine { xsd:boolean }?, attribute DiagonalLineInFront { xsd:boolean }?, attribute DiagonalLineStrokeWeight { xsd:double }?, attribute DiagonalLineStrokeType { xsd:string }?, attribute DiagonalLineStrokeColor { xsd:string }?, attribute DiagonalLineStrokeTint { xsd:double }?, attribute DiagonalLineStrokeOverprint { xsd:boolean }?, attribute DiagonalLineStrokeGapColor { xsd:string }?, attribute DiagonalLineStrokeGapTint { xsd:double }?, attribute DiagonalLineStrokeGapOverprint { xsd:boolean }?, attribute ClipContentToCell { xsd:boolean }?, attribute FirstBaselineOffset { FirstBaseline_EnumValue }?, attribute VerticalJustification { VerticalJustification_EnumValue }?, attribute ParagraphSpacingLimit { xsd:double }?, attribute MinimumFirstBaselineOffset { xsd:double {minInclusive="0" maxInclusive="8640"} }?, attribute RotationAngle { xsd:double }?, attribute MinimumHeight { xsd:double }?, attribute MaximumHeight { xsd:double }?, attribute KeepWithNextRow { xsd:boolean }?, attribute StartRow { StartParagraph_EnumValue }?, attribute AutoGrow { xsd:boolean }?, attribute WritingDirection { xsd:boolean }?, attribute SingleRowHeight { xsd:double }? }
|
|
1027
|
+
```
|
|
1028
|
+
|
|
1029
|
+
Table 113. Row Properties Represented as Attributes
|
|
1030
|
+
|
|
1031
|
+
| Name | Type | Req | Description |
|
|
1032
|
+
| ------------------------------------ | --------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
1033
|
+
| AutoGrow | boolean | no | If true, the height of the cell or the cells in the Row can increase or decrease automatically to fit cell content. Note: Allows cells to grow or shrink to the maximum or minimum height, if specified. |
|
|
1034
|
+
| BottomInset | double | no | The bottom inset of the cell. |
|
|
1035
|
+
| ClipContentToCell | boolean | no | If true, clips the cell's content to width and height of the cell. |
|
|
1036
|
+
| DiagonalLineIn Front | boolean | no | If true, draws the diagonal line in front of cell contents. |
|
|
1037
|
+
| DiagonalLine StrokeColor | string | no | The diagonal line color, specified as a swatch. |
|
|
1038
|
+
| DiagonalLine StrokeGapColor | string | no | The swatch (color, gradient, tint, or mixed ink) applied to the gap of the diagonal line stroke. Note: Not valid when diagonal line stroke type is solid. |
|
|
1039
|
+
| DiagonalLine StrokeGap Overprint | boolean | no | If true, the stroke gap of the diagonal line will overprint. Note: Not valid when diagonal line stroke type is solid. |
|
|
1040
|
+
| DiagonalLine StrokeGapTint | double | no | The tint (as a percentage) of the diagonal line stroke gap color. Note: Not valid when diagonal line stroke type is solid. |
|
|
1041
|
+
| DiagonalLine StrokeOverprint | boolean | no | If true, the diagonal line stroke will overprint. |
|
|
1042
|
+
| DiagonalLine StrokeTint | double | no | The diagonal line tint (as a percentage). (Range: 0 to 100) |
|
|
1043
|
+
| DiagonalLine StrokeType | string | no | The stroke type of the diagonal line(s). |
|
|
1044
|
+
| DiagonalLine StrokeWeight | double | no | The diagonal line stroke weight. |
|
|
1045
|
+
| FillColor | string | no | The swatch (color, gradient, tint, or mixed ink) applied to the fill of the Row. |
|
|
1046
|
+
| FillTint | double | no | The tint (as a percentage) of the fill of the Row. |
|
|
1047
|
+
| FirstBaseline Offset | FirstBaseline_ EnumValue | no | The distance between the baseline of the text and the top inset of the cell. Can be Ascent Offset (The tallest character in the font falls below the top inset of the object), CapHeight (The tops of upper case letters touch the top inset of the object), LeadingOffset (The text leading value defines the distance between the baseline of the text and the top inset of the object), EmboxHeight (The text em box height is the distance between the baseline of the text and the top inset of the object), XHeight (The tops of lower case letters touch the top inset of the object), or FixedHeight (Uses the value specified for minimum first baseline offset as the distance between the baseline of the text and the top inset of the object). |
|
|
1048
|
+
| KeepWithNextRow | boolean | no | If true, keeps the row with the next row when the table is split across TextFrames or pages. |
|
|
1049
|
+
| LeftInset | double | no | The left inset of the cell. |
|
|
1050
|
+
| MaximumHeight | double | no | The maximum height to which the row or the column's rows may grow. Note: The maximum height cannot be exceeded even when auto grow is set to true. Also, the maximum height can affect redistribution. For information, see redis- tribute. |
|
|
1051
|
+
| MinimumFirst BaselineOffset | double | no | The space between the baseline of the text and the top inset of the frame or cell. |
|
|
1052
|
+
| MinimumHeight | double | no | The minimum height that the cell or the Row's cells are allowed to be. Note: When auto grow is true, cells can automatically grow larger than this amount when content is added. Also, the minimum height can affect redistribution. For information, see redistribute. |
|
|
1053
|
+
| Name | string | yes | The name of the row. |
|
|
1054
|
+
| OverprintFill | boolean | no | If true, the fill of the Row will overprint. |
|
|
1055
|
+
| ParagraphSpacing Limit | double | no | The maximum space that can be added between paragraphs in a cell. Note: Valid only when ver- tical justification is justified. |
|
|
1056
|
+
| RightInset | double | no | The right inset of the cell. |
|
|
1057
|
+
| RotationAngle | double | no | The rotation angle (in degrees) of the cell, speci- fied as one of the following values: 0, 90, 180, or 270. |
|
|
1058
|
+
| SingleRowHeight | double | no | The maximum height of a single row. |
|
|
1059
|
+
| StartRow | StartParagraph_ EnumValue | no | Indicates where to start the row. Can be Anywhere (Starts in the next available space), NextColumn (Starts at the top of the next col- umn), NextFrame (Starts at the top of the next TextFrame in the thread), NextPage (Starts at the top of the next page), NextOddPage (Starts at the top of the next odd-numbered page), or NextEvenPage (Starts at the top of the next even-numbered page). |
|
|
1060
|
+
| TopInset | double | no | The top inset of the cell. |
|
|
1061
|
+
| TopLeftDiagonal Line | boolean | no | If true, draws a diagonal line starting from the top left. |
|
|
1062
|
+
| TopRightDiagonal Line | boolean | no | If true, draws a diagonal line starting from the top right. |
|
|
1063
|
+
| Vertical Justification | Vertical Justification_ EnumValue | no | The vertical alignment of cell. Can be Top Align (Text is aligned at the top of the object), CenterAlign (Text is center aligned vertically in the object), BottomAlign (Text is aligned at the bottom of the object), or JustifyAlign (Lines of text are evenly distributed vertically between the top and bottom of the object). |
|
|
1064
|
+
| WritingDirection | boolean | no | The direction of the text in the cell. |
|
|
1065
|
+
|
|
1066
|
+
## Footnotes
|
|
1067
|
+
|
|
1068
|
+
Footnotes are another example of an element that can appear in a <CharacterStyleRange> element.
|
|
1069
|
+
|
|
1070
|
+
**Schema Example 85. Footnote**
|
|
1071
|
+
|
|
1072
|
+
```
|
|
1073
|
+
Footnote_Object = element Footnote { element Properties { element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ?, ( Table_Object*& GaijiOwnedItemObject_Object*& TextVariableInstance_Object*& ParagraphStyleRange_Object*& CharacterStyleRange_Object*& HiddenText_Object* ) }
|
|
1074
|
+
```
|
|
1075
|
+
|
|
1076
|
+
The following example shows a very simple example footnote (again, we've omitted the <Story> element for clarity):
|
|
1077
|
+
|
|
1078
|
+
**IDML Example 54. Footnote**
|
|
1079
|
+
```xml
|
|
1080
|
+
<ParagraphStyleRange AppliedParagraphStyle="ParagraphStyle\kNormalParagraph Style">
|
|
1081
|
+
<CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\k[No CharacterStyle]">
|
|
1082
|
+
<Content>This is body text.</Content>
|
|
1083
|
+
</CharacterStyleRange>
|
|
1084
|
+
<CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\k[No CharacterStyle]" Position="Superscript">
|
|
1085
|
+
<Footnote>
|
|
1086
|
+
<ParagraphStyleRange AppliedParagraphStyle="ParagraphStyle\kNormalParagraphStyle"> <CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\k[No CharacterStyle]"> <Content><?ACE 4?> This is footnote text.</Content> </CharacterStyleRange> </ParagraphStyleRange> </Footnote> </CharacterStyleRange> </ParagraphStyleRange>
|
|
1087
|
+
```
|
|
1088
|
+
|
|
1089
|
+
**Figure 38**: Footnote
|
|
1090
|
+
|
|
1091
|
+

|
|
1092
|
+
|
|
1093
|
+
#### Notes
|
|
1094
|
+
|
|
1095
|
+
In Design stories can contain non-printing notes. Notes in IDML are supported just like the other inline objects-they appear as child elements of a <CharacterStyleRange> object:
|
|
1096
|
+
|
|
1097
|
+
**Schema Example 86. Note**
|
|
1098
|
+
|
|
1099
|
+
```
|
|
1100
|
+
Note_Object = element Note { attribute Collapsed { xsd:boolean }?, attribute CreationDate { xsd:dateTime }?, attribute ModificationDate { xsd:dateTime }?, attribute UserName { xsd:string }?, attribute AppliedDocumentUser { xsd:string }?, element Properties { element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ?, ( Footnote_Object*& GaijiOwnedItemObject_Object*& TextVariableInstance_Object*& Table_Object*&
|
|
1101
|
+
ParagraphStyleRange_Object*& CharacterStyleRange_Object*& HiddenText_Object* ) }
|
|
1102
|
+
```
|
|
1103
|
+
|
|
1104
|
+
**IDML Example 55. Note**
|
|
1105
|
+
|
|
1106
|
+
```xml
|
|
1107
|
+
<ParagraphStyleRange AppliedParagraphStyle="Paragraph Style\k Normal Paragraph Style"> <CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\k[No CharacterStyle]"> <Content>This is an example paragraph. At the end of the second sentence,we've inserted a note.</Content> <Note Collapsed="false" CreationDate="20080224T23:12:55" ModificationDate="20080224T23:16:44" UserName="Unknown UserName" AppliedDocumentUser="d Document User1"> <ParagraphStyleRange AppliedParagraphStyle= "Paragraph Style\k[No paragraph style]"> <CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\k[No CharacterStyle]"> <Content>This is a note.</Content> </CharacterStyleRange> </Paragraph Style Range> </Note> <br/> <Content>This is a paragraph following the note.</Content> </CharacterStyleRange> </Paragraph Style Range>
|
|
1108
|
+
```
|
|
1109
|
+
|
|
1110
|
+
Figure 39. Note
|
|
1111
|
+
|
|
1112
|
+

|
|
1113
|
+
|
|
1114
|
+
## Anchored Frames
|
|
1115
|
+
|
|
1116
|
+
In Design documents often feature page items that have been embedded in text. These frames move with the text as the composition and layout of the text changes. These embedded frames are referred to as anchored frames . Anchored frames are also sometimes called inline frames -in IDML, an inline frame is a special case of an anchored frame.
|
|
1117
|
+
|
|
1118
|
+
The content of the inline TextFrame itself does not appear in the <Story> containing the frame, as shown in the following example. Instead, the Parent Story attribute inside the anchored <TextFrame> element includes a reference to another <Story> element in the same IDML package (in this example inside the, Story\_u109.xml file). The <Story> element in that file contains the text elements that appear in the inline TextFrame.
|
|
1119
|
+
|
|
1120
|
+
The position of the anchored frame on the page is determined by the composition of the text surrounding the frame and preceding it in its parent <Story> element, and by the contents of the <AnchoredObjectSetting> element associated with the inline frame. The frame may 'float' on the page, or may be positioned at points on the page determined by the contents of its <AnchoredObjectSetting> . You can change the shape and size of an anchored frame (in its inner coordinates) using its <PathGeometry> element, but you cannot transform the frame to a specific location in spread coordinates using the ItemTransform attribute of the frame (as you can when the frame is an independent page item).
|
|
1121
|
+
|
|
1122
|
+
For more on positioning anchored objects in text, refer to the In Design online help.
|
|
1123
|
+
|
|
1124
|
+
**Schema Example 87. Anchored Object Settings**
|
|
1125
|
+
|
|
1126
|
+
```
|
|
1127
|
+
AnchoredObjectSetting_Object = element AnchoredObjectSetting { attribute AnchoredPosition { AnchorPosition_EnumValue }?, attribute SpineRelative { xsd:boolean }?, attribute LockPosition { xsd:boolean }?, attribute PinPosition { xsd:boolean }?, attribute AnchorPoint { AnchorPoint_EnumValue }?, attribute HorizontalAlignment { HorizontalAlignment_EnumValue }?, attribute HorizontalReferencePoint { AnchoredRelativeTo_EnumValue }?, attribute VerticalAlignment { VerticalAlignment_EnumValue }?, attribute VerticalReferencePoint { VerticallyRelativeTo_EnumValue }?, attribute AnchorXoffset { xsd:double }?, attribute AnchorYoffset { xsd:double }?, attribute AnchorSpaceAbove { xsd:double }? }
|
|
1128
|
+
```
|
|
1129
|
+
|
|
1130
|
+
Table 114. Anchored Object Setting Properties Represented as Attributes
|
|
1131
|
+
|
|
1132
|
+
| Name | Type | Req | Description |
|
|
1133
|
+
| ------------------ | --------------------------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
1134
|
+
| AnchorPoint | AnchorPoint_Enum Value | no | The point in the anchored object to posi- tion. Can be TopLeftAnchor, TopCenter Anchor, TopRightAnchor, LeftCenter Anchor, CenterAnchor, RightCenterAnchor, BottomLeftAnchor, BottomCenterAnchor, or BottomRightAnchor. |
|
|
1135
|
+
| AnchorSpaceAbove | double | no | The space above an anchored object. Valid only when AnchoredPosition is AboveLine . |
|
|
1136
|
+
| AnchorXoffset | double | no | The horizontal (x) offset of the anchored object. |
|
|
1137
|
+
| AnchorYoffset | double | no | The vertical (y) offset of the anchored object. |
|
|
1138
|
+
| AnchoredPosition | AnchorPosition_ EnumValue | no | The position of the anchored object relative to the anchor. Can be InlinePosition, Above Line, or Anchored . |
|
|
1139
|
+
| Horizontal Alignment | Horizontal Alignment_Enum Value | no | When AnchoredPosition is AboveLine, the position of the anchored object is relative to the text area. Can be RightAlign, LeftAlign, CenterAlign, or TextAlign. Not valid when anchored position is InlinePosition. Can be |
|
|
1140
|
+
| Horizontal ReferencePoint | AnchoredRelative To_EnumValue | no | The horizontal reference point on the page. Valid only when AnchoredPosition is Anchored Position . |
|
|
1141
|
+
| LockPosition | boolean | no | If true, prevents manual positioning of the anchored object. |
|
|
1142
|
+
| PinPosition | boolean | no | If true, pins the position of the anchored object within the TextFrame top and bottom. |
|
|
1143
|
+
| SpineRelative | boolean | no | If true, the position of the anchored object is rel- ative to the binding spine of the page or spread. |
|
|
1144
|
+
| VerticalAlignment | Vertical Alignment_Enum Value | no | The vertical alignment of the anchored object reference point with the vertical reference point on the page. Can be TopAlign, BottomAlign, or CenterAlign . Valid only when Anchored Position is AnchoredPosition . |
|
|
1145
|
+
| Vertical ReferencePoint | Vertically RelativeTo_Enum Value | no | The vertical reference point on the page. Valid only when AnchoredPosition is Anchored Position . |
|
|
1146
|
+
|
|
1147
|
+
**IDML Example 56. Anchored TextFrame**
|
|
1148
|
+
|
|
1149
|
+
```xml
|
|
1150
|
+
<ParagraphStyleRange SpaceAfter="12"> <CharacterStyleRange> <Content>This is an example paragraph. We've inserted an inline TextFrame in the second paragraph.</Content> <br/> </CharacterStyleRange> </Paragraph Style Range> <ParagraphStyleRange SpaceAfter="12" Justification="Center Align"> <CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\k[No CharacterStyle]"> <TextFrame Self="u106" Parent Story="u109" Item Transform= "1 0 0 1 0 0"> <Properties> <PathGeometry> <GeometryPath Path Open="false"> <PathPointArray> <PathPointType Anchor="97.2685546875 225.5" Left Direction="97.2685546875 225.5" Right Direction="97.2685546875 225.5"/> <PathPointType Anchor="97.2685546875 202" Left Direction="97.2685546875 202" Right Direction="97.2685546875 202"/> <PathPointType Anchor="183.5 202" Left Direction="183.5 202" Right Direction="183.5 202"/> <PathPointType Anchor="183.5 225.5" Left Direction="183.5 225.5" Right Direction="183.5 225.5"/>
|
|
1151
|
+
</GeometryPath> </PathGeometry> </Properties> <AnchoredObjectSetting Self="u106Anchored Object Setting1" Anchored Position="Inline Position" Spine Relative="false" Lock Position="false" Pin Position="true" Anchor Point="Bottom Right Anchor" Horizontal Alignment="Left Align" Horizontal Reference Point= "TextFrame" Vertical Alignment="Top Align" Vertical Reference Point="Line Baseline" Anchor Xoffset="0" Anchor Yoffset="0" Anchor Space Above="0"/> </TextFrame> <br/> </CharacterStyleRange> </Paragraph Style Range> <ParagraphStyle Rangr SpaceAfter="12"> <CharacterStyleRange AppliedCharacterStyle= "CharacterStyle\k[No CharacterStyle]"> <Content>This is a paragraph following the inline TextFrame.</Content> </CharacterStyleRange> </Paragraph Style Range>
|
|
1152
|
+
```
|
|
1153
|
+
|
|
1154
|
+
Figure 40. Anchored TextFrame
|
|
1155
|
+
|
|
1156
|
+

|
|
1157
|
+
|
|
1158
|
+
## Anchored Graphics
|
|
1159
|
+
|
|
1160
|
+
Another type of anchored frame is a frame containing a graphic. These frames follow the same rules as anchored TextFrames, as discussed in the previous section.
|
|
1161
|
+
|
|
1162
|
+
**IDML Example 57. Anchored Graphic**
|
|
1163
|
+
|
|
1164
|
+
```xml
|
|
1165
|
+
<Story Self="uce"> <ParagraphStyleRange SpaceAfter="12"> <CharacterStyleRange> <Content>This is an example paragraph. We've ve inserted an anchored frame containing a graphic in the second paragraph.</Content> <Br/> </CharacterStyleRange> </Paragraph Style Range> <ParagraphStyleRange Justification="Center Align"> <CharacterStyleRange> <Rectangle Self="uec" Item Transform="1 0 0 1 0 0"><Properties> <PathGeometry> <GeometryPath Path Open="false"> <PathPointArray> <PathPointType Anchor="72 78.72" Left Direction="72 78.72" Right Direction="72 78.72"/> <PathPointType Anchor="72 78.72" Left Direction="72 78.72" Right Direction="72 78.72"/> <PathPointType Anchor="72 78.72" Left Direction="72 78.72" Right Direction="72 78.72"/> <PathPointType Anchor="72 78.72" Left Direction="72 78.72" Right Direction="72 78.72"/> </PathPointArray> </GeometryPath> </PathGeometry> </Properties> <Image Self="ue6" Space="$ID/#Links_RGB" Actual Ppi="300 300" Effective Ppi="300 300" Image Rendering Intent="Use Color Settings" Local Display Setting="Default" Image Type Name="$ID/JPEG" Item Transform="1 0 0 1 0 0"> <Properties> <Profile type="string">$ID/Embedded</Profile> <GraphicBounds Left="0" Top="0" Right="144" Bottom="157.44"/> </Properties> <Link Self="ueb" Asset URL="$ID/" Asset ID="$ID/" Link Resource URI="file://ruri/documents/IDML/assets/pumpkin.jpg" Link Resource Format="$ID/JPEG" Stored State="Normal" Link Class ID="35906" Link Client ID="257" Link Resource Modified="false" Link Object Modified="false" Show In UI="true" Can Embed="true" Can Unembed="true" Can Package="true" Import Policy="No Auto Import" Export Policy="No Auto Export" Link Import Stamp="file 128385019586602016 396019" Link Import Modification Time="20071102T11:32:38" Link Import Time="20080614T15:12:33"/> </Image> </Rectangle> <Br/> </CharacterStyleRange> </Paragraph Style Range> <ParagraphStyleRange> <CharacterStyleRange> <Content>This is a paragraph following the anchored frame.</Content> </CharacterStyleRange> </Paragraph Style Range> </Story>
|
|
1166
|
+
```
|
|
1167
|
+
|
|
1168
|
+
The graphic iteself is not embedded in the <Story> element. Instead, the <Link> element stored in the <Image> element refers to a graphic file on disk.
|
|
1169
|
+
|
|
1170
|
+
## Hyperlink Text Sources
|
|
1171
|
+
|
|
1172
|
+
Hyperlink text sources differ from other inline elements as they appear as child elements of a <CharacterStyleRange>, and contain a <Content> element. Other inline elements appear as siblings of the <Content> element of the <CharacterStyleRange> .
|
|
1173
|
+
|
|
1174
|
+
**Schema Example 88. Hyperlink Text Source**
|
|
1175
|
+
|
|
1176
|
+
```
|
|
1177
|
+
HyperlinkTextSource_Object = element HyperlinkTextSource { attribute Self { xsd:string }, attribute Name { xsd:string }?, attribute Hidden { xsd:boolean }?, attribute AppliedCharacterStyle { xsd:string }?, element Properties { element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ?, ( GaijiOwnedItemObject_Object*& Note_Object*& Table_Object*& TextVariableInstance_Object*& Footnote_Object*& HyperlinkTextDestination_Object*& Change_Object*& HiddenText_Object*& XMLElement_Object*& XMLInstruction_Object*& XMLComment_Object*& ParagraphStyleRange_Object*& CharacterStyleRange_Object*& element Content {text}*&
|
|
1178
|
+
```
|
|
1179
|
+
|
|
1180
|
+
Figure 41. Inline Graphic
|
|
1181
|
+
|
|
1182
|
+

|
|
1183
|
+
|
|
1184
|
+
```
|
|
1185
|
+
element Br {empty}* ) }
|
|
1186
|
+
```
|
|
1187
|
+
|
|
1188
|
+
Table 115. Hyperlink Text Source Properties Represented as Attributes
|
|
1189
|
+
|
|
1190
|
+
| Name | Type | Req | Description |
|
|
1191
|
+
| ------------------------- | --------- | ------- | ----------------------------------------------- |
|
|
1192
|
+
| AppliedCharacterStyle | string | no | CharacterStyle of the hyperlink text source. |
|
|
1193
|
+
| Hidden | boolean | no | If true, the HyperlinkTextSource is hidden. |
|
|
1194
|
+
| Name | string | no | The name of the HyperlinkTextSource. |
|
|
1195
|
+
|
|
1196
|
+
**IDML Example 58. Hyperlink Text Source**
|
|
1197
|
+
|
|
1198
|
+
```xml
|
|
1199
|
+
<ParagraphStyleRange AppliedParagraphStyle="Paragraph Style\k Normal Paragraph Style" SpaceAfter="12"> <CharacterStyleRange> <Content>This is an example paragraph. We've inserted a URL hyperlink in the second paragraph.</Content> <br/> </CharacterStyleRange> <CharacterStyleRange> <HyperlinkTextSource Self="u12b" Name="Hyperlink_1" Hidden="false"> <Content>http://www.adobe.com</Content> </HyperlinkTextSource> </CharacterStyleRange> </Paragraph Style Range>
|
|
1200
|
+
```
|
|
1201
|
+
|
|
1202
|
+
Figure 42. Hyperlink
|
|
1203
|
+
|
|
1204
|
+

|
|
1205
|
+
|
|
1206
|
+
## HyperlinkTextDestination
|
|
1207
|
+
|
|
1208
|
+
A hyperlink text destinations is one of the possible 'targets' of a hyperlink.
|
|
1209
|
+
|
|
1210
|
+
**Schema Example 89. HyperlinkTextDestination**
|
|
1211
|
+
|
|
1212
|
+
```
|
|
1213
|
+
HyperlinkTextDestination_Object = element HyperlinkTextDestination { attribute Self { xsd:string }, attribute Name { xsd:string }, attribute Hidden { xsd:boolean }?, attribute DestinationUniqueKey { xsd:int }?, element Properties { element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ? }
|
|
1214
|
+
```
|
|
1215
|
+
|
|
1216
|
+
Table 116. Hyperlink Text Destination Properties Represented as Attributes
|
|
1217
|
+
|
|
1218
|
+
| Name | Type | Req | Description |
|
|
1219
|
+
| ------------------------ | --------- | ------- | ----------------------------------------------------------------------------------------------- |
|
|
1220
|
+
| Destination UniqueKey | int | no | Aunique identifier for the hyperlink text destination. |
|
|
1221
|
+
| Hidden | boolean | no | If true, the hyperlink text destination is hidden. |
|
|
1222
|
+
| Name | string | yes | The name of the hyperlink text destination. The name must be unique within the IDML document. |
|
|
1223
|
+
|
|
1224
|
+
**IDML Example 59. HyperlinkTextDestination**
|
|
1225
|
+
|
|
1226
|
+
```xml
|
|
1227
|
+
<Story Self="uc8"> <ParagraphStyleRange AppliedParagraphStyle= "ParagraphStyle/$ID/NormalParagraphStyle"> <CharacterStyleRange AppliedCharacterStyle= "CharacterStyle/$ID/[No CharacterStyle]"> <Content>This is a </Content> <HyperlinkTextDestination Self="ue5" Name="hyperlink text destination" Hidden="false" DestinationUniqueKey="1"/> <HyperlinkTextSource Self="u104" Name="Hyperlink 1" Hidden="false" AppliedCharacterStyle="n"> <Content>hyperlink text destination</Content> </HyperlinkTextSource> <Content>.</Content> <Br/> </CharacterStyleRange> </ParagraphStyleRange> </Story>
|
|
1228
|
+
```
|
|
1229
|
+
|
|
1230
|
+
Figure 43. HyperlinkTextDestination
|
|
1231
|
+
|
|
1232
|
+

|
|
1233
|
+
|
|
1234
|
+
## Cross Reference Sources
|
|
1235
|
+
|
|
1236
|
+
A <CrossReferenceSource> is the source for a cross reference hyperlink.
|
|
1237
|
+
|
|
1238
|
+
**Schema Example 90. CrossReferenceSource**
|
|
1239
|
+
|
|
1240
|
+
```
|
|
1241
|
+
CrossReferenceSource_Object = element CrossReferenceSource { attribute Self { xsd:string }, attribute AppliedFormat { xsd:string }, attribute Name { xsd:string }?, attribute Hidden { xsd:boolean }?, attribute AppliedCharacterStyle { xsd:string }?, element Properties { element Label { element KeyValuePair { KeyValuePair_TypeDef }* }? } ?, ( GaijiOwnedItemObject_Object*& TextVariableInstance_Object*& HyperlinkTextDestination_Object*& Change_Object*& HiddenText_Object*& XMLElement_Object*& XMLInstruction_Object1*& XMLComment_Object*& ParagraphStyleRange_Object*& CharacterStyleRange_Object* ) }
|
|
1242
|
+
```
|
|
1243
|
+
|
|
1244
|
+
Table 117. CrossReferenceSource Properties Represented as Attributes
|
|
1245
|
+
|
|
1246
|
+
| Name | Type | Req | Description |
|
|
1247
|
+
| ------------------------- | --------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
1248
|
+
| AppliedCharacterStyle | string | no | CharacterStyle of the cross reference source. |
|
|
1249
|
+
| AppliedFormat | string | yes | String specifying the format for the cross refer- ence. This attribute corresponds to the defini- tions found in the Cross Reference Formats dialog box in InDesign. You can enter any text, use built-in format tags, use InDesign metacha- racters, or freely mix the three. The built-in format tags are shown in the following table. The metacharacters are shown in the second table below. For more on using applied formats in cross references, refer to the InDesign docu- mentation. |
|
|
1250
|
+
| Hidden | boolean | no | If true, the cross reference source is hidden. |
|
|
1251
|
+
| Name | string | no | The name of the cross reference source. |
|
|
1252
|
+
|
|
1253
|
+
Table 118. AppliedFormat Tags
|
|
1254
|
+
|
|
1255
|
+
| Tag | Description |
|
|
1256
|
+
| --------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
1257
|
+
| <pageNum/> | The number of the page containing the cross reference source. |
|
|
1258
|
+
| <paraNum/> | The number of the paragraph containing the cross reference source (if the para- graph is a numbered paragraph). |
|
|
1259
|
+
| <paraText/> | The text of the paragraph, excluding the return character. |
|
|
1260
|
+
| <fullPara/> | The text of the paragraph, including the return character. |
|
|
1261
|
+
| <fullPara delim="" include Delim="false"/> | The text from the beginning of the paragraph to the specified delimiter. If you do not enter a delimiter character and change the Delim value to true, this tag will include the full text of the paragraph, including the return character. |
|
|
1262
|
+
| <txtAnchrName/> | The name of the text anchor. |
|
|
1263
|
+
| <chapNum/> | The number of the chapter. |
|
|
1264
|
+
| <fileName/> | The name of the file. |
|
|
1265
|
+
| <cs name=""></cs> | The name of the CharacterStyle applied to the cross reference source. |
|
|
1266
|
+
|
|
1267
|
+
**Table 119**: Metacharacters
|
|
1268
|
+
|
|
1269
|
+
| Tag | Description | Tag | Description |
|
|
1270
|
+
| --------- | -------------------- | ------- | -------------------------------- |
|
|
1271
|
+
| ^_ | Emdash | ^s | Fixed width non-breaking space |
|
|
1272
|
+
| ^ | En dash | ^~ | Non-breaking hypehn |
|
|
1273
|
+
| ^m | Emspace | ^{ | Double left quotation mark |
|
|
1274
|
+
| ^n | En space | ^} | Double right quotation mark |
|
|
1275
|
+
| ^| | Hair space | ^[ | Single left quotation mark |
|
|
1276
|
+
| ^% | Sixth space | ^] | Single right quotation mark |
|
|
1277
|
+
| ^< | Thin space (^<) | ^8 | Bullet character |
|
|
1278
|
+
| ^4 | Quarter space | ^7 | Paragraph symbol |
|
|
1279
|
+
| ^3 | Third space | ^6 | Section symbol |
|
|
1280
|
+
| ^. | Punctucation space | ^t | Tab character |
|
|
1281
|
+
| ^/ | Figure space | ^n | Forced line break character |
|
|
1282
|
+
| ^f | Flush space | ^h | End nested style character |
|
|
1283
|
+
| ^S | Non-breaking space | ^j | Non-joiner character |
|
|
1284
|
+
|
|
1285
|
+
**IDML Example 60. CrossReferenceSource**
|
|
1286
|
+
|
|
1287
|
+
```xml
|
|
1288
|
+
<CrossReferenceSource Self="u464" AppliedFormat="ud8" Name="Hyperlink 1" Hidden="false" AppliedCharacterStyle="n">
|
|
1289
|
+
<CharacterStyleRange AppliedCharacterStyle="CharacterStyle/Hyperlink">
|
|
1290
|
+
<Content>See 'Text Variable' on page </Content>
|
|
1291
|
+
</CharacterStyleRange>
|
|
1292
|
+
<CharacterStyleRange AppliedCharacterStyle="CharacterStyle/Hyperlink" PageNumberType="TextVariable">
|
|
1293
|
+
<TextVariableInstance Self="u482" Name="&lt;?AID 001b?&gt;TV XRefPageNumber" ResultText="1" AssociatedTextVariable="dTextVariablen&lt;?AID 001b?&gt;TV XRefPageNumber"/>
|
|
1294
|
+
</CharacterStyleRange>
|
|
1295
|
+
<CharacterStyleRange AppliedCharacterStyle="CharacterStyle/Hyperlink">
|
|
1296
|
+
<Content> for an example.</Content>
|
|
1297
|
+
</CharacterStyleRange>
|
|
1298
|
+
</CrossReferenceSource>
|
|
1299
|
+
```
|