SlideShare a Scribd company logo
Ministère
delaJustice
Alternative toAlternative to forfor
High Quality ReportsHigh Quality Reports
HTML AND CSS FOR PAGINATED DOCUMENTS
uRos2018
Romain Lesur
Deputy Head of the Statistical Service
Retrouvez-nous sur
justice.gouv.fr
Documents are built from source.
A reproducible workflow
Interactive document .html
Static portable document .pdf with
Ms Word .docx
LibreOffice .odt
...
Multiple output formats
Benefits of R MarkdownBenefits of R Markdown
Ministère
de la Justice
Alternative to for High Quality Reports
Use of in Official Statistics 2018 – The Hague
p. 2
Take an organization
where documents have to
comply with a corporate
design…
…a Grid Model…
…template done with publishing
softwares:
InDesign®
MS Publisher
Scribus…
Use of R Markdown in an organizationUse of R Markdown in an organization
Ministère
de la Justice
Alternative to for High Quality Reports
Use of in Official Statistics 2018 – The Hague
p. 3
Statisticians send .docx or .odt files & spreadsheets with data (for plots) to
publishing assistants.
A non-reproducible workflow!
The usual workflow
Develop a PDF document template
Build a ggplot2 theme
Solution
Statistical publicationsStatistical publications
Ministère
de la Justice
Alternative to for High Quality Reports
Use of in Official Statistics 2018 – The Hague
p. 4
documents are perfect!
has a painful learning curve.
templates are hard to maintain.
With ?
LaTeX is Dead (long live LaTeX) by Deyan Ginez
In HTML and the Web I Trust by Yihui Xie
Is legacy?
Developping a PDF document templateDevelopping a PDF document template
Ministère
de la Justice
Alternative to for High Quality Reports
Use of in Official Statistics 2018 – The Hague
p. 5
Major publishers had re-built their print-publishing toolchains using HTML
and CSS for Paged Media .
see Streamlining CSS Print Design with Sass for O’Reilly Media
and Beyond XML: Making Books with HTML for Hachette Book
Evolution in the publishing
industry
Thanks to RMarkdown, R users can easily produce a HTML document.
Many R users learned HTML and CSS in order to customize their HTML
documents or their Shiny apps.
Make a PDF template with CSS rules
Main idea
Another approach for publishingAnother approach for publishing
Ministère
de la Justice
Alternative to for High Quality Reports
Use of in Official Statistics 2018 – The Hague
p. 6
The CSS for Paged Media standard is a subset of the W3C CSS specifications:
CSS Paged Media Module Level 3
CSS Generated Content for Paged Media Module
CSS Page Floats
CSS Fragmentation Module Level 3
The CSS for Paged Media
Standard
What is CSS for Paged Media?What is CSS for Paged Media?
Ministère
de la Justice
Alternative to for High Quality Reports
Use of in Official Statistics 2018 – The Hague
p. 7
The page modelThe page model
source: www.w3.org/TR/css3-page
copyright © 2013 World Wide Web Consortium, (MIT, ERCIM, Keio, Beihang).
http://www.w3.org/Consortium/Legal/2015/doc-license
status: Working Draft
Ministère
de la Justice
Alternative to for High Quality Reports
Use of in Official Statistics 2018 – The Hague
p. 8
The margin boxesThe margin boxes
Ministère
de la Justice
Alternative to for High Quality Reports
Use of in Official Statistics 2018 – The Hague
p. 9
@page {
size: a4;
margin: 15mm;
@bottom-right-corner {
content: "p. " counter(page);
}
}
Size, margins and page
numbering
New CSS at-rulesNew CSS at-rules
Ministère
de la Justice
Alternative to for High Quality Reports
Use of in Official Statistics 2018 – The Hague
p. 10
@page :right {
@bottom-right-corner {
content: counter(page) " of " counter(pages);
}
}
@page :left {
@bottom-left-corner {
content: counter(page) " of " counter(pages);
}
}
Pseudo classes
Ministère
de la Justice
Alternative to for High Quality Reports
Use of in Official Statistics 2018 – The Hague
p. 11
h1.level1 {
page-break-before: always;
}
Page break before a new
section
table {
page-break-inside: avoid;
}
Avoid page break inside
tables
Control page breaksControl page breaks
Ministère
de la Justice
Alternative to for High Quality Reports
Use of in Official Statistics 2018 – The Hague
p. 12
Top browsers in use do not support CSS for Paged Media.
You cannot rely on (headless) browsers to generate a PDF file from HTML.
Browsers support
Need to use a converter that supports the CSS for Paged Media standard
Comprehensive list of converters: print-css.rocks/tools.html
This slideshow was made with Prince XML: www.princexml.com
Note: a promising project of the Paged Media initiative named Paged.js
(polyfill for Paged Media)
This could be a game changer.
Converters
How to generate a PDF with CSS for Paged Media?How to generate a PDF with CSS for Paged Media?
Ministère
de la Justice
Alternative to for High Quality Reports
Use of in Official Statistics 2018 – The Hague
p. 13
github.com/RLesur/weasydoc
R package dedicated to CSS for Paged Media (WIP)
devtools::install_github('RLesur/weasydoc')
For now, weasydoc provides some basic RMarkdown output formats:
hpdf_document() and hpdf_document_base()
hpdf_book() and hpdf_document2() for bookdown
weasydoc
How to use CSS for Paged Media with R?How to use CSS for Paged Media with R?
Ministère
de la Justice
Alternative to for High Quality Reports
Use of in Official Statistics 2018 – The Hague
p. 14
version 2.1.3 min., 2.2.1 recommended
pandoc.org
Compatible pandoc version in the latest RStudio preview
pandoc
Supported converters
weasyprint.org open source software (BSD-3 License)
WeasyPrint
Prince is a commercial software.
Free license for non-commercial purposes
Prince XML
System requirementsSystem requirements
Ministère
de la Justice
Alternative to for High Quality Reports
Use of in Official Statistics 2018 – The Hague
p. 15
rlesur/weasydoc built from rocker/verse:3.5.0 (not for production!)
docker run --rm -dp 8787:8787 rlesur/weasydoc:latest
Docker image
frama.link/weasydoc
Access to RStudio with WeasyPrint and Prince available on system
MyBinder environment
Don’t want to install anything?Don’t want to install anything?
Ministère
de la Justice
Alternative to for High Quality Reports
Use of in Official Statistics 2018 – The Hague
p. 16
Chapters with
RMarkdown
Book with bookdown
ggplot2 theme
What can be done with CSS for Paged Media?What can be done with CSS for Paged Media?
Ministère
de la Justice
Alternative to for High Quality Reports
Use of in Official Statistics 2018 – The Hague
p. 17
CMYK colors (4 inks)
Accessibility (PDF/UA) not so easy with …
Graphics exchange with publishing firms (PDF/X)
Use a professional
converter if you need
Document qualityDocument quality
Ministère
de la Justice
Alternative to for High Quality Reports
Use of in Official Statistics 2018 – The Hague
p. 18
There are a lot of great ressources on the web to learn CSS for Paged Media:
A Guide To The State Of Print Stylesheets In 2018 by Rachel Andrew
print-css.rocks website by Andreas Jung
Introduction to CSS for Paged Media by Tony Graham, Antenna House - XML
Prague 2018 Conference.
Prince User Guide
Going furtherGoing further
Ministère
de la Justice
Alternative to for High Quality Reports
Use of in Official Statistics 2018 – The Hague
p. 19
O’Reilly Media tutorials on Youtube:
Part 1: Introduction to HTML and CSS
Part 2: Basic Layout and Text Formatting
Part 3: Paged Media Basics
Part 4: Generated Content - Counters & Strings
Going furtherGoing further
Ministère
de la Justice
Alternative to for High Quality Reports
Use of in Official Statistics 2018 – The Hague
p. 20

More Related Content

Similar to Alternative to Latex for High Quality Reports with RMarkdown

The Missed Promise of Hadoop and New and Emerging Technologies
The Missed Promise of Hadoop and New and Emerging TechnologiesThe Missed Promise of Hadoop and New and Emerging Technologies
The Missed Promise of Hadoop and New and Emerging Technologies
DATAVERSITY
 
Oracle BI Hybrid BI : Mode 1 + Mode 2, Cloud + On-Premise Business Analytics
Oracle BI Hybrid BI : Mode 1 + Mode 2, Cloud + On-Premise Business AnalyticsOracle BI Hybrid BI : Mode 1 + Mode 2, Cloud + On-Premise Business Analytics
Oracle BI Hybrid BI : Mode 1 + Mode 2, Cloud + On-Premise Business Analytics
Mark Rittman
 
Extending the Value of Content in Enterprise Systems with Web Content Management
Extending the Value of Content in Enterprise Systems with Web Content ManagementExtending the Value of Content in Enterprise Systems with Web Content Management
Extending the Value of Content in Enterprise Systems with Web Content Management
Scott Abel
 
A possible future role of schema.org for business reporting
A possible future role of schema.org for business reportingA possible future role of schema.org for business reporting
A possible future role of schema.org for business reporting
sopekmir
 
Paris FOD Meetup #5 Cognizant Presentation
Paris FOD Meetup #5 Cognizant PresentationParis FOD Meetup #5 Cognizant Presentation
Paris FOD Meetup #5 Cognizant Presentation
Abdelkrim Hadjidj
 
Big data Big Analytics
Big data Big AnalyticsBig data Big Analytics
Big data Big Analytics
Ajay Ohri
 
Xactly: How to Build a Successful Converged Data Platform with Hadoop, Spark,...
Xactly: How to Build a Successful Converged Data Platform with Hadoop, Spark,...Xactly: How to Build a Successful Converged Data Platform with Hadoop, Spark,...
Xactly: How to Build a Successful Converged Data Platform with Hadoop, Spark,...
MapR Technologies
 
Modernizing i5 Applications
Modernizing i5 ApplicationsModernizing i5 Applications
Modernizing i5 Applications
ZendCon
 
Next-Gen Analytics: Conversing with Big Data
Next-Gen Analytics: Conversing with Big DataNext-Gen Analytics: Conversing with Big Data
Next-Gen Analytics: Conversing with Big Data
IIS International Integrated Solutions
 
Benchmarking for Big Data Applications with the DataBench Framework, Arne Ber...
Benchmarking for Big Data Applications with the DataBench Framework, Arne Ber...Benchmarking for Big Data Applications with the DataBench Framework, Arne Ber...
Benchmarking for Big Data Applications with the DataBench Framework, Arne Ber...
DataBench
 
Cwin16 - Paris- m rapid
Cwin16 - Paris- m rapidCwin16 - Paris- m rapid
Cwin16 - Paris- m rapid
Capgemini
 
Schnellere Digitalisierung mit einer cloudbasierten Datenstrategie
Schnellere Digitalisierung mit einer cloudbasierten DatenstrategieSchnellere Digitalisierung mit einer cloudbasierten Datenstrategie
Schnellere Digitalisierung mit einer cloudbasierten Datenstrategie
MongoDB
 
Hands-on Microformats
Hands-on MicroformatsHands-on Microformats
Hands-on Microformats
Denise Jacobs
 
Viviota: R&D Engineering Analysis & Data Management
Viviota: R&D Engineering Analysis & Data ManagementViviota: R&D Engineering Analysis & Data Management
Viviota: R&D Engineering Analysis & Data Management
Doug Norton
 
BI4.2 SP06 and Beyond: The Future of SAP BusinessObjects Webi
BI4.2 SP06 and Beyond: The Future of SAP BusinessObjects WebiBI4.2 SP06 and Beyond: The Future of SAP BusinessObjects Webi
BI4.2 SP06 and Beyond: The Future of SAP BusinessObjects Webi
Wiiisdom
 
Making advanced analytics accessible to more companies
Making advanced analytics accessible to more companiesMaking advanced analytics accessible to more companies
Making advanced analytics accessible to more companies
Márton Kodok
 
Introduction to Knowledge Graphs and Semantic AI
Introduction to Knowledge Graphs and Semantic AIIntroduction to Knowledge Graphs and Semantic AI
Introduction to Knowledge Graphs and Semantic AI
Semantic Web Company
 
BIG Data & Hadoop Applications in Logistics
BIG Data & Hadoop Applications in LogisticsBIG Data & Hadoop Applications in Logistics
BIG Data & Hadoop Applications in Logistics
Skillspeed
 
SendGrid Improves Email Delivery with Hybrid Data Warehousing
SendGrid Improves Email Delivery with Hybrid Data WarehousingSendGrid Improves Email Delivery with Hybrid Data Warehousing
SendGrid Improves Email Delivery with Hybrid Data Warehousing
Amazon Web Services
 
Cloud Automation and Machine learning: A selection of real world case studies...
Cloud Automation and Machine learning: A selection of real world case studies...Cloud Automation and Machine learning: A selection of real world case studies...
Cloud Automation and Machine learning: A selection of real world case studies...
Amazon Web Services
 

Similar to Alternative to Latex for High Quality Reports with RMarkdown (20)

The Missed Promise of Hadoop and New and Emerging Technologies
The Missed Promise of Hadoop and New and Emerging TechnologiesThe Missed Promise of Hadoop and New and Emerging Technologies
The Missed Promise of Hadoop and New and Emerging Technologies
 
Oracle BI Hybrid BI : Mode 1 + Mode 2, Cloud + On-Premise Business Analytics
Oracle BI Hybrid BI : Mode 1 + Mode 2, Cloud + On-Premise Business AnalyticsOracle BI Hybrid BI : Mode 1 + Mode 2, Cloud + On-Premise Business Analytics
Oracle BI Hybrid BI : Mode 1 + Mode 2, Cloud + On-Premise Business Analytics
 
Extending the Value of Content in Enterprise Systems with Web Content Management
Extending the Value of Content in Enterprise Systems with Web Content ManagementExtending the Value of Content in Enterprise Systems with Web Content Management
Extending the Value of Content in Enterprise Systems with Web Content Management
 
A possible future role of schema.org for business reporting
A possible future role of schema.org for business reportingA possible future role of schema.org for business reporting
A possible future role of schema.org for business reporting
 
Paris FOD Meetup #5 Cognizant Presentation
Paris FOD Meetup #5 Cognizant PresentationParis FOD Meetup #5 Cognizant Presentation
Paris FOD Meetup #5 Cognizant Presentation
 
Big data Big Analytics
Big data Big AnalyticsBig data Big Analytics
Big data Big Analytics
 
Xactly: How to Build a Successful Converged Data Platform with Hadoop, Spark,...
Xactly: How to Build a Successful Converged Data Platform with Hadoop, Spark,...Xactly: How to Build a Successful Converged Data Platform with Hadoop, Spark,...
Xactly: How to Build a Successful Converged Data Platform with Hadoop, Spark,...
 
Modernizing i5 Applications
Modernizing i5 ApplicationsModernizing i5 Applications
Modernizing i5 Applications
 
Next-Gen Analytics: Conversing with Big Data
Next-Gen Analytics: Conversing with Big DataNext-Gen Analytics: Conversing with Big Data
Next-Gen Analytics: Conversing with Big Data
 
Benchmarking for Big Data Applications with the DataBench Framework, Arne Ber...
Benchmarking for Big Data Applications with the DataBench Framework, Arne Ber...Benchmarking for Big Data Applications with the DataBench Framework, Arne Ber...
Benchmarking for Big Data Applications with the DataBench Framework, Arne Ber...
 
Cwin16 - Paris- m rapid
Cwin16 - Paris- m rapidCwin16 - Paris- m rapid
Cwin16 - Paris- m rapid
 
Schnellere Digitalisierung mit einer cloudbasierten Datenstrategie
Schnellere Digitalisierung mit einer cloudbasierten DatenstrategieSchnellere Digitalisierung mit einer cloudbasierten Datenstrategie
Schnellere Digitalisierung mit einer cloudbasierten Datenstrategie
 
Hands-on Microformats
Hands-on MicroformatsHands-on Microformats
Hands-on Microformats
 
Viviota: R&D Engineering Analysis & Data Management
Viviota: R&D Engineering Analysis & Data ManagementViviota: R&D Engineering Analysis & Data Management
Viviota: R&D Engineering Analysis & Data Management
 
BI4.2 SP06 and Beyond: The Future of SAP BusinessObjects Webi
BI4.2 SP06 and Beyond: The Future of SAP BusinessObjects WebiBI4.2 SP06 and Beyond: The Future of SAP BusinessObjects Webi
BI4.2 SP06 and Beyond: The Future of SAP BusinessObjects Webi
 
Making advanced analytics accessible to more companies
Making advanced analytics accessible to more companiesMaking advanced analytics accessible to more companies
Making advanced analytics accessible to more companies
 
Introduction to Knowledge Graphs and Semantic AI
Introduction to Knowledge Graphs and Semantic AIIntroduction to Knowledge Graphs and Semantic AI
Introduction to Knowledge Graphs and Semantic AI
 
BIG Data & Hadoop Applications in Logistics
BIG Data & Hadoop Applications in LogisticsBIG Data & Hadoop Applications in Logistics
BIG Data & Hadoop Applications in Logistics
 
SendGrid Improves Email Delivery with Hybrid Data Warehousing
SendGrid Improves Email Delivery with Hybrid Data WarehousingSendGrid Improves Email Delivery with Hybrid Data Warehousing
SendGrid Improves Email Delivery with Hybrid Data Warehousing
 
Cloud Automation and Machine learning: A selection of real world case studies...
Cloud Automation and Machine learning: A selection of real world case studies...Cloud Automation and Machine learning: A selection of real world case studies...
Cloud Automation and Machine learning: A selection of real world case studies...
 

Recently uploaded

Palo Alto Cortex XDR presentation .......
Palo Alto Cortex XDR presentation .......Palo Alto Cortex XDR presentation .......
Palo Alto Cortex XDR presentation .......
Sachin Paul
 
一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理
aqzctr7x
 
Analysis insight about a Flyball dog competition team's performance
Analysis insight about a Flyball dog competition team's performanceAnalysis insight about a Flyball dog competition team's performance
Analysis insight about a Flyball dog competition team's performance
roli9797
 
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
bopyb
 
一比一原版(UCSF文凭证书)旧金山分校毕业证如何办理
一比一原版(UCSF文凭证书)旧金山分校毕业证如何办理一比一原版(UCSF文凭证书)旧金山分校毕业证如何办理
一比一原版(UCSF文凭证书)旧金山分校毕业证如何办理
nuttdpt
 
Orchestrating the Future: Navigating Today's Data Workflow Challenges with Ai...
Orchestrating the Future: Navigating Today's Data Workflow Challenges with Ai...Orchestrating the Future: Navigating Today's Data Workflow Challenges with Ai...
Orchestrating the Future: Navigating Today's Data Workflow Challenges with Ai...
Kaxil Naik
 
Udemy_2024_Global_Learning_Skills_Trends_Report (1).pdf
Udemy_2024_Global_Learning_Skills_Trends_Report (1).pdfUdemy_2024_Global_Learning_Skills_Trends_Report (1).pdf
Udemy_2024_Global_Learning_Skills_Trends_Report (1).pdf
Fernanda Palhano
 
writing report business partner b1+ .pdf
writing report business partner b1+ .pdfwriting report business partner b1+ .pdf
writing report business partner b1+ .pdf
VyNguyen709676
 
一比一原版(Unimelb毕业证书)墨尔本大学毕业证如何办理
一比一原版(Unimelb毕业证书)墨尔本大学毕业证如何办理一比一原版(Unimelb毕业证书)墨尔本大学毕业证如何办理
一比一原版(Unimelb毕业证书)墨尔本大学毕业证如何办理
xclpvhuk
 
原版一比一多伦多大学毕业证(UofT毕业证书)如何办理
原版一比一多伦多大学毕业证(UofT毕业证书)如何办理原版一比一多伦多大学毕业证(UofT毕业证书)如何办理
原版一比一多伦多大学毕业证(UofT毕业证书)如何办理
mkkikqvo
 
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
v7oacc3l
 
Beyond the Basics of A/B Tests: Highly Innovative Experimentation Tactics You...
Beyond the Basics of A/B Tests: Highly Innovative Experimentation Tactics You...Beyond the Basics of A/B Tests: Highly Innovative Experimentation Tactics You...
Beyond the Basics of A/B Tests: Highly Innovative Experimentation Tactics You...
Aggregage
 
Intelligence supported media monitoring in veterinary medicine
Intelligence supported media monitoring in veterinary medicineIntelligence supported media monitoring in veterinary medicine
Intelligence supported media monitoring in veterinary medicine
AndrzejJarynowski
 
原版制作(unimelb毕业证书)墨尔本大学毕业证Offer一模一样
原版制作(unimelb毕业证书)墨尔本大学毕业证Offer一模一样原版制作(unimelb毕业证书)墨尔本大学毕业证Offer一模一样
原版制作(unimelb毕业证书)墨尔本大学毕业证Offer一模一样
ihavuls
 
The Ipsos - AI - Monitor 2024 Report.pdf
The  Ipsos - AI - Monitor 2024 Report.pdfThe  Ipsos - AI - Monitor 2024 Report.pdf
The Ipsos - AI - Monitor 2024 Report.pdf
Social Samosa
 
Learn SQL from basic queries to Advance queries
Learn SQL from basic queries to Advance queriesLearn SQL from basic queries to Advance queries
Learn SQL from basic queries to Advance queries
manishkhaire30
 
"Financial Odyssey: Navigating Past Performance Through Diverse Analytical Lens"
"Financial Odyssey: Navigating Past Performance Through Diverse Analytical Lens""Financial Odyssey: Navigating Past Performance Through Diverse Analytical Lens"
"Financial Odyssey: Navigating Past Performance Through Diverse Analytical Lens"
sameer shah
 
STATATHON: Unleashing the Power of Statistics in a 48-Hour Knowledge Extravag...
STATATHON: Unleashing the Power of Statistics in a 48-Hour Knowledge Extravag...STATATHON: Unleashing the Power of Statistics in a 48-Hour Knowledge Extravag...
STATATHON: Unleashing the Power of Statistics in a 48-Hour Knowledge Extravag...
sameer shah
 
Open Source Contributions to Postgres: The Basics POSETTE 2024
Open Source Contributions to Postgres: The Basics POSETTE 2024Open Source Contributions to Postgres: The Basics POSETTE 2024
Open Source Contributions to Postgres: The Basics POSETTE 2024
ElizabethGarrettChri
 
DATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docx
DATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docxDATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docx
DATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docx
SaffaIbrahim1
 

Recently uploaded (20)

Palo Alto Cortex XDR presentation .......
Palo Alto Cortex XDR presentation .......Palo Alto Cortex XDR presentation .......
Palo Alto Cortex XDR presentation .......
 
一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理
 
Analysis insight about a Flyball dog competition team's performance
Analysis insight about a Flyball dog competition team's performanceAnalysis insight about a Flyball dog competition team's performance
Analysis insight about a Flyball dog competition team's performance
 
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
 
一比一原版(UCSF文凭证书)旧金山分校毕业证如何办理
一比一原版(UCSF文凭证书)旧金山分校毕业证如何办理一比一原版(UCSF文凭证书)旧金山分校毕业证如何办理
一比一原版(UCSF文凭证书)旧金山分校毕业证如何办理
 
Orchestrating the Future: Navigating Today's Data Workflow Challenges with Ai...
Orchestrating the Future: Navigating Today's Data Workflow Challenges with Ai...Orchestrating the Future: Navigating Today's Data Workflow Challenges with Ai...
Orchestrating the Future: Navigating Today's Data Workflow Challenges with Ai...
 
Udemy_2024_Global_Learning_Skills_Trends_Report (1).pdf
Udemy_2024_Global_Learning_Skills_Trends_Report (1).pdfUdemy_2024_Global_Learning_Skills_Trends_Report (1).pdf
Udemy_2024_Global_Learning_Skills_Trends_Report (1).pdf
 
writing report business partner b1+ .pdf
writing report business partner b1+ .pdfwriting report business partner b1+ .pdf
writing report business partner b1+ .pdf
 
一比一原版(Unimelb毕业证书)墨尔本大学毕业证如何办理
一比一原版(Unimelb毕业证书)墨尔本大学毕业证如何办理一比一原版(Unimelb毕业证书)墨尔本大学毕业证如何办理
一比一原版(Unimelb毕业证书)墨尔本大学毕业证如何办理
 
原版一比一多伦多大学毕业证(UofT毕业证书)如何办理
原版一比一多伦多大学毕业证(UofT毕业证书)如何办理原版一比一多伦多大学毕业证(UofT毕业证书)如何办理
原版一比一多伦多大学毕业证(UofT毕业证书)如何办理
 
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
 
Beyond the Basics of A/B Tests: Highly Innovative Experimentation Tactics You...
Beyond the Basics of A/B Tests: Highly Innovative Experimentation Tactics You...Beyond the Basics of A/B Tests: Highly Innovative Experimentation Tactics You...
Beyond the Basics of A/B Tests: Highly Innovative Experimentation Tactics You...
 
Intelligence supported media monitoring in veterinary medicine
Intelligence supported media monitoring in veterinary medicineIntelligence supported media monitoring in veterinary medicine
Intelligence supported media monitoring in veterinary medicine
 
原版制作(unimelb毕业证书)墨尔本大学毕业证Offer一模一样
原版制作(unimelb毕业证书)墨尔本大学毕业证Offer一模一样原版制作(unimelb毕业证书)墨尔本大学毕业证Offer一模一样
原版制作(unimelb毕业证书)墨尔本大学毕业证Offer一模一样
 
The Ipsos - AI - Monitor 2024 Report.pdf
The  Ipsos - AI - Monitor 2024 Report.pdfThe  Ipsos - AI - Monitor 2024 Report.pdf
The Ipsos - AI - Monitor 2024 Report.pdf
 
Learn SQL from basic queries to Advance queries
Learn SQL from basic queries to Advance queriesLearn SQL from basic queries to Advance queries
Learn SQL from basic queries to Advance queries
 
"Financial Odyssey: Navigating Past Performance Through Diverse Analytical Lens"
"Financial Odyssey: Navigating Past Performance Through Diverse Analytical Lens""Financial Odyssey: Navigating Past Performance Through Diverse Analytical Lens"
"Financial Odyssey: Navigating Past Performance Through Diverse Analytical Lens"
 
STATATHON: Unleashing the Power of Statistics in a 48-Hour Knowledge Extravag...
STATATHON: Unleashing the Power of Statistics in a 48-Hour Knowledge Extravag...STATATHON: Unleashing the Power of Statistics in a 48-Hour Knowledge Extravag...
STATATHON: Unleashing the Power of Statistics in a 48-Hour Knowledge Extravag...
 
Open Source Contributions to Postgres: The Basics POSETTE 2024
Open Source Contributions to Postgres: The Basics POSETTE 2024Open Source Contributions to Postgres: The Basics POSETTE 2024
Open Source Contributions to Postgres: The Basics POSETTE 2024
 
DATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docx
DATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docxDATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docx
DATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docx
 

Alternative to Latex for High Quality Reports with RMarkdown

  • 1. Ministère delaJustice Alternative toAlternative to forfor High Quality ReportsHigh Quality Reports HTML AND CSS FOR PAGINATED DOCUMENTS uRos2018 Romain Lesur Deputy Head of the Statistical Service Retrouvez-nous sur justice.gouv.fr
  • 2. Documents are built from source. A reproducible workflow Interactive document .html Static portable document .pdf with Ms Word .docx LibreOffice .odt ... Multiple output formats Benefits of R MarkdownBenefits of R Markdown Ministère de la Justice Alternative to for High Quality Reports Use of in Official Statistics 2018 – The Hague p. 2
  • 3. Take an organization where documents have to comply with a corporate design… …a Grid Model… …template done with publishing softwares: InDesign® MS Publisher Scribus… Use of R Markdown in an organizationUse of R Markdown in an organization Ministère de la Justice Alternative to for High Quality Reports Use of in Official Statistics 2018 – The Hague p. 3
  • 4. Statisticians send .docx or .odt files & spreadsheets with data (for plots) to publishing assistants. A non-reproducible workflow! The usual workflow Develop a PDF document template Build a ggplot2 theme Solution Statistical publicationsStatistical publications Ministère de la Justice Alternative to for High Quality Reports Use of in Official Statistics 2018 – The Hague p. 4
  • 5. documents are perfect! has a painful learning curve. templates are hard to maintain. With ? LaTeX is Dead (long live LaTeX) by Deyan Ginez In HTML and the Web I Trust by Yihui Xie Is legacy? Developping a PDF document templateDevelopping a PDF document template Ministère de la Justice Alternative to for High Quality Reports Use of in Official Statistics 2018 – The Hague p. 5
  • 6. Major publishers had re-built their print-publishing toolchains using HTML and CSS for Paged Media . see Streamlining CSS Print Design with Sass for O’Reilly Media and Beyond XML: Making Books with HTML for Hachette Book Evolution in the publishing industry Thanks to RMarkdown, R users can easily produce a HTML document. Many R users learned HTML and CSS in order to customize their HTML documents or their Shiny apps. Make a PDF template with CSS rules Main idea Another approach for publishingAnother approach for publishing Ministère de la Justice Alternative to for High Quality Reports Use of in Official Statistics 2018 – The Hague p. 6
  • 7. The CSS for Paged Media standard is a subset of the W3C CSS specifications: CSS Paged Media Module Level 3 CSS Generated Content for Paged Media Module CSS Page Floats CSS Fragmentation Module Level 3 The CSS for Paged Media Standard What is CSS for Paged Media?What is CSS for Paged Media? Ministère de la Justice Alternative to for High Quality Reports Use of in Official Statistics 2018 – The Hague p. 7
  • 8. The page modelThe page model source: www.w3.org/TR/css3-page copyright © 2013 World Wide Web Consortium, (MIT, ERCIM, Keio, Beihang). http://www.w3.org/Consortium/Legal/2015/doc-license status: Working Draft Ministère de la Justice Alternative to for High Quality Reports Use of in Official Statistics 2018 – The Hague p. 8
  • 9. The margin boxesThe margin boxes Ministère de la Justice Alternative to for High Quality Reports Use of in Official Statistics 2018 – The Hague p. 9
  • 10. @page { size: a4; margin: 15mm; @bottom-right-corner { content: "p. " counter(page); } } Size, margins and page numbering New CSS at-rulesNew CSS at-rules Ministère de la Justice Alternative to for High Quality Reports Use of in Official Statistics 2018 – The Hague p. 10
  • 11. @page :right { @bottom-right-corner { content: counter(page) " of " counter(pages); } } @page :left { @bottom-left-corner { content: counter(page) " of " counter(pages); } } Pseudo classes Ministère de la Justice Alternative to for High Quality Reports Use of in Official Statistics 2018 – The Hague p. 11
  • 12. h1.level1 { page-break-before: always; } Page break before a new section table { page-break-inside: avoid; } Avoid page break inside tables Control page breaksControl page breaks Ministère de la Justice Alternative to for High Quality Reports Use of in Official Statistics 2018 – The Hague p. 12
  • 13. Top browsers in use do not support CSS for Paged Media. You cannot rely on (headless) browsers to generate a PDF file from HTML. Browsers support Need to use a converter that supports the CSS for Paged Media standard Comprehensive list of converters: print-css.rocks/tools.html This slideshow was made with Prince XML: www.princexml.com Note: a promising project of the Paged Media initiative named Paged.js (polyfill for Paged Media) This could be a game changer. Converters How to generate a PDF with CSS for Paged Media?How to generate a PDF with CSS for Paged Media? Ministère de la Justice Alternative to for High Quality Reports Use of in Official Statistics 2018 – The Hague p. 13
  • 14. github.com/RLesur/weasydoc R package dedicated to CSS for Paged Media (WIP) devtools::install_github('RLesur/weasydoc') For now, weasydoc provides some basic RMarkdown output formats: hpdf_document() and hpdf_document_base() hpdf_book() and hpdf_document2() for bookdown weasydoc How to use CSS for Paged Media with R?How to use CSS for Paged Media with R? Ministère de la Justice Alternative to for High Quality Reports Use of in Official Statistics 2018 – The Hague p. 14
  • 15. version 2.1.3 min., 2.2.1 recommended pandoc.org Compatible pandoc version in the latest RStudio preview pandoc Supported converters weasyprint.org open source software (BSD-3 License) WeasyPrint Prince is a commercial software. Free license for non-commercial purposes Prince XML System requirementsSystem requirements Ministère de la Justice Alternative to for High Quality Reports Use of in Official Statistics 2018 – The Hague p. 15
  • 16. rlesur/weasydoc built from rocker/verse:3.5.0 (not for production!) docker run --rm -dp 8787:8787 rlesur/weasydoc:latest Docker image frama.link/weasydoc Access to RStudio with WeasyPrint and Prince available on system MyBinder environment Don’t want to install anything?Don’t want to install anything? Ministère de la Justice Alternative to for High Quality Reports Use of in Official Statistics 2018 – The Hague p. 16
  • 17. Chapters with RMarkdown Book with bookdown ggplot2 theme What can be done with CSS for Paged Media?What can be done with CSS for Paged Media? Ministère de la Justice Alternative to for High Quality Reports Use of in Official Statistics 2018 – The Hague p. 17
  • 18. CMYK colors (4 inks) Accessibility (PDF/UA) not so easy with … Graphics exchange with publishing firms (PDF/X) Use a professional converter if you need Document qualityDocument quality Ministère de la Justice Alternative to for High Quality Reports Use of in Official Statistics 2018 – The Hague p. 18
  • 19. There are a lot of great ressources on the web to learn CSS for Paged Media: A Guide To The State Of Print Stylesheets In 2018 by Rachel Andrew print-css.rocks website by Andreas Jung Introduction to CSS for Paged Media by Tony Graham, Antenna House - XML Prague 2018 Conference. Prince User Guide Going furtherGoing further Ministère de la Justice Alternative to for High Quality Reports Use of in Official Statistics 2018 – The Hague p. 19
  • 20. O’Reilly Media tutorials on Youtube: Part 1: Introduction to HTML and CSS Part 2: Basic Layout and Text Formatting Part 3: Paged Media Basics Part 4: Generated Content - Counters & Strings Going furtherGoing further Ministère de la Justice Alternative to for High Quality Reports Use of in Official Statistics 2018 – The Hague p. 20