From e6a314542345caa4d3c75d1c4b179585a35bbb87 Mon Sep 17 00:00:00 2001 From: Pomax Date: Sun, 27 Sep 2020 17:08:09 -0700 Subject: [PATCH 1/5] . --- docs/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/style.css b/docs/style.css index 614aee74..3f386890 100644 --- a/docs/style.css +++ b/docs/style.css @@ -242,7 +242,7 @@ p + img.LaTeX.SVG { } img.LaTeX.SVG + p { - margin-top: -0.25em; + margin-top: 0.5em; } div.note img.LaTeX.SVG { From 1562584e36fe7134f81c8355f64e7a1140287c7a Mon Sep 17 00:00:00 2001 From: Pomax Date: Sat, 3 Oct 2020 11:38:36 -0700 Subject: [PATCH 2/5] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 2ad2acfe..6733bb23 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,8 @@ Also note that you will need a TeX installation with several dependencies: on Wi - texlive-xetex - texlive-extra-utils +To make life easier, if your distro uses apt-get, just run `sudo apt-get install xzdec libpoppler-glib-dev texlive texlive-xetex texlive-extra-utils` + You'll also need [pdf2svg](https://github.com/dawbarton/pdf2svg/), which on Windows means that in addition to building this utility from source, you'll all need to put the .exe file somewhere sensible (like `C:\Program Files (x86)\pdf2svg`) add then add that dir to your PATH, so `pdf2svg` can be invoked like any other CLI utility. #### Specialised commands: From c2a2e7c688c327e1d81a80dfe9821daa8a41a465 Mon Sep 17 00:00:00 2001 From: Pomax Date: Sat, 3 Oct 2020 11:39:02 -0700 Subject: [PATCH 3/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6733bb23..9276b0ec 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Also note that you will need a TeX installation with several dependencies: on Wi - texlive-xetex - texlive-extra-utils -To make life easier, if your distro uses apt-get, just run `sudo apt-get install xzdec libpoppler-glib-dev texlive texlive-xetex texlive-extra-utils` +To make life easier, if your distro uses apt-get, just run `sudo apt-get update` followed by `sudo apt-get install xzdec libpoppler-glib-dev texlive texlive-xetex texlive-extra-utils`. You'll also need [pdf2svg](https://github.com/dawbarton/pdf2svg/), which on Windows means that in addition to building this utility from source, you'll all need to put the .exe file somewhere sensible (like `C:\Program Files (x86)\pdf2svg`) add then add that dir to your PATH, so `pdf2svg` can be invoked like any other CLI utility. From f3c1da14711524347caaaab92ce17177204b4dfc Mon Sep 17 00:00:00 2001 From: Pomax Date: Sat, 3 Oct 2020 11:40:23 -0700 Subject: [PATCH 4/5] Update README.md --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9276b0ec..29c8267d 100644 --- a/README.md +++ b/README.md @@ -18,10 +18,14 @@ Also note that you will need a TeX installation with several dependencies: on Wi - texlive-xetex - texlive-extra-utils -To make life easier, if your distro uses apt-get, just run `sudo apt-get update` followed by `sudo apt-get install xzdec libpoppler-glib-dev texlive texlive-xetex texlive-extra-utils`. - You'll also need [pdf2svg](https://github.com/dawbarton/pdf2svg/), which on Windows means that in addition to building this utility from source, you'll all need to put the .exe file somewhere sensible (like `C:\Program Files (x86)\pdf2svg`) add then add that dir to your PATH, so `pdf2svg` can be invoked like any other CLI utility. +To make life easier, if your distro uses apt-get, just run this: + +``` +sudo apt-get update && sudo apt-get install xzdec libpoppler-glib-dev texlive texlive-xetex texlive-extra-utils pdf2svg +``` + #### Specialised commands: - `regenerate` runs a build followed by running `prettier` on the final .html files, as well as `link-checker` to make sure there are no dead links in the content. From fe867d7628276b67ce2e349fc94d51ab42cc2ccb Mon Sep 17 00:00:00 2001 From: Pomax Date: Sat, 3 Oct 2020 11:41:47 -0700 Subject: [PATCH 5/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 29c8267d..e626d763 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Also note that you will need a TeX installation with several dependencies: on Wi - texlive-xetex - texlive-extra-utils -You'll also need [pdf2svg](https://github.com/dawbarton/pdf2svg/), which on Windows means that in addition to building this utility from source, you'll all need to put the .exe file somewhere sensible (like `C:\Program Files (x86)\pdf2svg`) add then add that dir to your PATH, so `pdf2svg` can be invoked like any other CLI utility. +You'll also need [pdf2svg](https://github.com/dawbarton/pdf2svg/), which on linux can be installed just like everything else, but on Windows means that you'll need t run the build yourself, after which you'll need to put the .exe file somewhere sensible (like `C:\Program Files (x86)\pdf2svg`) add then add that dir to your PATH, so that `pdf2svg` can be invoked like any other CLI command. To make life easier, if your distro uses apt-get, just run this: