Search found 521 matches

by julien_lacour
Fri Aug 14, 2020 12:41 pm
Forum: Common Problems
Topic: How to prevent line breaks with "codeblock"?
Replies: 3
Views: 1458

Re: How to prevent line breaks with "codeblock"?

Hello,

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;
}
Regards,
Julien
by julien_lacour
Thu Aug 06, 2020 5:51 pm
Forum: Common Problems
Topic: DITA-OT HTML5 processing in PDF Chemistry
Replies: 6
Views: 4264

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...
by julien_lacour
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: 2408

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
by julien_lacour
Fri Jul 17, 2020 9:58 am
Forum: Feature Request
Topic: Any plans to make FOP 2.5 the installed version?
Replies: 1
Views: 1106

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
by julien_lacour
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: 908

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...
by julien_lacour
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: 2408

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...
by julien_lacour
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: 1067

Re: Need to change font in the TOC Title

Hello, The correct selector is the following one: *[class~="toc/title"] { font-family: 'Literata', serif; } 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
by julien_lacour
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: 1801

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
by julien_lacour
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: 1801

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 in...
by julien_lacour
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: 2408

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
by julien_lacour
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: 1905

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; } ...
by julien_lacour
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: 1905

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...
by julien_lacour
Wed Jul 01, 2020 1:09 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: PDF Output Issue
Replies: 1
Views: 915

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...
by julien_lacour
Wed Jun 10, 2020 3:32 pm
Forum: Common Problems
Topic: Forcing page breaks before a topic
Replies: 3
Views: 1349

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...
by julien_lacour
Wed Jun 10, 2020 10:46 am
Forum: Common Problems
Topic: Font issues in Mac vs. Linux installations of Oxygen
Replies: 2
Views: 1180

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...
by julien_lacour
Wed Jun 10, 2020 10:35 am
Forum: Common Problems
Topic: Forcing page breaks before a topic
Replies: 3
Views: 1349

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
by julien_lacour
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: 1560

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
by julien_lacour
Thu May 21, 2020 1:16 pm
Forum: Common Problems
Topic: Numbering single step procedures in task
Replies: 5
Views: 3672

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
by julien_lacour
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: 1421

Re: Changes to CSS styling of figcaption elements (WebHelp)

Hello,

The colon sign issue is now fixed in Oxygen 22.1.

Regards,
Julien
by julien_lacour
Thu May 21, 2020 12:56 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Table Text smaller than other text
Replies: 7
Views: 3752

Re: Table Text smaller than other text

Hello,

Starting with Oxygen 22.1 the lists padding is consistent with browsers list padding.

Regards,
Julien
by julien_lacour
Thu May 21, 2020 12:55 pm
Forum: Common Problems
Topic: Tables border distort in pdf output
Replies: 11
Views: 5447

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
by julien_lacour
Thu May 21, 2020 12:36 pm
Forum: Feature Request
Topic: Suppress overlapping change bars in descendants
Replies: 2
Views: 3079

Re: Suppress overlapping change bars in descendants

Hello Chris,

This issue is now resolved on the new Oxygen 22.1 version.

Regards,
Julien
by julien_lacour
Thu May 21, 2020 12:30 pm
Forum: Common Problems
Topic: Applying fill color to SVG doesn't work
Replies: 10
Views: 16998

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
by julien_lacour
Thu May 21, 2020 12:11 pm
Forum: Common Problems
Topic: Centre tables on a page
Replies: 4
Views: 3141

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
by julien_lacour
Thu May 21, 2020 11:34 am
Forum: Common Problems
Topic: Table continuation headers
Replies: 13
Views: 7880

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
by julien_lacour
Wed May 06, 2020 2:48 pm
Forum: Common Problems
Topic: page counter reset issue
Replies: 20
Views: 9805

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 prec...
by julien_lacour
Wed May 06, 2020 2:36 pm
Forum: Common Problems
Topic: Glossary content control
Replies: 6
Views: 3568

Re: Glossary content control

Hello,

As far as I know, glossentries are always displayed on the same page, if you need to change this behavior you can simply do the following:

Code: Select all

* [class ~= 'glossentry/glossentry'] {
    page-break-after: always;
}
Regards,
Julien
by julien_lacour
Mon May 04, 2020 4:53 pm
Forum: Common Problems
Topic: page counter reset issue
Replies: 20
Views: 9805

Re: page counter reset issue

Hello, I cannot reproduce the issue on my side, normally the figure counter is reset in each chapter: *[class ~= "map/map"][numbering^='deep-chapter-scope-no-page-reset'] *[class ~= "topic/topic"][is-chapter]{ counter-reset: section1 tablecount figcount !important; } Then increme...
by julien_lacour
Mon May 04, 2020 4:12 pm
Forum: Common Problems
Topic: Glossary content control
Replies: 6
Views: 3568

Re: Glossary content control

Hello

Of course you can control this display for example by using:

Code: Select all

*[class~="glossentry/glossSurfaceForm"] {
    display: none;
}
For more filtering, you can debug your CSS using your favorite browser: Debugging the CSS

Regards,
Julien
by julien_lacour
Mon May 04, 2020 9:10 am
Forum: DITA (Editing and Publishing DITA Content)
Topic: How to rotate the whole chapter?
Replies: 8
Views: 1996

Re: How to rotate the whole chapter?

Hello, The issue is related to the usage of bookmap and chapters: the default rule for chapters is *[class ~= "topic/topic"][is-chapter] { /* Each chapter starts a new page sequence, so the :first selector applies to each of them. */ -oxy-page-group:start; page: chapter; } Which has a bigg...