Search found 501 matches

by Dan
Thu Mar 28, 2019 1:45 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Mathml in CSS based PDF output
Replies: 7
Views: 2545

Re: Mathml in CSS based PDF output

Are the mathML equations inline or are stored as separate files?
by Dan
Thu Mar 28, 2019 12:47 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Mathml in CSS based PDF output
Replies: 7
Views: 2545

Re: Mathml in CSS based PDF output

We will try to find a fix. Can you let us know what font do you want to use for the equations?

Many regards,
Dan
by Dan
Thu Mar 28, 2019 9:18 am
Forum: Common Problems
Topic: Positioning of content in footer in vertical alignment
Replies: 6
Views: 3087

Re: Positioning of content in footer in vertical alignment

Hello, Please note that the page margin boxes do not have margins. You can try to use padding to obtain a similar effect: @page{ @bottom-center{ padding:1em; /* or: */ vertical-align:bottom; } } If you need to style the page margin boxes with some colors/graphics, you may consider creating an SVG as...
by Dan
Fri Mar 22, 2019 1:26 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Tables with split rows have extra padding in the second row
Replies: 1
Views: 1118

Re: Tables with split rows have extra padding in the second row

Hello, What scenario are you using? The one based on HTML? I tested with: *[class ~= 'topic/entry'] { padding-top:0.5em; padding-bottom:0.25em; color:green; } and I see that the text is aligned correctly on the baseline of the table row. I recommend to try a transformation without a CSS customizatio...
by Dan
Wed Mar 20, 2019 4:22 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Named pages for Appendix and Glossary
Replies: 4
Views: 1733

Re: Named pages for Appendix and Glossary

Make sure you set a navtitle on your appendix in the DITA map: <appendix navtitle="The appendix title that shows in the TOC and content."> <topicref href="first.dita"/> <topicref href="second.dita"/> <topicref href="third.dita"/> </appendix> Many regards, Dan
by Dan
Tue Mar 19, 2019 4:19 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Named pages for Appendix and Glossary
Replies: 4
Views: 1733

Re: Named pages for Appendix and Glossary

Is it the PDF CSS based on HTML transformation?

Regards,
Dan
by Dan
Tue Mar 19, 2019 4:17 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: How to customize appendix titles
Replies: 4
Views: 2035

Re: How to customize appendix titles

Hello, There are some counters that are managed already by the builtin CSS: toc-section1, section1. You can use them like this: @namespace oxy "http://www.oxygenxml.com/extensions/author"; /* TOC */ /* * Start with a cleanup: remove all befores for all topicrefs in the appendix, no matter ...
by Dan
Tue Mar 19, 2019 3:34 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: How to leverage the rev attribute to put change bars in the output
Replies: 7
Views: 3459

Re: How to leverage the rev attribute to put change bars in the output

Hello,

Chemistry does not support PDF change bars - yet.

Can you post a screenshot with what you want to obtain? Maybe we can help.

Many regards,
Dan
by Dan
Tue Mar 19, 2019 3:32 pm
Forum: Common Problems
Topic: Cannot render the ⌥ symbol
Replies: 5
Views: 3565

Re: Cannot render the ⌥ symbol

Hello,

Please try:

Code: Select all


*[class ~= "ui-d/uicontrol"], .uicontrol {
font-family: "Cambria Math", Symbol;
}
Many regards,
Dan
by Dan
Tue Mar 19, 2019 3:21 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Formatting for Index
Replies: 4
Views: 1685

Re: Formatting for Index

If you are using the PDF CSS based on HTML, in the output folder you will find a HTML file representing the merged map. You can open it in a browser (Chrome for instance) and use the browser development tools to inspect the elements and styles. Please read: https://www.oxygenxml.com/doc/versions/21....
by Dan
Tue Mar 19, 2019 3:15 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: DITA map PDF – based on HTML5 & CSS transformation
Replies: 14
Views: 5337

Re: DITA map PDF – based on HTML5 & CSS transformation

Ok, I see now you are using the HTML5 based transformation. The fix I gave earlier is for the direct transformation, where the CSS is applied on the merged map. As a workaround, you can hide the "Note: " label: *[class ~= "glossentry/glossUsage"] > .note__title { display: none; }...
by Dan
Mon Mar 18, 2019 3:26 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: DITA map PDF – based on HTML5 & CSS transformation
Replies: 14
Views: 5337

Re: DITA map PDF – based on HTML5 & CSS transformation

Hello, Thank you for the feedback! Indeed, this is a bug. The "glossary" CSS selectors in the -i18n.css should be after the "note" ones. We will fix this in the new version. As a workaround, copy the selector in your customization CSS: *[class ~= "glossentry/glossUsage"...
by Dan
Mon Mar 18, 2019 3:01 pm
Forum: Common Problems
Topic: Border has unneccesaty padding
Replies: 4
Views: 2726

Re: Border has unneccesaty padding

Hello, This thread is about the CSS PDF customization (oXygen Specific), not about the standard transformation provided by the PDF2 DITA-OT plugin. If you have problems with the PDF2 plugin you can: - request details on the DITA users list: https://groups.google.com/forum/#!forum/dita-ot-users - fil...
by Dan
Fri Mar 15, 2019 12:21 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: extra margins by empty elements
Replies: 3
Views: 1416

Re: extra margins by empty elements

Hello, Yes, this is a bug, i will record it. The IDs are generating anchor elements that separate the adjacent margins of the siblings. For instance, the empty context element will generate an inline that inhibits the automatic collapse of the margins of the prereq (the element before) and steps (th...
by Dan
Wed Mar 06, 2019 5:08 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Overflow Wrap in Tables Overriding Hyphenation Rules
Replies: 16
Views: 6863

Re: Overflow Wrap in Tables Overriding Hyphenation Rules

Hello, Thank you for the examples. First, make sure you remove the quotes from the hyphenation properties: -oxy-hyphenation-push-character-count: 6 !important; /* Minimum 3 characters pushed to next line */ -oxy-hyphenation-remain-character-count: 2 !important; /* Minimum 4 characters remain on prev...
by Dan
Tue Mar 05, 2019 4:50 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Figures in steps and substeps
Replies: 1
Views: 879

Re: Figures in steps and substeps

Do you mean a background image for the task? Set an outputclass on the tasks you want to have that background and write a CSS rule to match it and set the background to the element. Another way would be to have a special page and associate it to the tasks class. Read about page backgrounds here: htt...
by Dan
Tue Mar 05, 2019 4:16 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Overflow Wrap in Tables Overriding Hyphenation Rules
Replies: 16
Views: 6863

Re: Overflow Wrap in Tables Overriding Hyphenation Rules

Can you send us to support some sample API words that are not hyphenated?

Many regards,
Dan
by Dan
Fri Mar 01, 2019 3:59 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Overflow Wrap in Tables Overriding Hyphenation Rules
Replies: 16
Views: 6863

Re: Overflow Wrap in Tables Overriding Hyphenation Rules

I verified the current implementation (from oXygen 21) and it does hyphenation at the case change. Do you use oXygen 20.1? If running with oXygen 21 and you still have problems, please send us using the transformation console log: https://www.oxygenxml.com/techSupport.html You can also download and ...
by Dan
Fri Mar 01, 2019 1:52 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Overflow Wrap in Tables Overriding Hyphenation Rules
Replies: 16
Views: 6863

Re: Overflow Wrap in Tables Overriding Hyphenation Rules

Hello,

Ok. We will send you a download link when we will have the fix ready.

Many regards,
Dan
by Dan
Thu Feb 28, 2019 4:47 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: PDF - CSS (DITA) Transform Creates a Duplicate Blank First Page
Replies: 3
Views: 1741

Re: PDF - CSS (DITA) Transform Creates a Duplicate Blank First Page

I think you can safely remove them from your customization.

Many regards,
Dan
by Dan
Thu Feb 28, 2019 12:08 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Overflow Wrap in Tables Overriding Hyphenation Rules
Replies: 16
Views: 6863

Re: Overflow Wrap in Tables Overriding Hyphenation Rules

Another idea: If your API names are wrapped in an element, like a codeph, you can set overflow-wrap: break-word; on this element, and leave the parent table with the hyphenation settings.

Many regards,
Dan
by Dan
Thu Feb 28, 2019 12:02 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Overflow Wrap in Tables Overriding Hyphenation Rules
Replies: 16
Views: 6863

Re: Overflow Wrap in Tables Overriding Hyphenation Rules

The problem is that we implemented overflow wrap using hyphenation. Anyway, is not a good idea to mix both of them, as there is no priority defined in the standard. Your situation is like this: - Some of the table cells contain API names, that are long, without dashes or underscores, but having a ca...
by Dan
Tue Feb 26, 2019 1:19 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Differences in PDF Output Between 20.1 and 21.0
Replies: 2
Views: 1279

Re: Differences in PDF Output Between 20.1 and 21.0

Hello Carl, Starting with version 21.0 the DITA publishing respects the DITA specification for the bookmaps. A bookmap will have the frontmatter and backmatter shown in the table of contents, bookmarks tree, etc.. To avoid the frontmatter and backmatter topics being listed in the TOC, you need to se...
by Dan
Fri Dec 28, 2018 10:29 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: Glossary term referenced with <abbreviated-form> not appearing in PDF
Replies: 7
Views: 4277

Re: Glossary term referenced with <abbreviated-form> not appearing in PDF

Please open a new post for the WebHelp problems.
Thank you,
Dan
by Dan
Thu Dec 27, 2018 12:46 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Glossary term referenced with <abbreviated-form> not appearing in PDF
Replies: 7
Views: 4277

Re: Glossary term referenced with <abbreviated-form> not appearing in PDF

Hello Rick, This is a known issue that we already solved on the development branch. If you want to beta-test it, we have a nightly build that packages a DITA-OT with our publishing plugins available here: https://mirror.oxygenxml.com/maven-nightly/com/oxygenxml/oxygen-publishing-engine-2.x/21.0-SNAP...
by Dan
Tue Dec 04, 2018 3:13 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Footer on last page pdf with CSS
Replies: 2
Views: 4115

Re: Footer on last page pdf with CSS

Hello Benny, Please try the following: First approach (using position:fixed) 1. Group all the footer topics under a single parent topic, under the last topic from your map. For example you can have: ... End topic Footer parent topic Footer content topic 1 Footer content topic 2. 2. Put an outputclas...
by Dan
Tue Dec 04, 2018 1:02 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: CSS-Based PDF, change language of "Note", "Warning", "Caution" etc
Replies: 6
Views: 3291

Re: CSS-Based PDF, change language of "Note", "Warning", "Caution" etc

Hello, Can you give us more details? - the language you are using - what scenario are you using, the one named "DITA Map PDF - based on HTML5 & CSS", or "DITA Map PDF - based on DITA & CSS (WYSIWYG) "? The first one uses the i18n support provided by DITA-OT, and has a goo...
by Dan
Thu Nov 29, 2018 1:24 pm
Forum: Common Problems
Topic: Numbering problems
Replies: 12
Views: 7427

Re: Numbering problems

The layout engine figures out how many dots are entering in the leader that links the text to the numbers. The text width of the titles seem to vary a bit and sometimes the dot does not fit. Unfortunately there is no setting to control that..

All the best,
Dan
by Dan
Thu Nov 29, 2018 12:19 pm
Forum: Common Problems
Topic: Numbering problems
Replies: 12
Views: 7427

Re: Numbering problems

To reset the page on the first chapter, please add this to the customization CSS: *[class ~= "map/map"] > *[class ~= "placeholder/toc"] + *[class ~= "topic/topic"][is-chapter]:not([is-part]) { counter-reset: page section1; } So it will reset both the page and the sectio...