Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# IEEE Paper Template for Pandoc
## Requirements
- [Pandoc](http://pandoc.org/)
- [Texlive](https://www.tug.org/texlive/) (recomended)
## Quickly Usage
Put all your paper content on `paper.md`, change the title and author
on `metadata.yaml` and run `make pdf`. The pdf will be on `build/paper.pdf`.
## Usage
### Files
#### metadata.yml
On this file put all your metadata (author, title, abstract, etc) that will
be use for rendering the final pdf.
#### paper.md
Here you put all your paper content, if you wish, you could put your content
on separate files, but you must edit the `makefile`.
#### bibliography.bib
Here put all the bibliography that is used in the paper.
#### bibliography.csl
This file is for especify to pandoc how to display the cites (ieee format).
#### template.latex
It is used to tell pandoc how to render the paper using the metadata and
content of your paper.
#### makefile
It is used to compile the pdf, usually the default options are fine.
### Compiling
Run `make` on a terminal and the pdf will be on `build/paper.pdf`.
## Recommended Tools
### Editors
- Vim + [vim-pandoc extension](https://github.com/vim-pandoc/vim-pandoc)
- Atom + [language-pfm extension](https://atom.io/packages/language-pfm) + [autocomplete-bibtex extension](https://atom.io/packages/autocomplete-bibtex)
### Bibliography manager
- [Zotero](https://www.zotero.org/) + [Better Bibtext extension](https://github.com/retorquere/zotero-better-bibtex)