Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stsewd/ieee-pandoc-template
IEEE paper template for pandoc
https://github.com/stsewd/ieee-pandoc-template
ieee-paper-template markdown pandoc
Last synced: 4 days ago
JSON representation
IEEE paper template for pandoc
- Host: GitHub
- URL: https://github.com/stsewd/ieee-pandoc-template
- Owner: stsewd
- License: mit
- Created: 2016-12-19T20:16:29.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-09-04T23:53:42.000Z (about 2 months ago)
- Last Synced: 2024-10-23T07:17:48.345Z (12 days ago)
- Topics: ieee-paper-template, markdown, pandoc
- Language: TeX
- Size: 222 KB
- Stars: 122
- Watchers: 6
- Forks: 43
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# IEEE Paper Template for Pandoc
[![Build Status](https://travis-ci.org/stsewd/ieee-pandoc-template.svg?branch=master)](https://travis-ci.org/stsewd/ieee-pandoc-template)
## Requirements
- [Pandoc](http://pandoc.org/)
- [Texlive](https://www.tug.org/texlive/)### Ubuntu
```sh
sudo apt update
sudo apt install pandoc pandoc-citeproc texlive-full texlive-publishers
```### Fedora
```sh
sudo dnf install pandoc pandoc-citeproc texlive-scheme-full
```## Quick Start Guide
- Clone or download this repo.
- Put all your paper content in `paper.md`.
- Change the title and author in `metadata.yaml`.
- Run `make` in a terminal.
- The pdf will be on `build/paper.pdf`.## Files
| File | Description |
|--------------------|-----------------------------------------------------------------------------------------------------------------------------------|
| `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 specify 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. |
| `build/` | On this directory will be final pdf. Make sure to add this to your `.gitignore` file if you are using git. |## Recommended Tools
### Editors
- [Vim](http://vim.org)/[Neovim](https://neovim.io/) + [vim-pandoc extension](https://github.com/vim-pandoc/vim-pandoc)
- [Atom](http://atom.io) + [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)