Search found 501 matches

by Dan
Tue Mar 17, 2020 4:33 pm
Forum: Common Problems
Topic: Applying fill color to SVG doesn't work
Replies: 10
Views: 16559

Re: Applying fill color to SVG doesn't work

I understand you are using an SVG that is embedded in your document, and you are trying to style it using a CSS customization. We will try to reproduce the problem on our side.

Many regards,
Dan
by Dan
Tue Feb 18, 2020 1:20 pm
Forum: XSLT and FOP
Topic: How to include Legal page after cover Page ?
Replies: 3
Views: 1698

Re: How to include Legal page after cover Page ?

If you are using a DITA PDF transformation, you can simply use a bookmap instead of a map, and arrange the topics as you need in the preface element. For an example please see: https://docs.oasis-open.org/dita/v1.2/os/spec/langref/bookmap.html If you are using other transformations please let us kno...
by Dan
Tue Jan 21, 2020 2:42 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Including Prolog content in PDF output
Replies: 4
Views: 1264

Re: Including Prolog content in PDF output

Please also read:

https://www.oxygenxml.com/doc/versions/ ... aid-title5

You can extract the desired meta information using oxy_xpath and use it in the cover page, or in synthetic pages.
by Dan
Wed Dec 18, 2019 12:01 pm
Forum: Common Problems
Topic: Landscape page formatting in pdf Chemistry
Replies: 5
Views: 3236

Re: Landscape page formatting in pdf Chemistry

Hello, I've reviewed the topic you referenced but couldn't see a fix to avoid the blank space between the topic title and the table. Please send us a sample (PDF and .style.xml file from the output folder) to the support@oxygenxml.com email address. We will try to see the exact situation. To overrid...
by Dan
Tue Dec 17, 2019 4:40 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Picture path error in PDF output
Replies: 5
Views: 1554

Re: Picture path error in PDF output

Publishing individual topics is always more tricky because there might be references that are not processed (especially if not having a key context for it). Anyway, with fix.external.refs.com.oxygenxml parameter it should work for simple cases. The other problem you noticed, the direct link to an im...
by Dan
Tue Dec 17, 2019 4:33 pm
Forum: Common Problems
Topic: Stop font load error
Replies: 1
Views: 1803

Re: Stop font load error

Hello, This is just a warning, has no effect on the publishing. In any case, there is a chemistry-fop.xconf file (you can try a recursive search in the installation folder) in which you can change the way the system fonts are scanned. You can remove the <auto-detect/> element from it. Be aware that ...
by Dan
Tue Dec 17, 2019 3:23 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Picture path error in PDF output
Replies: 5
Views: 1554

Re: Picture path error in PDF output

I see that the image is outside the folder containing the transformed topic.
Please set the transformation parameter:

Code: Select all

fix.external.refs.com.oxygenxml = true
Many regards,
Dan
by Dan
Mon Dec 16, 2019 3:19 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Picture path error in PDF output
Replies: 5
Views: 1554

Re: Picture path error in PDF output

Can you try transforming using the classic PDF transformation, one based on XSL-FO? Do the images appear in this case? Can you move the image next to the topic, change its reference and give it a try?

Regards,
Dan
by Dan
Fri Dec 13, 2019 4:00 pm
Forum: Common Problems
Topic: Landscape page formatting in pdf Chemistry
Replies: 5
Views: 3236

Re: Landscape page formatting in pdf Chemistry

Hello, For landscape tables, please read this topic: https://www.oxygenxml.com/doc/versions/21.1/ug-pdf-css/topics/dcpp_tables.html#ariaid-title3 The other issues may be already fixed on the development stream. In case you want to test the fixes, please write us on support (support@oxygenxml.com) in...
by Dan
Fri Dec 13, 2019 3:55 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: How to avoid page breaks between some chapters?
Replies: 3
Views: 1356

Re: How to avoid page breaks between some chapters?

Yes, the property to change is -oxy-page-group. You should set the value of "auto" to merge the current element with the opened chapter page sequence. *[class ~= "topic/topic"][is-chapter] { /* Each chapter starts a new page sequence, so the :first selector applies to each of the...
by Dan
Mon Dec 09, 2019 2:27 pm
Forum: Common Problems
Topic: using external font files from Windows in PDF Chemistry
Replies: 1
Views: 1696

Re: using external font files from Windows in PDF Chemistry

This is a bug. It will be fixed in the next version (22). As a workaround, you can create a "config/fonts" directory in the working directory of the transformation process, and place the fonts there.

Thank you for reporting the problem!
Many regards,
Dan
by Dan
Tue Nov 19, 2019 4:29 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: PDF-CSS issues
Replies: 5
Views: 1888

Re: PDF-CSS issues

Ok, I tried with your CSS: 1. You can simply use: *[class ~= "topic/thead"] *[class ~= "topic/entry"] { border:none; } I added at the end of your rules and it worked. For this kind of customizations, please read the documentation: https://www.oxygenxml.com/doc/versions/21.1/ug-pd...
by Dan
Tue Nov 19, 2019 2:39 pm
Forum: XSLT and FOP
Topic: FOP, Help fo:page-number
Replies: 8
Views: 11167

Re: FOP, Help fo:page-number

For CSS please read:
https://www.oxygenxml.com/doc/versions/ ... aid-title5
Many regards,
Dan
by Dan
Fri Nov 08, 2019 4:56 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: PDF-CSS issues
Replies: 5
Views: 1888

Re: PDF-CSS issues

For point 1 could you post a snippet with the exact XML structure of your table? I noticed you have used rowsep and colsep attributes in your CSS.
by Dan
Fri Nov 08, 2019 4:55 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: PDF-CSS issues
Replies: 5
Views: 1888

Re: PDF-CSS issues

For point 2, I used just the selector: *[class ~= "front-page/front-page-title"]:after(1) { content: "January 1, 2019"; } And it worked fine. The page is already defined for the front-page, so just use the :after selector. See also: https://www.oxygenxml.com/doc/versions/21.1/ug-...
by Dan
Fri Nov 08, 2019 4:52 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: PDF-CSS issues
Replies: 5
Views: 1888

Re: PDF-CSS issues

For the point 3, please take a look at:
https://www.oxygenxml.com/doc/versions/ ... f4_np5_cbb
It explains how to use the :marker pseudo-class.

For the others, I will come back with details.

Many regards,
Dan
by Dan
Tue Nov 05, 2019 2:10 pm
Forum: Common Problems
Topic: getVariable in plugin com.oxygenxml.pdf.css
Replies: 1
Views: 1730

Re: getVariable in plugin com.oxygenxml.pdf.css

Hello, This GitHub project is compatible with older DITA-OT versions (1.8 and 2.0) and is not actively maintained by the Oxygen team. Starting with version 21.0 Oxygen bundles DITA-OT 3.x, whith a modified version of this plugin. If you want to publish with DITA-OT 3.x, we can give you access to a c...
by Dan
Fri Nov 01, 2019 3:01 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: How to change the margins for the Procedure task label?
Replies: 2
Views: 1256

Re: How to change the margins for the Procedure task label?

Hello, For debugging your CSS we recommend using the development tools from a browser. (You can open the .merged.html file from the output folder in the browser.) See: https://www.oxygenxml.com/doc/versions/21.1/ug-pdf-css/topics/dcpp_debugging_the_css.html#dcpp_debugging_the_css Please use a select...
by Dan
Fri Nov 01, 2019 2:44 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: How can I change monospace elements to sans-serif
Replies: 9
Views: 2971

Re: How can I change monospace elements to sans-serif

In case you want to replace all fonts in your publication with a single Sans Serif font, you can increase the importance of your CSS rule: * { font-family: Arial, Verdana, Tahoma, Helvetica, sans-serif !important; } In case you want to change the font for all code sections, you should create rules t...
by Dan
Tue Oct 29, 2019 12:37 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: How to change the default icon in generated PDF
Replies: 3
Views: 1512

Re: How to change the default icon in generated PDF

Hello, Please read about fine tuning your CSS using the browser CSS inspectors: https://www.oxygenxml.com/doc/versions/21.1/ug-pdf-css/topics/dcpp_debugging_the_css.html#dcpp_debugging_the_css The idea is to determine the element or pseudo element that generates the default warning icon, and set it ...
by Dan
Tue Oct 29, 2019 12:34 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: How to change the default generated text format in PDF
Replies: 2
Views: 1170

Re: How to change the default generated text format in PDF

Hello,

I think there is a mistake in your CSS.
I think you need to match both tokens from the CSS class attribute.

Please try:

Code: Select all

*[class ~="sectiontitle"][class ~="tasklabel"] {
    color: blue;
    font-weight:bold;
}
Many regards,
Dan
by Dan
Mon Oct 28, 2019 11:35 am
Forum: Common Problems
Topic: Adding Hyphenation Dictionaries to built-in Oxygen Chemistry
Replies: 1
Views: 1726

Re: Adding Hyphenation Dictionaries to built-in Oxygen Chemistry

Hello, Indeed, we need to update the documentation. Please read "Oxygen installation directory" instead of "Chemistry installation directory". So, please follow these steps: 1. Download (https://sourceforge.net/projects/offo/files/) and extract the offo-hyphenation-compiled.zip f...
by Dan
Fri Oct 25, 2019 3:33 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Continuous Page Numbering
Replies: 2
Views: 1235

Continuous Page Numbering

The page numbers are reset to one in two cases: On the first topic that follows the TOC On the first topic from the index To avoid the page counter being reset, you can use in your customization: *[class ~= "map/map"] > *[class ~= "toc/toc"] + *[class ~= "topic/topic"],...
by Dan
Mon Oct 21, 2019 2:50 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: CSS String Variables
Replies: 2
Views: 1210

Re: CSS String Variables

Hello,
The PDF processor does not support the CSS variables, but it supports LESS (http://lesscss.org/). The extension of the customization file should be .less.
Many regards,
Dan
by Dan
Mon Oct 21, 2019 2:47 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Headers/Footers for Backmatter, Not Frontmatter
Replies: 8
Views: 2488

Re: Headers/Footers for Backmatter, Not Frontmatter

You might find useful this topic:

https://www.oxygenxml.com/doc/versions/ ... aid-title5

It shows how to style some topic depending on the role it has in the map.
by Dan
Wed Oct 16, 2019 3:53 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Header Fonts and String Function
Replies: 2
Views: 1030

Re: Header Fonts and String Function

Are you using a publishing template (selected in the first page of the DITA transformation scenrio dialog)? Probably the CSS rules from it are more specific. You can use more specific selectors like: @page :left, chapter:left, chapter:first:left { .. } Or you can use the !important specifier: font-f...
by Dan
Tue Oct 15, 2019 2:39 pm
Forum: DITA (Editing and Publishing DITA Content)
Topic: Formatting of Footers for PDF Output
Replies: 4
Views: 1811

Re: Formatting of Footers for PDF Output

Hello,
Please use the property:

Code: Select all

		
@bottom-center {
		....
		white-space:nowrap;
		...
	}
This will make the text bleed out to the left and right space and avoid line breaking. The text will be still centered.

Many regards,
Dan
by Dan
Tue Oct 15, 2019 2:25 pm
Forum: Common Problems
Topic: Indent from second line in case a numbered heading wraps
Replies: 4
Views: 3542

Re: Indent from second line in case a numbered heading wraps

Yes. the structure is different for the titles in the main content. You can use a CSS like this one: *[class ~= "topic/topic"] > *[class ~= "topic/title"]:before{ color:red; display:block; position:absolute; top:0; left:0; width:50px; background-color:silver; } *[class ~= "t...
by Dan
Thu Oct 10, 2019 2:36 pm
Forum: Common Problems
Topic: Indent from second line in case a numbered heading wraps
Replies: 4
Views: 3542

Re: Indent from second line in case a numbered heading wraps

There are some limitations in the Chemistry we are trying to solve. Until then, you could try the following CSS snippet: *[class ~= "map/map"][numbering^='deep'] *[class ~= "map/topicref"] > *[class ~= "map/topicmeta"]:before { display:inline-block; background-color: pi...
by Dan
Thu Oct 10, 2019 11:28 am
Forum: Common Problems
Topic: ::after pseudo-element not working with external links
Replies: 4
Views: 4843

Re: ::after pseudo-element not working with external links

Hello Anton, This is caused by a series of built-in CSS selectors that remove the "on page" text that appears after the link text (in case of external links) and are quite specific. The solution is to increase the specificity of your selector, like: *[class ~= "topic/xref"][href]...