`

XSL Formatting Objects Tutorial (一)

 
阅读更多

XSL-FO is an XML language designed for describing all visual aspects of pagination documents.

 

The well known HTML is another language for specifying formatting semantics, but is more usable for documents that are presented to screen, and less for materials created for printing, because it doesn't support pagination elements like headers and footers, page size specifications, footnotes, etc.

 

XSL-FO is part of XSL language family:

XSLT - (XSL Transformations) a language for transfoming XML. (转换XML到XSL-FO)

XSL-FO - (XSL Formatting Objects) a language that can be used in XSLT for the purpose of "presenting" the XML. (XSL-FO使用fop可以直接转换为PDF)

 

XML + XSL Template  ---> XSL Transformation ---> XSL-FO ---> FOP ---> PDF

 

 

The XSL-FO language uses CSS(Cascading Style Sheets) to describe formatting attributes like fonts, colors, and borders, fo from this point of view, it should be easy to learn by HTML developers.This Manual

will help you understand the language and accomplish more complicated tasks.

 

Here is the traditional Hello World, XSL-FO style: 

<?xml version="1.0" encoding="UTF-8"?>

<!-- 引入dtd,提供提示功能 -->
<!DOCTYPE xsl-fo SYSTEM "fo.dtd"> 

<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
	<fo:layout-master-set>
		<fo:simple-page-master master-name="LetterPage" page-width="6.5in" page-height="2in">
			<fo:region-body region-name="PageBody" margin="0.2in"/>
		</fo:simple-page-master>
	</fo:layout-master-set>
	
	<fo:page-sequence master-reference="LetterPage">
		<fo:flow flow-name="PageBody" font-family="Microsoft YaHei" font-size="24pt">
			<fo:block>Hello XSL-FO!</fo:block>
		</fo:flow>
	</fo:page-sequence>
</fo:root>
(1) Any XML document must have only one root, and XSL-FO make no exception. The root element for an XSL-FO document is fo:root. The world "fo" before column character ":" is called a namespace prefix. An XML namespace is collection of names identified by an unique URL. It's main role is to avoid collisions when a single XML document contains elements and attributes defined by multipe sofeware modules. The "fo" namespace prefix is linked with an unique URL, in this case "http://w3.org/1999/XSL/Format" using xmlns attribute. The syntax is based on W3C XML Namespace Spec.
(2) The pages structure is defined using fo:layout-master-set;
(3) The "Hello World" paragraph is added into this page.
 
<Paragraphs>
In XSL-FO, paragraphs are created using fo:block elements.
Various attributes can be set on a paragraph:
  • Horizontal alignment is controlled by text-align attribute.
  • Borders are set using borders attribute.
  • Font is using font-family, font-size, font-weight, etc.
  • Spacing between two adjacent paragraph is set using space-before and space-after.
<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE fo SYSTEM "fo.dtd">

<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
	<fo:layout-master-set>
		<fo:simple-page-master master-name="LetterPage" page-width="5in" page-height="2in">
			<fo:region-body region-name="PageBody" margin="0.2in"/>
		</fo:simple-page-master>
	</fo:layout-master-set>
	<fo:page-sequence master-reference="LetterPage">
		<fo:flow flow-name="PageBody" font-family="Microsoft YaHei" font-size="10pt">
			<fo:block text-align="justify" border="3pt solid green">
				This is the first paragraph of justified text. 
				Notice how text fills all available space for all lines 
				except the last one.The alignment of the last line is 
				controlled by text-align-last property.
			</fo:block>
			<fo:block space-before="1cm" border="3pt ridge blue">
				This is the second paragraph. This block is left aligned.
			</fo:block>
		</fo:flow>
	</fo:page-sequence>
</fo:root>

 

justify: 对齐 

text-align="justify" : 自动调整每行(除了最后1行)的文字间距,填满整行,看起来更美观。

text-align-last="justify" : 调整最后1行文字,让其填充满整行

There are several things to notice:

(1) The distance between paragraphs is not additive(没有叠加性)

(2) If a block is the first element in a page, and you set the space-before attribute, you will also notice that the space is not present anymoe!

This behavior is controlled by space-before.conditionality. If you set to "retain"(保留), the corresponding space will not be discarded(丢弃).

If a block is the last element in a page, and you set the space-after attribute, you will also notice that the space is not present anymore!

This behavior is controlled by space-before.conditionality. If you set to "retain"(保留), the corresponding space will not be discarded(丢弃).

 

Text Alignment

Horizontal alignment of text is controlled by two attributes: text-align which will set the alignment for all lines of text, except the last one, which is controlled by text-algin-last.

 

This is important to remenber, because if your paragraph has only one line of text, you

have to use text-align-last to set the alignment !

 

Possible values for text-align and text-align-last are:

left (the default) to perform alignment to the left
right, to perform alignment to the right
center, to center the paragraph
justify, to justify the text, so that if fills the while line 

 

Vertical alignment of text is controlled by display-align attibute. This attribute can have the

following values:

auto (the default)

before

center

after

 

Fonts

There are six properties that can control the aspect of text:

font-family, font-style, font-variant, font-weigth, font-size, line-height

 

font-family

To set the font face, you use font-family attribute. For example, font-family="Arial" will

specify that Arial font must be used.

If multiple font family are specified, the render will pick the first avaiable, so you should

list the fonts from the most specific to the most generic.

For example, font-family="Arial, Helvetica" will select "Helvetica" if "Arial" is not present in the system.

 

font-weigth

The weight of the font can be specified using font-weight attribute.

You can set it to either an absoulte value("bold" or "normal"), or to a value relative to parent element's font weight("bolder" or "lighter").

 

font-size

To specify the font size, use font-size attribute.

This size can be a length(1cm, 0.5in, 10pt, 8px, etc) or a percentage(0.5, 150%) from parent element's font.

 

line-height

A very important, and often misused property is line-height. This property determines the

minimun line-height for a block element. The default value for line-height is 120%, that is,

the line will be 20% taller than the text.

 

For example, if the text is 10 ponits height, the line height will be of 12 points.

The text will be centered on the line, 1 point from top, and 1 point from bottom.

In the next example we set the line-height to 200% :

 

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE fo SYSTEM "fo.dtd">
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
	<fo:layout-master-set>
		<fo:simple-page-master master-name="LetterPage" page-width="5in" page-height="1.5in">
			<fo:region-body region-name="PageBody" margin="0.2in"/>
		</fo:simple-page-master>
	</fo:layout-master-set>
	<fo:page-sequence master-reference="LetterPage">
		<fo:flow flow-name="PageBody" font-family="Microsoft YaHei" font-size="10pt">
			<fo:block line-height="200%" border="3pt outset blue" padding="5pt">
				For this paragraph, the line-height is set to 200%. 
				Because the font is 12 points height, 
				an extra 12 points will be seperate 6pt to top, 6pt to bottom.
			</fo:block>
		</fo:flow>
	</fo:page-sequence>
</fo:root>

 

We have mentioned before that is the minimun line height: if a line contains an image of

let's say 100 points height, the total line height (only for that line) will be of 102 points

(%2 extra) .

 

To set all the properties at once you can use font shortcut attribute.

A shortcut attribute will set the values for multiple attributes at once.

The shortcut attribute font has the following syntax:

font="{style} {variant} {weight} {size}/{line-height} family"

 

For example, to achieve the same effect as the first example in this chapter, you could

use font="10pt Arial", font=""

 

Note: By using this shortcut attribute, instead of specifying each font properity individually,

child shortcut will inherit the parent setting!

 

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE fo SYSTEM "fo.dtd">
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
	<fo:layout-master-set>
		<fo:simple-page-master master-name="LetterPage" page-width="5in" page-height="1.5in">
			<fo:region-body region-name="PageBody" margin="0.2in"/>
		</fo:simple-page-master>
	</fo:layout-master-set>
	<fo:page-sequence master-reference="LetterPage">
		<fo:flow flow-name="PageBody">
			<fo:block  font-size="12pt" font-weight="bold" font-family="Microsoft YaHei">
				<fo:block>
					This is the parent block element with a 12 points, bold, "Microsoft YaHei"
				</fo:block>
				<fo:block font="12pt Arial">
					This is the child block element; the same shortcut is used for changing the font,
					but because the weight was omitted, the font is no longer bold.
				</fo:block>
				<fo:block>
					When the child block ends, the remaining of parent's content is displayed!
				</fo:block>
			</fo:block>
		</fo:flow>
	</fo:page-sequence>
</fo:root>

 

Border

The border properties specify the width, color, and style of the borders a object.

These properties applay to all XSL-FO elments.

 

Border widths are set using border-top-width,border-right-width,border-bottom-width,border-left-width.

The value can be specified as a length(1pt, 0.5cm, etc). To set all four widths at once you can use border-width shortcut. For example, to set all borders to 0.1 inches thick, you use border-width="0.1in".

 

Border color properties are border-top-color, border-right-color, border-bottom-color, border-left-color,
The shortcut for setting the color for all four borders at once is border-color.

 

The border style properties specified the line style of a box's border(solid, double, dashed, etc).

 

The properties defined in this section refer to the border-style value type, which may take one of the following:

none or hidden :  No border

dotted: The border is a series of dots.

dashed: The border is a series of short line segments.

solid: The border is a single line segement.

double: The border is two solid lines.The sum of the two lines and the space between them equals the vaule of "border width".

groove(凹槽 ): The border looks as though it were carved(雕刻) into the canvas.

ridge(凸出): The opposite of "groove":the border looks as though it were coming out of the canvas.

inset(嵌入): The border makes the entire box looks as though it were embedded in the canvas.

outset: The opposite of "inset": the border makes the entire box looks as though it were coming out of the canvas.

 

All borders are drawn on top of the background.

To set all attributes for a given border, you can use border-top, border-right, border-bottom, border-left shorthand attributes.

The format is:

border-top="{width} {style} {color}"  

 

The following notations are equivent:

<fo:block border-top-style="solid" border-top-color="blue" border-top-width="1mm">

...

</fo:block>

<fo:block border-top="1mm solid blue">

...

</fo:block>

 

The border property is a shorthand property for setting the same width,color, and style for all four borders of a box.The border property cann't set different values on the four borders.To do so, one or more of the other border properties must be used.

The format is:

border="{width} {style} {color}"

border="3pt solid red"

 

 

Backgrounds 

XSL-FO object's background may be colors or images.

Background properties allow authos to position a background image, repeate it, etc.

 

To set the background color of an element use background-color attibute.

It can be set to either a color value or the keyword "transparent".

 

background-image sets the background image of an element.

When setting a background image, authos should also specify a background-color that will be used when the image is unavailable.When the images is available, it is rendered on top of the background color.(Thus, the color is visble in the transparent parts of the image). Values for this property are either URL, to specify the image, or "none", when no image is used.

 

If a background image is used, background-repeat attributes specifies whether the image is repeated(tiled 平铺), and how. 

It may take one of the following values:

repeat: The image is repeated both horizontally and vertically.

repeat-x: The image is repeated horizontally only.

repeat-y:The image is repeated vertically only.

no-repeat:The image is not repeated: only one copy of the image is drawn.

 

If a background image has been specified, background-position property specifies it's initial position.

Values have the following meanings:

percentage percentage: With a value pair of "0% 0%", the upper left corner of the image is aligned with the upper left corner of the box's padding edge. A value pair of "100% 100%" places the lower right corner of the image in the lower right corner of padding area. With a value pair of "14% 86%", the point 14% across and 86% down the images is to be placed at the point 14% accross and 86% down the padding area.

 

length length: With a value pair of "2cm 2cm", the upper left corner of the image is places 2cm to the left and 2cm below the upper left corner of the padding area.(图片距离左边水平距离2cm,垂直距离2cm)

 

If only one percentage or length value is given, it sets the horizontal position only, the vertival position will be 50%.

If two values are given, the horizontal position comes first.

Combinations of length and percentage values are allowed(e.g., "50%  2cm").

 

Negative positions are allowed.

 

To set all attributes for one element's background, you can use background shortcut attribute.

The format is:

background="{color} {image} {repeat} {position}"

 

<fo:block th:attr="background-image=${firstPagePicLinkerPDF}"
	th:fragment="bg-sample-1" background-position="0,0" background-repeat="repeat"
	background-color="white" font-size="10pt">

 

Only part of the image presented, because size of the text occupation in the block isn't big than the image size.

So, how big the bolck present is equal to the images present!

 

 

<Flow Layout>

 

XSL-FO documents have flow layout, that is, content "flows" from one page to the next one:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Project>

<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
	<fo:layout-master-set>
		<fo:simple-page-master master-name="LetterPage" page-width="6in" page-height="2in">
			<fo:region-body region-name="PageBody" margin="0.1in" background-color="rgb(245,245,245)"/>
		</fo:simple-page-master>
	</fo:layout-master-set>
	<fo:page-sequence master-reference="LetterPage">
		<fo:flow flow-name="PageBody" font-size="12pt">
			<fo:block border="2pt solid black" space-after="5pt" text-align="justify">
				The content of this block is split across multiple
				pages. The content of this block is split ........
				..................................................
				The content of this block is split across multiple pages.
			</fo:block>
			<fo:block border="2pt solid red" keep-together="always">
				This block has <fo:inline text-decoration="underline">keep-together</fo:inline> set to always.
				Because of this flag, the block will be displayed on a new page 
				as the render tries to prevent the block from spliting.
			</fo:block>
			<fo:block border="2pt solid rgb(255,0,255)" space-after="5pt" keep-with-next="always">
				A block element that still fits on the previouse page.
			</fo:block>
			<fo:block border="2pt solid black">
				A block on the last page. The previous page block will be displayed on the 
				<fo:inline text-decoration="underline">same</fo:inline> page because it has keep-with-next flag set.
			</fo:block>
		</fo:flow>
	</fo:page-sequence>
</fo:root>

 

keep-together="always"  

防止1个块中的内容被分割到不同页进行显示

但是,定义了该属性fop处理自动对内容进行了浮动,这里有问题。。。

 

keep-with-next="always"

定义了此属性的block,即使上一页的剩余空间足够显示该block,也不会在上一页中显示。而是与下一个块保持在1个页面,即会出现在下一页中

 

There are several properties that control how and when a block of text is split across multiple pages.(几种控制分页的方法)There are :

break-before and break-after attributes will force a page break before or after a block element. By block element we mean elements that fill all available horizontal space like paragraphs, tables, and lists. For example, you might want to use this to start chapters on a new page.  

强制在某个block之前还是之后进行分页,如新的一章则需要新的一页

 

keep-together attribute prevents splitting of a block element, If there is not enough room to display the block on the current page, the block will be displayed on the next one.

如果当前页的空间不足以放下该block,则其将在下一页中进行显示,保证block内容在一个页面中显示。

 

keep-with-next and keep-with-previous will link a block element with the previous/next sibling block. This is useful to prevent page breaks occur between two closely related elements, like chapter title and chapter contents.

与下一个block建立关系

与上一个block建立此关系

防止关系亲密的2个block块分散到不同的page,因为它们需要在同一个page中显示。

 

widow and orphans attributes are useful to control contextual information. The default values for this properties is "2", preventing the display of last line of a paragraph by itselt at 

the top of a page(a widow) or the first line of a paragraph by itself at the bottom of a page(an orphan). You can see in the example above the fo:block will display the two line on the second page.

防止1个段落的最后1行在下一个新页面中第1行的位置显示(寡妇)

防止1个段落的第1行在前一页的最后一行的位置显示(孤儿)

 

 

<Inline Text Formatting>

 

Inline Text Formatting

Inline elements allow XSL-FO developers to specify attributes for individual pieces of inline content(text and image), instead of the whole block.

 

In the example below, a fragment of text is filled with red, and it's font weight is set to bold:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Project>

<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
	<fo:layout-master-set>
		<fo:simple-page-master master-name="LetterPage" page-width="6in" page-height="2in">
			<fo:region-body region-name="PageBody" margin="0.1in" background-color="rgb(245,245,245)"/>
		</fo:simple-page-master>
	</fo:layout-master-set>
	<fo:page-sequence master-reference="LetterPage">
		<fo:flow flow-name="PageBody" font-size="12pt">
			<fo:block font-size="14pt">
				Some <fo:inline font-weight="bold" color="red">inline text</fo:inline> fomatting.
			</fo:block>
		</fo:flow>
	</fo:page-sequence>
</fo:root>

 

Things to notice:

(1) The fo:inline element wraps the fragment "inline text" and sets font-weight to bold. The text color is set to red using color attribute.

Any color can be described using either a standard color value or by using it's red, green and blue components. The following notations are equivalent:

<fo:inline color="red">Hello</fo:inline>

<fo:inline color="rgb(255,0,0)">Hello</fo:inline>

 

 

Subscripts and Superscripts 

上标与下标

Inline elements also allow creation of sub-scripts or super-scripts:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Project>

<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
	<fo:layout-master-set>
		<fo:simple-page-master master-name="LetterPage" page-width="6in" page-height="2in">
			<fo:region-body region-name="PageBody" margin="0.1in" background-color="rgb(245,245,245)"/>
		</fo:simple-page-master>
	</fo:layout-master-set>
	<fo:page-sequence master-reference="LetterPage">
		<fo:flow flow-name="PageBody" font-size="12pt">
			<fo:block font-size="14pt">
				Some <fo:inline font-weight="bold" color="red" baseline-shift="sub">inline text</fo:inline> fomatting.
				Some <fo:inline font-weight="bold" color="red" baseline-shift="super">inline text</fo:inline> fomatting.
			</fo:block>
			<fo:block font-size="14pt">
				Some <fo:inline font-weight="bold" color="red" baseline-shift="-50%">inline text</fo:inline> fomatting.
				Some <fo:inline font-weight="bold" color="red" baseline-shift="50%">inline text</fo:inline> fomatting.
			</fo:block>
			<fo:block font-size="14pt">
				Some <fo:inline font-weight="bold" color="red" baseline-shift="-5pt">inline text</fo:inline> fomatting.
				Some <fo:inline font-weight="bold" color="red" baseline-shift="5pt">inline text</fo:inline> fomatting.
			</fo:block>
		</fo:flow>
	</fo:page-sequence>
</fo:root>



  

The  property that controls the alignment of an inline element vertically within it's parent line

is baseline-shift.

As you can see in this example, the text can be shifted vertically using either "sub" or  "super" which will use font metrics to determine the subscript or superscript positions.

You can also use a percentual or absolute value.

 

 



<Graphics>

 

SVG (Scalable Vector Graphics)

 

External Graphics

To display an image from an external file, use fo:external-graphic.

 

All majors formats are supported, like BMP,JPEG,GIF,PNG,etc.

 

<fo:external-graphic src="sample.jpg" content-height="0.7in" vertical-align="middle"/>

 

There are several things to notice in this example:

     Image urls can be eigther absolute or relative. When relative, the location of the XSL-FO document is used to compute the full path to the image. 

     Image can be scaled using content-width and content-height properties.

In this example we specify only the desired height and the width is computed automatically by the render, preserving the aspect ratio.

     Inline graphics can be shifted vertically using vertical-align attribute.

 

<fo:block margin-top="10px" margin-left="5px">
	<fo:external-graphic content-width="scale-to-fit" content-height="scale-to-fit" width="6.8in" height="1.2in" src="./public/images/logo.jpg"/>
</fo:block>

 

 

 

 

<Float>

 

fo:float element inserts an out-of-line(不在一直线上) block-level element such as a figure(图解) or a pull quote(醒目引文) onto the page.

The float property determines which side of the page it floats on and the clear property determines whether and where other elements are allowed to float around it.

float property 决定把目标浮动到页面的那一边,clear property决定是否允许其它元素浮动到其周围

【fop1.0, 1.1, 目前尚不支持fo:float功能!】

 

 

 

 <Absolute Position>

 

When an object is placed on a page, it can be positioned absolute or relative.

页面中的某个对象,可以使用绝对或者相对定位来控制元素的位置

 

 

Most objects are relative, which means that if preceding(在前面的) objects grow/become larger, that the relative objects will shift (in most languages it shift down) .

大多数对象都是相对的,这就意味着如果前面的对象变大导致所使用的空间增大,相对该

对象的其它对象的位置将发生移动(大多数情况是向下移动)。

 

We have seen that XSL-FO documents have flow layout, the content flows from one page to the next one, according to the rules imposed(利用) by page breaks, spacing, widows and orphans.

XSL-FO中,可以对是否分页进行控制

However, sometimes it may be useful to position elements at absolute coordinates.

一些时候,使用绝对定位来控制元素的位置也是相当有用的

 

Only fo:block-container can be placed absolutely, and this can be done by setting the position properity to "absolute" or "fixed".

 

The value "fixed" means that the object has a position relative to the page.

position="fixed" 是相对与Page页面左上角进行定位的

 

The value "absolute" means that the object has a position relative to the containing reference-area,typically another fo:block-container. This containing reference-area does not need to be positioned absolutely, which means you can position an object on a sepecifc absolute location relative to another object that flows in the page.

position="absolute" 相对于其所在的上下文环境进行进行定位的,不一定是页面左上角

如,分栏中的第2栏出现absolute定位,则相对与第2栏进行定位

 

In the example below, we have two fragments of text positioned under and over the main flow text:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Project>

<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
	<fo:layout-master-set>
		<!-- 页面样式一 -->
		<fo:simple-page-master master-name="p1" page-width="7in" page-height="2in">
			<fo:region-body region-name="xsl-region-body" margin="0.5in"/>
		</fo:simple-page-master>
		
		<!-- 页面样式二 -->
		<fo:simple-page-master master-name="p2" page-width="7in" page-height="2in">
			<!-- column-count Region分2栏显示内容  -->
			<fo:region-body region-name="xsl-region-body" margin="0.2in" column-count="2"/>
		</fo:simple-page-master>
		
		<fo:page-sequence-master master-name="default-sequence">
			<!-- 第1页使用p1样式 -->
			<fo:single-page-master-reference master-reference="p1"/>
			<!-- 余下的使用p2样式 -->
			<fo:repeatable-page-master-reference master-reference="p2"/>
		</fo:page-sequence-master>
	</fo:layout-master-set>
	<fo:page-sequence master-reference="default-sequence">
		<fo:flow flow-name="xsl-region-body" font-size="12pt">
			<!-- 绝对定位 -->
			<fo:block-container position="absolute" top="10pt" left="30pt" height="14pt" width="100%">
				<fo:block font-size="72pt" color="silver">Under</fo:block>
			</fo:block-container>
			<fo:block>
				<fo:block>
					Text Text Text Text Text Text Text Text Text Text Text Text
					Text Text Text Text Text Text Text Text Text Text Text Text
					Text Text Text Text Text Text Text Text Text Text Text Text
					Text Text Text Text Text Text Text Text Text Text Text Text
					Text Text Text Text Text Text Text Text Text Text Text Text
					Text Text Text Text Text Text Text Text Text Text Text Text
				</fo:block>
				<!-- 绝对定位 -->
				<fo:block-container position="absolute" top="20pt" left="40pt" height="14pt" width="100%">
					<fo:block font-size="72pt" color="red">Over</fo:block>	
				</fo:block-container>
			</fo:block>
			
			<!-- 换页 -->
			<fo:block break-before="page"/>
			
			<!-- 绝对定位 -->
			<fo:block-container position="absolute" top="10pt" left="30pt" height="14pt" width="100%">
				<fo:block font-size="72pt" color="silver">Under</fo:block>
			</fo:block-container>
			<fo:block>
				<fo:block>
					Text Text Text Text Text Text Text Text Text Text Text Text
					Text Text Text Text Text Text Text Text Text Text Text Text
					Text Text Text Text Text Text Text Text Text Text Text Text
					Text Text Text Text Text Text Text Text Text Text Text Text
					Text Text Text Text Text Text Text Text Text Text Text Text
					Text Text Text Text Text Text Text Text Text Text Text Text
					Text Text Text Text Text Text Text Text Text Text Text Text
				</fo:block>
				<!-- 绝对定位 -->
				<fo:block-container position="absolute" top="10pt" left="30pt" height="14pt" width="100%">
					<fo:block font-size="72pt" color="red">Over</fo:block>	
				</fo:block-container>
			</fo:block>
		</fo:flow>
	</fo:page-sequence>
</fo:root>

 

To change the order in which the elements are rendered, use z-index attributes:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Project>

<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
	<fo:layout-master-set>
		<fo:simple-page-master master-name="p1" page-width="5in" page-height="7in">
			<fo:region-body region-name="xsl-region-body" margin="0.5in"/>
		</fo:simple-page-master>
	</fo:layout-master-set>
	
	<fo:page-sequence master-reference="p1">
		<fo:flow flow-name="xsl-region-body" font-size="12pt">
			<!-- 绝对定位和z-index定位的文字,需要放在正文内容之前输出到页面 -->
			<!-- Negative z-index -->
			<fo:block-container z-index="-1" position="absolute" top="18pt" left="0pt">
				<fo:block font-size="48pt" color="rgb(192,192,192)" text-align="center">
					Under
				</fo:block>				
			</fo:block-container>
			<!-- Positive z-index -->
			<fo:block-container z-index="+1" position="absolute" top="28pt" left="10pt">
				<fo:block font-size="48pt" color="red" text-align="center">
					Under
				</fo:block>				
			</fo:block-container>
			
			<fo:block>
				Before  Before   Before   Before   Before   Before 
				Before  Before   Before   Before   Before   Before 
				Before  Before   Before   Before   Before   Before 
			</fo:block>
			<fo:block>
				After After  After  After  After  After  After  After
				After After  After  After  After  After  After  After
				After After  After  After  After  After  After  After
			</fo:block>
		</fo:flow>
	</fo:page-sequence>
</fo:root>

 

All elements are considered have a z-index of 0.

Therefore, if you want an element to be displayed on the background(like a watermark) use a Negative z-index, while for a foreground element (like a stamp) use a positive z-index.

z-index 小于0,文字可以作为背景,类似水印的效果。

z-index 大于0,文字可以作为覆盖层,类似邮戳效果。

 

 

 

 <Tables>

Tables are described in XSL-FO using fo:table element.

A table can have a herder(fo:tableheader), a body(fo:table-body) and a footer(fo:table-footer).

Each of these groups contains rows(fo:table-row), which in turn contain cells(fo:cell)

 

The columns are described using fo:table-column elements.

 

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Project>

<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
	<fo:layout-master-set>
		<fo:simple-page-master master-name="normal"
		      page-height="297mm" page-width="210mm"
		      margin-top="20mm" margin-bottom="20mm"
		      margin-left="25mm" margin-right="25mm">
		    <fo:region-body margin-bottom="20mm"/>
		    <fo:region-before extent="1cm"/> 
		    <fo:region-after  extent="1cm"/> 
		 </fo:simple-page-master> 
	</fo:layout-master-set>
	
	<fo:page-sequence master-reference="normal">
		<fo:flow flow-name="xsl-region-body">
			<fo:table table-layout="fixed" width="100%" border-collapse="collapse"  font-size="12pt">
				<!-- 声明列数,列宽按比例进行设置,对第1列设置背景颜色 -->
				<fo:table-column column-width="50%" background-color="rgb(255,246,206)"/>
				<fo:table-column column-width="25%"/>
				<fo:table-column column-width="25%"/>
				
				<fo:table-header color="rgb(255,255,255)" background-color="rgb(125,73,2)" font-weight="bold">
					<fo:table-row>
						<fo:table-cell padding="2pt" border="1pt solid black">
							<fo:block>Name</fo:block>
						</fo:table-cell>							
						<fo:table-cell padding="2pt" border="1pt solid black">
							<fo:block>Quantity</fo:block>
						</fo:table-cell>							
						<fo:table-cell padding="2pt" border="1pt solid black">
							<fo:block text-align="right">Price</fo:block>
						</fo:table-cell>							
					</fo:table-row>
				</fo:table-header>
				
				<fo:table-body>
					<fo:table-row>
						<fo:table-cell padding="2pt" border="1pt solid black">
							<fo:block>Product 1</fo:block> 
						</fo:table-cell>
						<fo:table-cell padding="2pt" border="1pt solid black">
							<fo:block>100</fo:block> 
						</fo:table-cell>
						<fo:table-cell padding="2pt" border="1pt solid black" text-align="right">
							<fo:block>$100.11</fo:block> 
						</fo:table-cell>
					</fo:table-row>
					<fo:table-row>
						<fo:table-cell padding="2pt" border="1pt solid black">
							<fo:block>Product 2</fo:block> 
						</fo:table-cell>
						<fo:table-cell padding="2pt" border="1pt solid black">
							<fo:block>Single</fo:block> 
						</fo:table-cell>
						<fo:table-cell padding="2pt" border="1pt solid black" text-align="right">
							<fo:block>$18.00</fo:block> 
						</fo:table-cell>
					</fo:table-row>
					<fo:table-row>
						<fo:table-cell padding="2pt" border="1pt solid black">
							<fo:block>Product 3</fo:block> 
						</fo:table-cell>
						<fo:table-cell padding="2pt" border="1pt solid black">
							<fo:block>Single</fo:block> 
						</fo:table-cell>
						<fo:table-cell padding="2pt" border="1pt solid black" text-align="right">
							<fo:block>$122.99</fo:block> 
						</fo:table-cell>
					</fo:table-row>
				</fo:table-body>
			</fo:table>
		</fo:flow>
	</fo:page-sequence>
</fo:root>

 

Things to notice:

1. The fo:table element is defined. This table has the border-collaspe attribute set to "collapse", which will cause borders to merge.

2. Columns can have eigther a fixed width or a percentage width.

3. We difine table's header and body. If a page break will occurs, the headers and the footers are displayed on the next page as well.

4. Each fo:table-cell can span multiple rows and/or columns.

5. Set table-layout="fixed" width="100%" to the table, otherwise fop will throw warning message. 

 

The content of the cell is aligned vertically according to display-align property.

Note: 

By default a cell will not clip it's content.To clip the cell's content set overflow attribute to hidden.

当文本内容超出单元格的大小时,通过设置overflow=“hidden”来隐藏溢出的文字

 

Table columns

As noted in the example above, a column can have a proportional(比例) width or a fixed width. 

A fixed width includes length units(in, pt, cm,etc)

for example:

<!-- Fixed column width -->
<fo:table-column column-width="3in"/>

<!-- A proportional width is expressed via proportional-column-width -->
<fo:table-column column-width="proportional-column-width(20)"/>
<fo:table-column column-width="20%"/>

 

There is a third way to specify a column width:

By omitting the column-width attribute, the column will size itself automatically, dependding on it's content.

 

 

start-indent is an inheritable property, the block in the table-cell will also indent !

To indent only the table, you can eigth:

~ Use margin-left instead of start-indent

~ Use start-indent for the table, and then use it again for each table-cell, but set it's value to zero. (start-indent="0")

 

 

 

 <Lists>

XSL-FO lists are created using fo:list-block element.

A list can contain one or more items: fo:list-item

Each item has a  label: fo:list-item-label usually used to display a bullet or a number, and body: fo:list-item-body.

 

<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE fo SYSTEM "fo.dtd">

<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
	<fo:layout-master-set>
		<fo:simple-page-master master-name="normal" page-width="210mm" page-height="297mm">
			<fo:region-body region-name="xsl-region-body"/>
		</fo:simple-page-master>
	</fo:layout-master-set>
	<fo:page-sequence master-reference="normal">
		<fo:flow flow-name="xsl-region-body">
			<fo:block>
				To do list:
			</fo:block>
			<fo:list-block>
				<fo:list-item>
					<fo:list-item-label end-indent="label-end()">
						<fo:block>1)</fo:block>
					</fo:list-item-label>
					<fo:list-item-body start-indent="body-start()">
						<fo:block>
							Very very important stuff
						</fo:block>
					</fo:list-item-body>
				</fo:list-item>
				<fo:list-item>
					<fo:list-item-label end-indent="label-end()">
						<fo:block>2)</fo:block>
					</fo:list-item-label>
					<fo:list-item-body start-indent="body-start()">
						<fo:block>
							Very important stuff
						</fo:block>
					</fo:list-item-body>
				</fo:list-item>
				<fo:list-item>
					<fo:list-item-label end-indent="label-end()">
						<fo:block>3)</fo:block>
					</fo:list-item-label>
					<fo:list-item-body start-indent="body-start()">
						<fo:block>
							Other important items
						</fo:block>
					</fo:list-item-body>
				</fo:list-item>
				<fo:list-item>
					<fo:list-item-label end-indent="label-end()">
						<fo:block>4)</fo:block>
					</fo:list-item-label>
					<fo:list-item-body start-indent="body-start()">
						<fo:block>
							Don't forget to eat
						</fo:block>
					</fo:list-item-body>
				</fo:list-item>
				<fo:list-item>
					<fo:list-item-label end-indent="label-end()">
						<fo:block>5)</fo:block>
					</fo:list-item-label>
					<fo:list-item-body start-indent="body-start()">
						<fo:block>
							Sleep would be good
						</fo:block>
					</fo:list-item-body>
				</fo:list-item>
			</fo:list-block>
		</fo:flow>
	</fo:page-sequence>
</fo:root>

 

 

 

 <Page>

 

Every page has the following regions:

- fo:region-body which holds the main page content, that is, the cotent of fo:flow

- fo:region-before used to diaplay headers

- fo:region-after    userd to display footers

- fo:region-start    used to display left regions

- fo:region-end     used to display right regions

 

Of all regions, fo:region-body can have multiple columns:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE DTD SYSTEM "fo.dtd">
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
	<fo:layout-master-set>
		<fo:simple-page-master master-name="all-pages"
			page-width="5in" page-height="5in">
			<fo:region-body region-name = "Content"
				margin="0.7in" column-gap="0.25in"  column-count="2" />
			<fo:region-before region-name="Header" extent="0.7in"
				display-align="after"  background-color="red" />
			<fo:region-after region-name="Footer" extent="0.7in"
				display-align="before"  background-color="blue"
				precedence="true" />
			<fo:region-start region-name="LeftMargin" extent="0.7in"
				 background-color="green" reference-orientation="90"
				display-align="after" />
			<fo:region-end region-name="RightMargin" extent="0.7in"
				 background-color="yellow" reference-orientation="-90"
				display-align="after" />
		</fo:simple-page-master>
		<fo:page-sequence-master master-name="default-sequence">
			<fo:repeatable-page-master-reference
				master-reference="all-pages" />
		</fo:page-sequence-master>
	</fo:layout-master-set>

	<fo:page-sequence master-reference="default-sequence">
		<fo:static-content flow-name="Header" font-family="Arial"
			font-size="10pt" color="white">
			<fo:block>
				The header of the page is aligned on the bottom of
				fo:region-before.
			</fo:block>
		</fo:static-content>
		<fo:static-content flow-name="Footer" font-family="Arial"
			font-size="10pt" color="white">
			<fo:block>
				The footer of the page is aligned on the top of
				fo:region-after.
				The footer has the "precedence" attribute set.
			</fo:block>
		</fo:static-content>
		<fo:static-content flow-name="LeftMargin"
			font-family="Arial" font-size="10pt" color="white">
			<fo:block>
				This is the left margin of the page. The region is rotated
				90
				degrees, and the content is vertically aligned on the bottom.
			</fo:block>
		</fo:static-content>
		<fo:static-content flow-name="RightMargin"
			font-family="Arial" font-size="10pt">
			<fo:block>
				This is the right margin of the page. The region is rotated
				-90
				degrees, and the content is vertically aligned on the bottom.
			</fo:block>
		</fo:static-content>
		<fo:flow flow-name="Content" font-family="Microsoft YaHei"
			font-size="10pt" text-align="justify">
			<fo:block>
				The body region's content flows in two columns.
				The body region's content flows in two columns.
				The body region's content flows in two columns.
				The body region's content flows in two columns.
			</fo:block>
			<fo:block span="all" border="1pt solid red" padding="2pt"
				space-before="3pt" space-after="3pt" start-indent="2pt" end-indent="2pt">
				This block has "span" attribute set to all, which will make
				it span all the columns in the page. Note that span attribute
				can be set only for those blocks with a fo:flow as the direct parent.
			</fo:block>
			<fo:block>
				The body region's content flows in two columns.
				The body region's content flows in two columns.
				The body region's content flows in two columns.
				The body region's content flows in two columns.
			</fo:block>
		</fo:flow>
	</fo:page-sequence>
</fo:root>

 


 

 

 

 

 

 <Page Numbers>

 

fo:page-number is used to insert the current page number.

fo:page-number-citation is used to retrieve the page number of a given element. This elment is also usefull in insert the number of pages in a document, as show below:

 

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE DTD SYSTEM "fo.dtd">
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
	<fo:layout-master-set>
		<fo:simple-page-master master-name="LetterPage"
			page-width="297mm" page-height="210mm" margin="0.2in">
			<fo:region-body region-name="PageBody" />
			<fo:region-after region-name="Footer" extent="0.2in" />
		</fo:simple-page-master>
	</fo:layout-master-set>
	<fo:page-sequence master-reference="LetterPage" font="10pt Arial">
		<!-- 使用static-content在foot中显示页码 -->
		<fo:static-content flow-name="Footer">
			<!-- 定义1个上边框作为一条横线,与正文隔开,在其下方显示页码 -->
			<fo:block text-align="right" border-top="1pt solid black"
				padding-top="1mm">
				Page 
				<fo:page-number /> 
				of
				<fo:page-number-citation ref-id ="the End" />
			</fo:block>
		</fo:static-content>
		<fo:flow flow-name="PageBody">
			<fo:block>
				The text content of the first page.
			</fo:block>
			<fo:block break-before="page">
				The text content of the second page.
			</fo:block>
			<!-- 正文末尾处声明"引用" -->
			<fo:block id="the End" />
		</fo:flow>
	</fo:page-sequence>
</fo:root>

 

 

 

 

<分栏>

column-count

Specify the number of columns in the region.

Initial value: 1

A value of 1 indicates that this is not a multi-column region.

指定block中的内容将被分为几栏

column-gap    指定栏与栏之间的间隔(需与column-count结合使用才有意义)

Initial value: 12pt

 

<fo:region-body region-name="xsl-region-body" margin="0.1in" background-color="rgb(245,245,245)" column-count="2" column-gap="0.25in"/>

 

注意:当column-count>1的时候指定column-gap才有意义!

 

 

 

 

 

  • 大小: 23.8 KB
  • 大小: 205.6 KB
  • 大小: 88.8 KB
分享到:
评论

相关推荐

    基于NSGA2与熵权TOPSIS的电力系统储能选址定容优化及Matpower潮流计算研究

    内容概要:本文详细探讨了利用NSGA2算法进行电力系统中储能系统的选址和定容优化,并结合熵权TOPSIS方法选择最优解。首先介绍了使用Matpower工具包进行潮流计算的基础步骤,随后深入讨论了储能系统引入后的复杂性和优化目标设定。文中展示了如何构建目标函数,包括储能的投资成本和系统电压偏差,并详细解释了NSGA2算法的具体实现,如种群初始化、交叉变异操作以及约束条件处理。最后,通过熵权法确定权重并应用TOPSIS方法对多个优化结果进行评估,选出综合性能最佳的储能配置方案。 适合人群:从事电力系统规划、优化算法研究的专业人士,尤其是对储能系统优化感兴趣的科研人员和技术开发者。 使用场景及目标:适用于需要解决电力系统中储能系统选址和定容问题的实际工程项目。主要目标是在满足系统稳定性要求的前提下,最小化储能系统的投资成本,提高系统的经济性和可靠性。 其他说明:文章提供了详细的代码片段和理论推导,帮助读者更好地理解和实施所提出的优化方法。此外,还提到了一些实际应用中的注意事项,如SOC约束处理、参数选择等,为后续的研究和应用提供了宝贵的实践经验。

    基于python+pyqt5实现视频自动化下载、剪辑和上传系统源码+项目说明.zip

    基于python+pyqt5实现视频自动化下载、剪辑和上传系统源码+项目说明.zip 该项目是用脚本实现部分视频网站视频内容的自动化下载、剪辑以及上传,其中界面是用PyQT做的。 使用的浏览器驱动是undetected_chromedriver,可以跳过tiktok的机器人检查 使用的浏览器是91,版本:Google_Chrome_(64bit)_v91.0.4472.77 【功能】 自动从各种视频网站下载视频 支持视频剪辑和合集制作 支持自动上传视频到视频网站 技术栈 Python PyQT undetected_chromedriver

    西门子S7-1200双套三坐标6轴联动控制系统的设计与实现

    内容概要:本文详细介绍了西门子S7-1200双套三坐标6轴联动控制系统的开发与调试经验。主要内容涵盖双PLC通信机制、轴控制逻辑、安全联锁设计以及触摸屏程序绑定等方面。文中通过具体代码示例展示了如何利用SCL语言实现高效稳定的多轴联动控制,并分享了实际项目中的最佳实践和技术难点解决方案。此外,还讨论了程序结构优化、报警代码设计、数据块管理等关键环节,强调了模块化设计思想的应用及其带来的效率提升。 适合人群:从事工业自动化领域的工程师,尤其是熟悉西门子PLC编程的专业人士。 使用场景及目标:适用于需要进行复杂运动控制的自动化生产线,如汽车制造、电子装配等行业。主要目标是提高生产效率,确保设备运行的安全性和稳定性。 其他说明:文中提到的许多技术和方法不仅限于特定型号的PLC,对于其他品牌的控制器也有一定的借鉴意义。同时,提供的代码片段可以直接应用于类似项目中,帮助开发者快速搭建可靠的控制系统。

    NFC Tools Pro

    NFC Tools是一个应用程序,允许你在你的 NFC 标签和其他 RFID 兼容芯片上读取或写入或编程代码任务。NFC Tools PRO版本包括很多其他的附加功能,比如配置文件管理等。保存你的NFC标签或任务的配置文件,以便你以后重新使用它们。导出和导入很容易。NFC Tools PRO官方版允许你直接从现有的 NFC 标签导入你的记录或任务。 你可以很快编辑你的标签。此外还可以直接运行你的任务配置文件,不需要NFC 标签。

    protobuf-6.30.1-py3-none-any.whl

    该资源为protobuf-6.30.1-py3-none-any.whl,欢迎下载使用哦!

    FLAC3D中壳单元与衬砌单元内力提取及处理技巧

    内容概要:本文详细介绍了如何在FLAC3D中提取壳单元和衬砌单元的关键内力数据,如弯矩、轴力和剪力。针对壳单元,文中提供了具体的FISH命令和函数,展示了如何利用gp.extra属性提取弯矩,并强调了局部坐标系方向的重要性。对于衬砌单元,则介绍了专门的命令和注意事项,如使用liner组件提取轴力和剪力,以及如何处理弯矩数据。此外,还分享了一些实用的经验和技巧,如批量数据处理、单位换算、内力符号规则等。最后,提到了使用Python进行后处理的方法,将提取的数据转化为更直观的形式,便于进一步分析。 适合人群:从事岩土工程、隧道工程及相关领域的工程师和技术人员,尤其是对FLAC3D有一定基础的用户。 使用场景及目标:帮助用户掌握FLAC3D中壳单元和衬砌单元内力提取的具体方法,提高工作效率,确保数据分析的准确性。适用于需要进行结构内力分析、支护设计优化等项目的工程师。 其他说明:文章不仅提供了详细的命令和函数示例,还分享了许多实战经验和常见错误的规避方法,有助于初学者少走弯路。同时,强调了内力符号规则和单位换算的重要性,避免因疏忽导致的重大失误。

    ST PMSM FOC电机控制资料包2.0:全面解析STM32电机控制核心技术与实战技巧

    内容概要:本文详细介绍了ST公司发布的HL07:ST PMSM FOC电机控制资料包2.0的内容及其应用。资料包涵盖了ST芯片电机控制的全源代码、详细文档、多个工程源码、stm32库培训资料及例程源码。文中通过具体的代码示例,如GPIO初始化、PWM配置、ADC采样、Clarke变换、PID调节器、SVPWM生成等,深入剖析了电机控制的关键技术和优化技巧。此外,还揭示了一些隐藏的技术细节和调试技巧,如硬件同步、动态调整PID参数、电机参数自识别等。 适合人群:电机控制工程师、嵌入式开发人员、尤其是对STM32和FOC算法感兴趣的开发者。 使用场景及目标:帮助读者深入了解ST芯片电机控制的具体实现,掌握从硬件配置到算法优化的全过程,提高实际项目的开发效率和质量。适用于需要进行电机控制系统设计、调试和优化的工程项目。 其他说明:资料包中的代码和文档非常实用,提供了丰富的实战经验和优化建议,尤其适合初学者和有一定基础的研发人员。同时,文中提到的一些特殊技巧和注意事项有助于避免常见的开发陷阱,提升系统的稳定性和性能。

    人工智能2025年AI领袖与技术发展趋势:多模态AI、量子计算及行业应用展望

    内容概要:文章探讨了2025年AI技术发展趋势及潜在的GPT级技术突破。首先回顾了GPT系列模型的发展历程及其对自然语言处理领域的深远影响。接着,通过介绍Geoffrey Hinton、李飞飞和张晨等AI领袖的观点,阐述了AI技术在实际应用场景中的挑战与机遇。文中详细描述了AI大模型的演进,包括多模态技术的发展、轻量化趋势以及可控性和可解释性的提升。此外,还介绍了AI计算力的革命性升级,如量子计算、云计算+AI和边缘AI的发展。最后,文章分析了AI在医疗、金融、教育、自动驾驶等行业的落地应用,并指出了面临的挑战与机遇,展望了未来的技术和社会影响。 适合人群:对AI技术感兴趣的从业者、研究人员、企业家及政策制定者。 使用场景及目标:①了解AI技术的最新进展和未来趋势;②探索AI技术在各行业的应用前景;③评估AI技术带来的挑战与机遇,为相关决策提供参考。 阅读建议:本文内容涵盖广泛,既有技术细节又有宏观展望,建议读者结合自身背景选择感兴趣的部分深入阅读,重点关注与自身行业或研究方向相关的章节。

    基于樽海鞘算法优化的极限学习机回归预测及其与BP、GRNN、ELM的性能对比研究

    内容概要:本文详细探讨了基于樽海鞘算法(SSA)优化的极限学习机(ELM)在回归预测任务中的应用,并与传统的BP神经网络、广义回归神经网络(GRNN)以及未优化的ELM进行了性能对比。首先介绍了ELM的基本原理,即通过随机生成输入层与隐藏层之间的连接权重及阈值,仅需计算输出权重即可快速完成训练。接着阐述了SSA的工作机制,利用樽海鞘群体觅食行为优化ELM的输入权重和隐藏层阈值,从而提高模型性能。随后分别给出了BP、GRNN、ELM和SSA-ELM的具体实现代码,并通过波士顿房价数据集和其他工业数据集验证了各模型的表现。结果显示,SSA-ELM在预测精度方面显著优于其他三种方法,尽管其训练时间较长,但在实际应用中仍具有明显优势。 适合人群:对机器学习尤其是回归预测感兴趣的科研人员和技术开发者,特别是那些希望深入了解ELM及其优化方法的人。 使用场景及目标:适用于需要高效、高精度回归预测的应用场景,如金融建模、工业数据分析等。主要目标是提供一种更为有效的回归预测解决方案,尤其是在处理大规模数据集时能够保持较高的预测精度。 其他说明:文中提供了详细的代码示例和性能对比图表,帮助读者更好地理解和复现实验结果。同时提醒使用者注意SSA参数的选择对模型性能的影响,建议进行参数敏感性分析以获得最佳效果。

    工业自动化中汇川PLC与基恩士PLC基于EIP通讯的联机实现及应用

    内容概要:本文详细介绍了汇川PLC与基恩士PLC通过Ethernet/IP (EIP) 协议实现联机的方法及其应用场景。首先,文章解释了硬件配置,包括基恩士KV-7300 CPU搭配KV-EP21v以太网通信模块以及汇川AM-400系列PLC的网口连接。接下来,分别阐述了基恩士和汇川PLC的程序框架,涵盖初始化EIP通讯模块、设置IP地址、建立连接、数据映射及心跳检测机制等关键技术点。此外,文中提供了具体的代码示例和调试建议,如使用Wireshark抓包工具排查问题,并强调了数据同步、字节序转换、超时处理等方面需要注意的地方。最后,分享了一些实践经验,例如确保正确的IP地址分配、合理的缓冲区大小规划、良好的接地措施等。 适合人群:从事工业自动化领域的工程师和技术人员,尤其是对PLC编程有一定基础并希望深入了解不同品牌PLC间通讯机制的专业人士。 使用场景及目标:适用于需要将不同品牌PLC集成到同一个控制系统中的工业项目,旨在提高系统的灵活性和互操作性。通过掌握本文介绍的技术要点,可以有效减少因PLC品牌差异带来的兼容性和稳定性问题。 其他说明:文中不仅提供了理论指导,还结合实际案例进行了深入浅出的讲解,帮助读者更好地理解和应用相关技术。同时,针对可能出现的问题给出了预防和解决方案,使读者能够在实践中少走弯路。

    基于STM32F4的VESC非线性磁链观测器移植与优化

    内容概要:本文详细记录了作者将VESC项目的非线性磁链观测器移植到STM32F4开发板的过程。首先介绍了FOC技术和VESC源码的重要性和特点,然后重点阐述了非线性磁链观测器的实现方法及其核心代码。接着讨论了移植过程中遇到的技术难题,如实时性、稳定性、中断处理、电流采样等问题,并分享了解决这些问题的具体措施。最后展示了测试结果,证明了移植的成功以及观测器的良好性能。 适合人群:具有一定嵌入式开发经验的研发人员,特别是从事电机控制领域的工程师和技术爱好者。 使用场景及目标:适用于希望深入理解VESC源码和非线性磁链观测器的工作机制,掌握STM32F4平台上FOC算法实现的人群。目标是在实际项目中应用这些技术,提高电机控制系统的性能。 其他说明:文中提供了大量实用的代码片段和调试技巧,帮助读者更好地理解和解决问题。此外,作者还分享了一些个人经验和心得,增加了文章的趣味性和实用性。

    Quectel-LTE&5G-Windows-USB-Driver-V2.2.6-beta-20201230

    移远EC20 Windows驱动 操作系统 - 桌面系统 - 移远EC20 Windows驱动

    检证资料jianzhen.ppt

    检证资料jianzhen.ppt

    ### 【嵌入式开发】基于Qt的ATK-DLRK3568实战指南:从入门到项目实战题:嵌

    内容概要:本文档《ATK-DLRK3568嵌入式Qt开发实战V1.2》是正点原子出品的一份面向初学者的嵌入式Qt开发指南,主要内容涵盖嵌入式Linux环境下Qt的安装配置、C++基础、Qt基础、多线程编程、网络编程、多媒体开发、数据库操作以及项目实战案例。文档从最简单的“Hello World”程序开始,逐步引导读者熟悉Qt开发环境的搭建、常用控件的使用、信号与槽机制、UI设计、数据处理等关键技术点。此外,文档还提供了详细的项目实战案例,如车牌识别系统的开发,帮助读者将理论知识应用于实际项目中。 适合人群:具备一定Linux和C++基础,希望快速入门嵌入式Qt开发的初学者或有一定开发经验的研发人员。 使用场景及目标: 1. **环境搭建**:学习如何在Ubuntu环境下搭建Qt开发环境,包括安装必要的工具和库。 2. **基础知识**:掌握C++面向对象编程、Qt基础控件的使用、信号与槽机制等核心概念。 3. **高级功能**:理解多线程编程、网络通信、多媒体处理、数据库操作等高级功能的实现方法。 4. **项目实战**:通过具体的项目案例(如车牌识别系统),巩固

    tcl-tclxml-devel-3.2-26.el8.x64-86.rpm.tar.gz

    1、文件说明: Centos8操作系统tcl-tclxml-devel-3.2-26.el8.rpm以及相关依赖,全打包为一个tar.gz压缩包 2、安装指令: #Step1、解压 tar -zxvf tcl-tclxml-devel-3.2-26.el8.tar.gz #Step2、进入解压后的目录,执行安装 sudo rpm -ivh *.rpm

    C盘清理bat脚本自动清理C盘垃圾文件

    C盘清理bat脚本自动清理C盘垃圾文件

    桶排.txt

    桶排

    基于混沌系统的图像加密算法:循环移位扰乱与水平垂直扩散的应用及性能评估

    内容概要:本文详细介绍了利用混沌系统进行图像加密的方法,重点探讨了Logistic映射生成混沌序列用于图像加密的具体实现。首先,通过生成混沌序列并对其进行预热处理,确保序列的随机性和稳定性。然后,采用循环移位扰乱方法对图像像素进行重新排列,使图像像素位置发生改变。接着,通过水平和垂直扩散步骤进一步打乱像素之间的关联性,增强了加密效果。文中还展示了如何通过直方图、信息熵和相关系数等指标评估加密效果,验证了该方法的有效性。 适合人群:对图像加密技术和混沌系统感兴趣的科研人员、信息安全领域的开发者和技术爱好者。 使用场景及目标:适用于研究和开发高效的图像加密算法,特别是在需要高安全性的应用场景中,如军事通信、隐私保护等领域。目标是提供一种基于混沌系统的高效、安全的图像加密解决方案。 其他说明:文中提供了详细的Python代码实现,帮助读者更好地理解和实践该加密方法。同时,强调了在实际应用中需要注意的一些关键点,如参数选择和优化,以确保最佳的加密效果。

    基于EEMD奇异值熵的滚动轴承故障诊断方法研究

    基于EEMD奇异值熵的滚动轴承故障诊断方法研究

    【数据结构与算法】分块查找算法实现:有序分块数据快速检索方法研究

    内容概要:本文档介绍了分块查找的基本思想及其具体实现方法。分块查找的核心在于将一个数据集划分为若干个块,块内部元素可以无序排列,但块间元素必须保持有序(对于非递减序列,后一块的所有元素均大于前一块)。文档通过C#语言实现了分块查找算法,定义了IndexBlock结构体用于存储每个块的最大值、起始位置和结束位置,并展示了如何初始化分块以及执行具体的查找操作。最后通过一个简单的例子演示了分块查找的应用,当查找成功时返回元素在数组中的索引,否则返回-1表示查找失败。; 适合人群:计算机科学专业学生或有一定编程基础的技术人员。; 使用场景及目标:①理解分块查找算法的工作原理;②掌握利用C#实现分块查找的具体步骤;③学习如何根据实际需求选择合适的查找算法以提高效率。; 其他说明:此文档不仅提供了理论性的概念解释,还结合了实际代码示例帮助读者更好地理解分块查找算法,建议读者在阅读过程中尝试运行代码并理解每一部分的功能。

Global site tag (gtag.js) - Google Analytics