You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+3-11
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
# How to export Pluto notebooks to PDF?
2
2
3
-
You probably don't need the PlutoPDF.jl package! Just **open the notebook in Pluto** and **print out the page** (`⌘ P` or `Ctrl+P`). As printer, choose "Print to PDF". Be sure to enable "background graphics" and disable "headers and footers". Pluto is designed to output high-quality PDF files using the browser print function.
3
+
You probably don't need the PlutoPDF.jl package! Just **open the notebook in Pluto** and **print out the page** (`⌘ P` or `Ctrl+P`). In the popup menu that opens, select the printer "Print to PDF". Be sure to enable "background graphics" and disable "headers and footers". Pluto is designed to output high-quality PDF files using the browser print function.
4
4
5
-
In fact, PlutoPDF.jl works exactly the same: it uses [puppeteer](https://pptr.dev/) and the Chromium browser ("headless") to print the document for you. You can use PlutoPDF.jl when you need to generate PDF files automatically from a script, e.g. when you have many notebooks that you want to archive.
5
+
In fact, this package PlutoPDF.jl works exactly the same: it uses [puppeteer](https://pptr.dev/) and the Chromium browser ("headless") to print the document for you (and the result will be the same). You can use PlutoPDF.jl when you need to generate PDF files automatically from a script, e.g. when you have many notebooks that you want to archive.
6
6
7
7
# Unmaintained
8
8
@@ -12,14 +12,6 @@ Unfortunately, PlutoPDF.jl takes too much work to maintain! So if it works on yo
12
12
13
13
*Don't let your printer miss out on the fun!*
14
14
15
-
## Installation
16
-
17
-
From the Julia REPL, PlutoPDF.jl can be installed with the following:
18
-
19
-
```julia
20
-
import Pkg; Pkg.add("PlutoPDF")
21
-
```
22
-
23
15
## Usage
24
16
25
17
From within Julia:
@@ -48,7 +40,7 @@ PlutoPDF.jl is just a combination of other software:
48
40
- Pluto: besides running notebooks, the Pluto editor is designed to look nice when printed. When you use Pluto's export to Static PDF button (top right in the editor), the button just tells the browser to open the Print window.
49
41
- Chromium web browser: Pluto has CSS styling specific for printing. But it is the browser that has the ability to take HTML and CSS and make a PDF from it.
50
42
- PlutoSliderServer: this package makes it easy to "convert `.jl` to `.html`." It can open a notebook, run it, and generate the export HTML all from the command line, so you don't need to click buttons in Pluto.
51
-
- hmmmm more info coming
43
+
- hmmmm more info coming maybe or you can open an Issue with questions
0 commit comments