Paged Media CSS examples: Difference between revisions

From XPUB & Lens-Based wiki
No edit summary
Line 124: Line 124:
* https://www.pagedjs.org/
* https://www.pagedjs.org/
* https://weasyprint.readthedocs.io/
* https://weasyprint.readthedocs.io/
* https://pandoc.org/ (markdown to PDF oneliner: <code>$ pandoc -f markdown --pdf-engine weasyprint -c stylesheet.css filename.md -o filename.pdf</code>)
* https://pandoc.org/  
 
markdown to PDF oneliner: <code>$ pandoc -f markdown --pdf-engine weasyprint -c stylesheet.css filename.md -o filename.pdf</code>


[[Category:Cookbook]]
[[Category:Cookbook]]
[[Category:PagedMedia]]
[[Category:PagedMedia]]

Revision as of 11:53, 6 July 2021

@page

@page {
  size: A5 portrait;
}

@page:right @page:left

@page:right {
  margin-left: 3cm; /*inner*/
  margin-right:1cm; /*outer*/ 
  
  @bottom-right {
    content: "Testing 123!!!";
  }
  
  @bottom-center {
    content: "Testing WeasyPrint";
  }
}

@page customsection

@page custom{
  background-color: lightyellow;
  
  @bottom-center {
    content: "Testing WeasyPrint";
  }
}

section#custom{
  page: customsection;
}

@page:left {
  margin-right: 10mm; /*inner*/
  margin-left: 15mm; /*outer*/

  @bottom-left {
    content: "Testing WeasyPrint";
  }

  @bottom-center {
    content: "Testing WeasyPrint";
  }
}

@page:first

@page:first {
  @bottom-center { 
    content: ""; 
  }
  @bottom-right { 
    content: ""; 
  }
}

@page:customsection

@page customsection {
  background-color: pink;

  @top-center { 
    content: "Hello :)"; 
  }
}

section#custom{
  page: customsection;
}


pagenumbers

...


pagenumbers

...

hyphens

    hyphens: auto;
    hyphenate-limit-chars: 8;

display links in print

a[href]:after {
	content: ' (' attr(href) ')';
}


Links

Paged Media CSS references

html2print PDF engines

markdown to PDF oneliner: $ pandoc -f markdown --pdf-engine weasyprint -c stylesheet.css filename.md -o filename.pdf