Hello,
I have logged an issue in our tracking system, I will let you know as soon as a fix will be available.
At the moment, the only solution is to split the equation in multiple blocks using <equation-block> elements.
Regards,
Julien
Search found 165 matches
- Fri Sep 25, 2020 12:51 pm
- Forum: General XML Questions
- Topic: MathML: How to insert line breaks?
- Replies: 11
- Views: 5700
- Wed Sep 23, 2020 9:21 am
- Forum: Common Problems
- Topic: How to debug the CSS?
- Replies: 1
- Views: 193
Re: How to debug the CSS?
Hello, There are 2 different DITA to PDF transformations: DITA Map PDF - based on HTML5 & CSS DITA Map PDF - based on XSL-FO The first one produces a merged.html and merged.xml file and can be debugged using the browser. The second transformation which uses XSL-FO and cannot be debugged inside the w...
- Thu Aug 27, 2020 12:39 pm
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: Add image (company logo) in header section, while creating custom.css
- Replies: 5
- Views: 1561
Re: Add image (company logo) in header section, while creating custom.css
Hello,
Could you indicate which default size is logo.png? It is available in its properties.
You can also check in the documentation how to set a background image.
We will try to reproduce it on our side.
Regards,
Julien
Could you indicate which default size is logo.png? It is available in its properties.
You can also check in the documentation how to set a background image.
We will try to reproduce it on our side.
Regards,
Julien
- Mon Aug 17, 2020 11:06 am
- Forum: Common Problems
- Topic: Applying fill color to SVG doesn't work
- Replies: 10
- Views: 2171
Re: Applying fill color to SVG doesn't work
Hello, No problem, please verify in your transformation that the parameter 'use.css.for.embedded.svg' is set to 'yes'. Is it possible for you to provide a small sample containing the SVG file and a part of the CSS customization? We will analyze why you css does not apply on the SVG file. You can pro...
- Fri Aug 14, 2020 12:41 pm
- Forum: Common Problems
- Topic: How to prevent line breaks with "codeblock"?
- Replies: 3
- Views: 395
Re: How to prevent line breaks with "codeblock"?
Hello,
You should be able to do the trick by using the following CSS selector:
Regards,
Julien
You should be able to do the trick by using the following CSS selector:
Code: Select all
*[class~='pr-d/codeblock'] {
page-break-inside:avoid;
}
Julien
- Thu Aug 06, 2020 5:51 pm
- Forum: Common Problems
- Topic: DITA-OT HTML5 processing in PDF Chemistry
- Replies: 6
- Views: 1304
Re: DITA-OT HTML5 processing in PDF Chemistry
Hello Chris, In fact the PDF Chemistry transformation is based on the PDF XSL-FO transformation but uses stylesheets from the HTML5 DITA-OT plugin during the pre-process. You can see this workflow inside the DITA-OT-DIR/plugins/com.oxygenxml.pdf.css/build.xml file. The directory structure is specifi...
- Mon Jul 20, 2020 4:02 pm
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: Want chapter numbering to continue through bibliolist and glossary
- Replies: 7
- Views: 881
Re: Want chapter numbering to continue through bibliolist and glossary
Hello,
Could you please send us the CSS customization and the bookmap (at least the ditamap file with the bibliolist and the glossarylist) at support@oxygenxml.com
Could you also indicate which version of Oxygen you are currently using?
Regards,
Julien
Could you please send us the CSS customization and the bookmap (at least the ditamap file with the bibliolist and the glossarylist) at support@oxygenxml.com
Could you also indicate which version of Oxygen you are currently using?
Regards,
Julien
- Fri Jul 17, 2020 9:58 am
- Forum: Feature Request
- Topic: Any plans to make FOP 2.5 the installed version?
- Replies: 1
- Views: 383
Re: Any plans to make FOP 2.5 the installed version?
Hello Simcha,
We planned to integrate Apache FOP 2.5 in Oxygen next release (23.0 planned for November 2020).
Regards,
Julien
We planned to integrate Apache FOP 2.5 in Oxygen next release (23.0 planned for November 2020).
Regards,
Julien
- Fri Jul 17, 2020 9:52 am
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: CSS-PDF: Borders around notes are too big
- Replies: 1
- Views: 316
Re: CSS-PDF: Borders around notes are too big
Hello, You will need to use a publishing template instead of a simple CSS customization (if you were using only 'args.css' in your transformation). All the information about Publishing Templates can be found in the documentation (check also all the sub-topics). Then you need to to the following step...
- Thu Jul 16, 2020 11:49 am
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: Want chapter numbering to continue through bibliolist and glossary
- Replies: 7
- Views: 881
Re: Want chapter numbering to continue through bibliolist and glossary
Hello, I tried on my side with Oxygen Editor 22.1 and I did not reproduce the problem, the default transformation does not reset the page counter inside my PDF. Please check inside your CSS customization there is no additional "counter-reset: page" on another element which also matches the bibliolis...
- Thu Jul 16, 2020 10:08 am
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: Need to change font in the TOC Title
- Replies: 2
- Views: 348
Re: Need to change font in the TOC Title
Hello,
The correct selector is the following one:
Also you need to check that the font is installed on your machine or imported in your CSS stylesheet.
For more details about Fonts, please check the documentation.
Regards,
Julien
The correct selector is the following one:
Code: Select all
*[class~="toc/title"] {
font-family: 'Literata', serif;
}
For more details about Fonts, please check the documentation.
Regards,
Julien
- Mon Jul 13, 2020 2:49 pm
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: CSS-PDF: Sizing images inside a table
- Replies: 4
- Views: 588
Re: CSS-PDF: Sizing images inside a table
Hello,
I'm sorry it seems there is a problem as you indicated.
I logged an issue on our tracking system and I'll get back to you as soon as a fix will be available.
Regards,
Julien
I'm sorry it seems there is a problem as you indicated.
I logged an issue on our tracking system and I'll get back to you as soon as a fix will be available.
Regards,
Julien
- Thu Jul 09, 2020 9:30 am
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: CSS-PDF: Sizing images inside a table
- Replies: 4
- Views: 588
Re: CSS-PDF: Sizing images inside a table
Hello, The following rule cannot apply on either PDF or WebHelp output *[class ~= "table/image"] { max-width: 1.5in; } As this class attribute value does not exist in DITA. Instead, if you change the rule to *[class ~= "topic/image"] { max-width: 1.5in; } You images should fit inside the table. Rega...
- Tue Jul 07, 2020 1:13 pm
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: Want chapter numbering to continue through bibliolist and glossary
- Replies: 7
- Views: 881
Re: Want chapter numbering to continue through bibliolist and glossary
Hello,
Indeed there is a reset on the page counter at the beginning of the backmatter.
You can change this behavior by following this How To.
Regards,
Julien
Indeed there is a reset on the page counter at the beginning of the backmatter.
You can change this behavior by following this How To.
Regards,
Julien
- Mon Jul 06, 2020 10:05 am
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: Custom transformation parameters for css (background image for the title page)
- Replies: 5
- Views: 704
Re: Custom transformation parameters for css
Hello, It is possible to control the first parameter by using a second custom parameter, for example "args.css.param.use-cover" with value "yes". Then in the CSS, using the following selectors: :root[use-cover='yes'] *[class~='front-page/front-page'] { page: custom-front-page; } @page custom-front-p...
- Fri Jul 03, 2020 10:58 am
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: Custom transformation parameters for css (background image for the title page)
- Replies: 5
- Views: 704
Re: Custom transformation parameters for css
Hello, The best thing to do is to use a custom parameter: In the transformation scenario dialog, create a new parameter called for example "args.css.param.cover-page" and set its value to the image path (for example: "../img/title.png") In your CSS file use the following selector @page front-page { ...
- Wed Jul 01, 2020 1:09 pm
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: PDF Output Issue
- Replies: 1
- Views: 391
Re: PDF Output Issue
Hello, There is no way to repeat the column 1 data on subsequent pages. Normally the default behavior is to not display the bottom border when the table spans on multiple pages. This shows the reader that the row isn't finished yet. You can also customize the output using the following property: *[c...
- Wed Jun 10, 2020 3:32 pm
- Forum: Common Problems
- Topic: Forcing page breaks before a topic
- Replies: 3
- Views: 454
Re: Forcing page breaks before a topic
Hello, Unfortunately we cannot reproduce the problem on the last version of Oxygen. Could you let us know which version you are currently using? Are you using a CSS customization in the transformation (args.css or publishing template)? Can you send us the CSS customization (if you use one) and a sma...
- Wed Jun 10, 2020 10:46 am
- Forum: Common Problems
- Topic: Font issues in Mac vs. Linux installations of Oxygen
- Replies: 2
- Views: 419
Re: Font issues in Mac vs. Linux installations of Oxygen
Hello, You can debug the .merged.html file generated during the transformation and see for the incorrect fonts which one is used (using the browser inspector). Normally the Chemistry processor uses some fallback fonts in case a font is missing in the platform (and when the font-family is set on seri...
- Wed Jun 10, 2020 10:35 am
- Forum: Common Problems
- Topic: Forcing page breaks before a topic
- Replies: 3
- Views: 454
Re: Forcing page breaks before a topic
Hello,
We are currently analyzing the problem and we will get back to you as soon as a solution will be available.
Regards,
Julien
We are currently analyzing the problem and we will get back to you as soon as a solution will be available.
Regards,
Julien
- Mon May 25, 2020 9:08 am
- Forum: General XML Questions
- Topic: Step number not aligning with step when using inline graphics
- Replies: 0
- Views: 452
Re: Step number not aligning with step when using inline graphics
Hello,
Could you indicate which transformation you are using to reproduce this issue?
Also on which version of Oxygen you are trying to obtain the PDF?
Regards,
Julien
Could you indicate which transformation you are using to reproduce this issue?
Also on which version of Oxygen you are trying to obtain the PDF?
Regards,
Julien
- Thu May 21, 2020 1:16 pm
- Forum: Common Problems
- Topic: Numbering single step procedures in task
- Replies: 5
- Views: 1232
Re: Numbering single step procedures in task
Hello,
Starting with Oxygen 22.1 you can use the @class attribute on <section> elements to identify if the single step is caming from ordered or unordered list.
Regards,
Julien
Starting with Oxygen 22.1 you can use the @class attribute on <section> elements to identify if the single step is caming from ordered or unordered list.
Regards,
Julien
- Thu May 21, 2020 1:12 pm
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: Changes to CSS styling of figcaption elements (WebHelp)
- Replies: 2
- Views: 576
Re: Changes to CSS styling of figcaption elements (WebHelp)
Hello,
The colon sign issue is now fixed in Oxygen 22.1.
Regards,
Julien
The colon sign issue is now fixed in Oxygen 22.1.
Regards,
Julien
- Thu May 21, 2020 12:56 pm
- Forum: DITA (Editing and Publishing DITA Content)
- Topic: Table Text smaller than other text
- Replies: 7
- Views: 2150
Re: Table Text smaller than other text
Hello,
Starting with Oxygen 22.1 the lists padding is consistent with browsers list padding.
Regards,
Julien
Starting with Oxygen 22.1 the lists padding is consistent with browsers list padding.
Regards,
Julien
- Thu May 21, 2020 12:55 pm
- Forum: Common Problems
- Topic: Tables border distort in pdf output
- Replies: 11
- Views: 3345
Re: Tables border distort in pdf output
Hello,
Oxygen 22.1 is now available, inside there is the fix for the table border problem.
Regards,
Julien
Oxygen 22.1 is now available, inside there is the fix for the table border problem.
Regards,
Julien
- Thu May 21, 2020 12:36 pm
- Forum: Feature Request
- Topic: Suppress overlapping change bars in descendants
- Replies: 2
- Views: 1328
Re: Suppress overlapping change bars in descendants
Hello Chris,
This issue is now resolved on the new Oxygen 22.1 version.
Regards,
Julien
This issue is now resolved on the new Oxygen 22.1 version.
Regards,
Julien
- Thu May 21, 2020 12:30 pm
- Forum: Common Problems
- Topic: Applying fill color to SVG doesn't work
- Replies: 10
- Views: 2171
Re: Applying fill color to SVG doesn't work
Hello,
Starting with version 22.1 (already available on our website), you can style embedded SVG files directly from CSS.
Regards,
Julien
Starting with version 22.1 (already available on our website), you can style embedded SVG files directly from CSS.
Regards,
Julien
- Thu May 21, 2020 12:11 pm
- Forum: Common Problems
- Topic: Centre tables on a page
- Replies: 4
- Views: 912
Re: Centre tables on a page
Hello Duncan,
Starting with Oxygen 22.1, you can center tables inside a page.
For more informations, please check the documentation.
Regards,
Julien
Starting with Oxygen 22.1, you can center tables inside a page.
For more informations, please check the documentation.
Regards,
Julien
- Thu May 21, 2020 11:34 am
- Forum: Common Problems
- Topic: Table continuation headers
- Replies: 13
- Views: 3229
Re: Table continuation headers
Hello,
Starting with Oxygen 22.1, when running DITA Map PDF - based on HTML5 & CSS any table spanning on multiple pages will have its repeated table captions displayed with "(continued)".
Regards,
Julien
Starting with Oxygen 22.1, when running DITA Map PDF - based on HTML5 & CSS any table spanning on multiple pages will have its repeated table captions displayed with "(continued)".
Regards,
Julien
- Wed May 06, 2020 2:48 pm
- Forum: Common Problems
- Topic: page counter reset issue
- Replies: 20
- Views: 3376
Re: page counter reset issue
Hello, Normally the first rule should be used and it should reset the figure number to 1 each time: *[class ~= "map/map"][p|numbering^='deep-chapter-scope-no-page-reset'] *[class ~= "topic/topic"][is-chapter]{ counter-reset: tablecount figcount page 1 !important; } Could you precise which version of...