33 lines
592 B
Markdown
33 lines
592 B
Markdown
# Pages perso
|
|
|
|
|
|
## Setup and develop
|
|
|
|
```bash
|
|
bundle
|
|
bundle exec jekyll serve --livereload
|
|
```
|
|
|
|
## Deploy
|
|
|
|
```bash
|
|
bundle exec jekyll build
|
|
rsync -aP --delete _site/ k0v1@guiotte.fr:/home/k0v1/docker/florent/data
|
|
```
|
|
|
|
## Bibliography
|
|
|
|
In Zotero, setup a Better BibTex postscript for arXiv papers:
|
|
|
|
```js
|
|
if (zotero.itemType === 'preprint') {
|
|
tex.entrytype = 'article'
|
|
if (zotero.arXiv) {
|
|
tex.add({ name: 'arXiv', value: zotero.arXiv.id});
|
|
tex.add({ name: 'pdf', value: 'https://arxiv.org/pdf/' + zotero.arXiv.id});
|
|
tex.add({ name: 'shortjournal', value: 'arXiv'});
|
|
}
|
|
}
|
|
```
|
|
|