Skip to content

Commit d3ee3d8

Browse files
committed
after I finally got latex working
1 parent 4b815f6 commit d3ee3d8

13 files changed

+235
-10
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@
33
.RData
44
_site/
55
.sass-cache/
6+
.html
7+
.docx
8+
.pdf

_layouts/default.html

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
<body>
77

8+
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
9+
810
{% include loader.html %}
911

1012
<main id="sb-site">
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
---
2+
layout: post
3+
title: "Git Document Management"
4+
author: "Auke Hoekstra"
5+
date: 2015-07-14
6+
backgrounds: ../pics/shared_public_library.jpg
7+
thumb: ../pics/Felicia_Day_Thumb.jpg
8+
categories: development work
9+
tags: home work office coding design
10+
---
11+
![](../Pics/Felicia_Day_Librarian_Widescreen.jpg)
12+
13+
**I think the use of coders jargon clouds the fact Git is also perfect for "normal" people that want document management and collaboration for "normal" documents. E.g. students writing homework assignments, project members, writers, lawwyers and consultants. This post uses the metaphor of a public library.**
14+
15+
# Introduction
16+
Programmers (or "coders") are notoriously precise about managing their code: one typo and nothing works anymore. One of their most beloved programs is called Git. It was developed by Linus Thorvalts to manage the development of Linux. But what is Git exactly?
17+
18+
You probably know that it is a good idea to save your work in case your program crashes and to make a backup in case your hard drive crashes. Git does not change that. For you personally, Git is about taking snapshots of your files so you can return to that moment at any time in the future. For a team, Git is about working together without getting in each others way.
19+
20+
Do you keep multiple versions of documents? Do you wish you had more insight in what you where doing with them a year ago? Do you need to work on documents with others? Then Git can simplify your life. Imagine Git as your personal librarian.
21+
22+
# Version management
23+
Imagine standing in your private library. Around you are all the important versions of all the documents you have ever worked on. Every time you archived a set of documents they where bound into a book that appears in this library. Git also added a first page to each book with a description of what's inside:
24+
25+
* The documents in the book and their authors.
26+
* The reason this set of documents was put in the library.
27+
* Who committed the book to the library and when.
28+
* The relation with books that where committed to the library earlier.
29+
* A clever way to check that the contents of the book have not been tampered with.
30+
31+
Working with Git becomes straighforward with this mental image in mind:
32+
33+
* Put a number of documents together. This is called "**staging**".
34+
* Write a short message and send message+documents to your librarian. She writes the title page, binds everything together, and commits the book to your library. This process is called "**committing**" and happens with one click or command.
35+
36+
The library is called a "**repository**"" or "repo" in Git lingo. When you encounter the word repository you can imagine a library in your mind.
37+
38+
![private library](../Pics/Private_Library.jpg)
39+
40+
Maybe staging seems unnecesary to you and when you are working on one unconnected document it is. But often you are working on multiple documents at once. E.g. a Word document containing graphs from an Excel spreadsheet. Isn't it neat that you can easily commit a set of documents belonging so you can return to their corresponding versions later?
41+
42+
Working with Git feels alien the first week or so. And it takes a tiny bit more effort than just saving your document. You also have to click stage, then click commit and then type in your commit message. But with those three simple actions (it takes less than five seconds) you commit a new tamperproof book with extensive information about its history to your library forever. You can retrace your steps at any future moment in time. And you no longer need backup copies or multiple filenames for versions of your documents. So the library cleans up your workspace.
43+
44+
# Your library on Github
45+
Github is basically a place to store Git libraries online. There are many such services but Github is the largest and when you are all about openness and sharing it is probably your first choice. If you want to create a lot of private libraries you might take a look at other services like bitbucket.
46+
47+
Once you know how to "publish" all your books to an online library you get two extra commands or buttons. One to upload/push your books/commits to your online library/repository. One to download/pull them from your online library.
48+
49+
Publishing a library on Github gives you several extra possibilities:
50+
51+
* You have a copy of your library when something goes awry with your local copy.
52+
* You can access your files from every device with an Internet connection.
53+
* You can choose to give others access to your library so they can borrow your books.
54+
* You can create a website where the last versions are displayed with nice formatting.
55+
* You can make it a shared library where others can also store books. Let's look at that last point in some more detail.
56+
57+
# Sharing the same library
58+
If you work together with others on documents, chances are that you often email each other new versions. This works remarkably well compared to snailmail but it is still time consuming and messy. Have you included the right persions in your email? Has everybody else? What is now the latest version? Is there one latest version or are there multiple authors with diverging versions? How do you know that you can find all emails with changes when everybody uses different words in the mail and different filenames for their versions? Et cetera.
59+
60+
A shared directory (e.g. Dropbox) is often an improvement to email. But how do you know who updated the document when and for what reason? Dropbox does not exactly give you a nice version history. And how do you get notified something changed? Dropbox can do this automatically but do you want email everytime someone makes a small change? And don't you want to work on the document in private sometimes? So the usual solution is to save new versions of the document in the Dropbox folder under a new name and tell everybody about it through email. This kind of brings us back to square one.
61+
62+
![public library](../Pics/shared_public_library.jpg)
63+
64+
With Git you have a shared public library with all the bells and whistles. Just stick to your simple stage-commit routine and Git takes care of the rest. With Git you have access to all versions of each others books with a crystal clear version history. You can get an email everytime someone makes a commit or you can just dive into the repository when you feel like it. Either way you can get to work right away with the whole document history at your fingertips.

_source/2015-07-27-a-post-to-test-knitr-to-jekyll.Rmd

+13-10
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
---
2-
layout: post
32
title: "A Post to Test Knitr to Jekyll"
43
author: "Auke Hoekstra"
54
date: "30 juli 2015"
6-
categories: [jekyll, rstats]
7-
tags: [knitr, servr, httpuv, websocket]
5+
output: html_document
6+
layout: post
7+
tags:
8+
- markdown
9+
- knitr
10+
- Jekyll
11+
- GitHub
12+
thumb: ../pics/math-fonts.png
13+
categories: Workflow
814
---
915

1016
**Remaining problems and observations**
@@ -13,10 +19,8 @@ tags: [knitr, servr, httpuv, websocket]
1319
* This behavior is also observed in the orinigal site from yihui.
1420
* Preview in R Studio does not work
1521
* it works fine in yihui's site so the problem should be soved when analysing the differences between the two sites
16-
* Latex code like $$( x^2 + y^2 = 1 )$$ or $$\frac{d}{dx}\left( \int_{0}^{x} f(u)\,du\right)=f(x)$$ renders fine with Knit HTML but not with servr::jekyll(). This behavior is seen in both evflex and yihui. Could be that this has something to do with kramdown instead of rmarkdown being the rendering engine.
17-
* SVG does not render to PDF yet.
18-
* We have to run jekyll locally. This means resubmitting edits can only be done from a machine having all this installed and this makes collaboration harder. It would be better if we had jekyll running on Github. But of course this does not understand R Markdown which is a bit of a problem.
19-
22+
* Figures (last part of this page) do not display nicely.
23+
* Latex code like $$( x^2 + y^2 = 1 )$$ now displays in HTML but will not render to PDF.
2024

2125
**Test 6: succes! (sort of)**
2226

@@ -111,9 +115,7 @@ Note that the `echo = FALSE` parameter was added to the code chunk to prevent pr
111115
* Lower level list
112116
* And back
113117

114-
# LateX textcontent (3 formula's)
115-
116-
$/( x^2 + y^2 = 1 )$
118+
# LateX content
117119

118120
$$( x^2 + y^2 = 1 )$$
119121

@@ -148,3 +150,4 @@ Just to test inline R expressions[^2] in **knitr**, we know the first element in
148150
par(mar = c(4, 4, .1, .1))
149151
plot(cars, pch = 19, col = 'red') # a scatterplot
150152
```
153+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
---
2+
title: "Markdown + TeX + Jekyll = Blogposts"
3+
author: "Auke Hoekstra"
4+
date: "30 juli 2015"
5+
output: html_document
6+
layout: post
7+
tags:
8+
- markdown
9+
- TeX
10+
- Jekyll
11+
- Github
12+
thumb: ../pics/tex-typesetting.jpg
13+
categories: Workflow
14+
---
15+
16+
I write in markdown with $$\textsf{R}$$ and $$\TeX$$ (or rather $$\LaTeX$$) thrown in where appropriate. Jekyll and GitHub Pages automatically turn my writings into blogposts like this. But I've been stuggling to teach Jekyll to accept $$\TeX$$. In essence you have to tell Jekyll to use the kramdown plugin which in turn has to use Mathjax to render the $$\TeX$$. I could not get it to work but it turns out the [solution is simple](http://www.minixli.com/2014/10/20/using-mathjax-with-jekyll/) once you know it:
17+
18+
Open the `_config.yml` file of your Jekyll site and search for a line beginning with `markdown:`. It should read `markdown: kramdown`.
19+
20+
Open your `_layouts\default.html` file and after the line that says `<body>` you add the following line:
21+
22+
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
23+
24+
If you want to use the Jekyll server to do this locally on your computer you should also have kramdown installed. Go to the command line and type `gem install kramdown`.
25+
26+
And now you can write things like:
27+
28+
$$( x^2 + y^2 = 1 )$$
29+
30+
$$\frac{d}{dx}\left( \int_{0}^{x} f(u)\,du\right)=f(x)$$
31+
32+
$$\begin{align*}
33+
& \phi(x,y) = \phi \left(\sum_{i=1}^n x_ie_i, \sum_{j=1}^n y_je_j \right)
34+
= \sum_{i=1}^n \sum_{j=1}^n x_i y_j \phi(e_i, e_j) = \\
35+
& (x_1, \ldots, x_n) \left( \begin{array}{ccc}
36+
\phi(e_1, e_1) & \cdots & \phi(e_1, e_n) \\
37+
\vdots & \ddots & \vdots \\
38+
\phi(e_n, e_1) & \cdots & \phi(e_n, e_n)
39+
\end{array} \right)
40+
\left( \begin{array}{c}
41+
y_1 \\
42+
\vdots \\
43+
y_n
44+
\end{array} \right)
45+
\end{align*}$$
46+
47+
Which will become
48+
49+
$$( x^2 + y^2 = 1 )$$
50+
51+
$$ \frac{d}{dx}\left( \int_{0}^{x} f(u)\,du\right)=f(x) $$
52+
53+
$$
54+
\begin{align*}
55+
& \phi(x,y) = \phi \left(\sum_{i=1}^n x_ie_i, \sum_{j=1}^n y_je_j \right)
56+
= \sum_{i=1}^n \sum_{j=1}^n x_i y_j \phi(e_i, e_j) = \\
57+
& (x_1, \ldots, x_n) \left( \begin{array}{ccc}
58+
\phi(e_1, e_1) & \cdots & \phi(e_1, e_n) \\
59+
\vdots & \ddots & \vdots \\
60+
\phi(e_n, e_1) & \cdots & \phi(e_n, e_n)
61+
\end{array} \right)
62+
\left( \begin{array}{c}
63+
y_1 \\
64+
\vdots \\
65+
y_n
66+
\end{array} \right)
67+
\end{align*}
68+
$$
69+
70+
And that's no all.
71+
72+
If you feel the need you can sprinkle $$\frac{d}{dx}\left( \int_{0}^{x} f(u)\,du\right)=f(x)$$ right in the middle of your text and the height will be compressed so your text flow is not impacted.
73+
74+
Happy blogging!

_source/2015-7-31-writers-intent.Rmd

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
layout: post
3+
title: "Writers Intent"
4+
author: "Auke Hoekstra"
5+
date: "31 juli 2015"
6+
backgrounds: ../pics/shared_public_library.jpg
7+
thumb: ../pics/Felicia_Day_Thumb.jpg
8+
categories: development work
9+
tags: home work office coding design
10+
---
11+
![](../Pics/Felicia_Day_Librarian_Widescreen.jpg)
12+
13+
This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.
14+
15+
When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:
16+
17+
```{r}
18+
summary(cars)
19+
```
20+
21+
You can also embed plots, for example:
22+
23+
```{r, echo=FALSE}
24+
plot(cars)
25+
```
26+
27+
Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.

pics/Thumbs.db

125 KB
Binary file not shown.

pics/latex-logo.svg

+12
Loading

pics/latex-tag.png

18.7 KB
Loading

pics/math-fonts.png

57.2 KB
Loading

pics/multi-tex.png

96.5 KB
Loading

pics/tex-logo.svg

+40
Loading

pics/tex-typesetting.jpg

60.1 KB
Loading

0 commit comments

Comments
 (0)