



















Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
How to use CSS page composition with the Preview Version of Antenna House Formatter V5 to set up pages, create running headers and page numbers. It covers topics such as @page rule, size property, margin property, margin boxes, and running header setting.
Typology: Study notes
1 / 27
This page cannot be seen from the preview
Don't miss anything!




















(1) (^) CSS3 is not a monolithic specification, but devided into functional modules. Major modules are listed at
(Chapter 19. Reference specifications). In order to study CSS3, the knowledge about CSS2.1 (CSS Level 2 Revision 1, Candidate Recommendation), on which CSS3 is based, is necessary.
Preface
Chapter 1. Setup of page
@page rule sets basic settings such as page size, margin, and page header/footer.
@page { size: A4; margin: 25mm; @top-center { content: "Sample"; } @bottom-center { content: counter(page); } }
Width and height of a page should be set with size property.
@page { size : 182mm 230mm; }
@page { size : 4in 6in; }
Keywords such as A5, A4, A3, B5, B4, letter, legal and ledger can be used for the value of size
property. AH Formatter supports other originally defined page names.
@page { size: A4 ; /* ISO/JIS A4 (210mm×297mm) */ }
@page { size: B5 ; /* ISO B5 (176mm×250mm) */ }
@page { size: JIS-B5 ; /* JIS B5 (182mm×257mm) */ }
Landscape orientation can be specified with a keyword “landscape”.
Chapter 1. Setup of page
@page { size: A4 landscape ; /* A4 landscape (297mm×210mm) */ }
Page margin can be specified with margin property in @page rule.
@page { margin : 10%; /* top, bottom, left, and right margins will be 10% of the page width respectively */ }
@page { /* top and bottom margins are 2cm, left and right margins are 3cm */ margin-top : 2cm; margin-bottom : 2cm; margin-left : 3cm; margin-right : 3cm; }
Page header/footer will be assigned to margin box which is the area around a page. Margin boxes are named after the location such as @top-left, @top-center, @top-right,
@bottom-left, @bottom-center, @bottom-right.
@page { @top-right { /* Page header / content : "Sample"; } @bottom-center { / Page footer */ content : counter(page); } }
Chapter 1. Setup of page
@bottom-right { /* page number */ content: counter(page); } }
@page :first { /* setting of the first page of a document / / hide page header */ @top-right { content: normal } @top-left { content: normal } }
Chapter 2. Running header and page number
Words from headings in the body can be displayed in the page header.
@page { @top-left { content: string(Chapter) ; } }
h1 { string-set: Chapter self ; }
counter(page) is used for generating page numbers.
@page { @top-right { content: "Page " counter(page) ; } }
Total pages may be output with current page number as Page 8 of 27.
@page { @top-right { content: "Page " counter(page) " of " counter(pages) ; } }
Chapter 4. Cross reference
Chapter and/or page number which is referred to can be automatically added such that “Please
refer to Chapter 3. Counter (page 9)”.
.ChapterRef::before { content: "Chapter " target-counter(attr(href, url), ChapterNo) ". "; } .PageRef::after { content: "(page " target-counter(attr(href, url), page) ")"; } ... Please refer to Counter.
Text which is referred to can be inserted. E.g.) “Chapter 4. Cross reference”
.TitleRef { content: target-text(attr(href, url), before) target-text(attr(href, url), content) ; } ... E.g.) “This chapter”
Chapter 5. Creation of table of contents
Table of contents can be created with target-counter() which can refer to chapter and page
number (please refer to Chapter 4. Cross reference), as following example:
Chapter 1. Page setup............................................ 4 Chapter 2. Running header and page number........................... 8 Chapter 3. Counter.............................................. 9
.TOC a::before { /* add chapter number to the table of contents / content: "Chapter " target-counter(attr(href, url), ChapterNo) ". "; } .TOC a::after { / add page number to the table of contents */ content: leader(dotted) " " target-counter(attr(href, url), page) ; } ...
Page setup Running header and page number Counter
With leader() function, leader (such as dots) can be added between title and page number in
table of contents to right-align page numbers.
Chapter 7. Named page
Several types of @page rules with specific names can be created and switched as appropriate.
@page Landscape { /* named page with Landscape definition / size: A4 landscape; } @page Appendix { / named page with Appendix definition / @top-center: "Appendix"; } table.WideTable { page: Landscape; / place a large table on the side of a Landscape page / } div.Appendix { page: Appendix; / add Appendix to Appendix page */
Chapter 8. Multi-column layout
The current block is set as the column-count
to be 2. column-gap and column-rule are
specified as well.
div.MultiCol { column-count : 2; column-gap : 5mm; column-rule : dotted green 1mm; }
Alternative method is to specify column-
width instead of column-count. The number of
columns will be automatically set based on the width of page and column. column-rule is a shorthand and has the same effect as the following example:
column-rule-style : dotted; column-rule-color : green; column-rule-width : 1mm;
(2) (^) Footnote is the note which is written on the bottom of a page. (3) (^) 'float: page bottom' from Chapter 9. Page float is used for the footnote alignment. @footnote rule in @page
rule can be used to set footnote area. Pseudo elements such as ::footnote-call, ::footnote-marker will be used to set style for note number.
Chapter 10. Footnotes
Content of the element on which 'float: footnote' is specified will be output as a footnote(2)(3).
When footnote is specified in float property, the contents will be noted as footnote footnote is the note which is written on the bottom of a page. ...
Chapter 11. PDF bookmark
PDF bookmark can be created. Set level in bookmark-level property to create a bookmark
item. The level corresponds to the level of h1-h6 headings in
HTML. Titles in bookmark contents may be set with bookmark-
label property. Text contents will be used for bookmark-label if
label is not specified.
h1 { bookmark-level: 1 } h2 { bookmark-level: 2 } h3 { bookmark-level: 3 } h4 { bookmark-level: 4 } h5 { bookmark-level: 5 } h6 { bookmark-level: 6 }
Chapter 13. Rounded borders
To round border corners, the radius should be set with border-radius property.
Border-radius...
Border-radius (rounded border) is set.
Radii of each corner can be set individually. Corners can be set as ellipse by setting different sizes for horizontal and vertical directions of radius.
**Chapter 14. Shadowed boxes**To add shadow to boxes, set box-shadow property with width, height, and color of shadow.
...
Box-shadow (shadowed boxe) is set.
...
Multiple shadows can be specified in box-shadow property. Corners of the shadow can be rounded with border-radius property.