https://github.com/steemit/bluepaper
Steem Bluepaper
https://github.com/steemit/bluepaper
Last synced: about 1 year ago
JSON representation
Steem Bluepaper
- Host: GitHub
- URL: https://github.com/steemit/bluepaper
- Owner: steemit
- Created: 2017-09-08T15:13:29.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-12-28T15:44:27.000Z (over 8 years ago)
- Last Synced: 2025-04-11T04:42:01.808Z (about 1 year ago)
- Language: Shell
- Homepage:
- Size: 137 KB
- Stars: 3
- Watchers: 6
- Forks: 16
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Steem Bluepaper
This repository contains the LaTeX source code for the Bluepaper. The instructions to clone the repository and build the PDF using pandoc are described below.
Currently the build instructions are for Ubuntu 16.04 or higher. There is also separate script, which will build the PDF using docker, and can be used on other operating systems. Users are welcome to try out the build in their local environments and submit a pull request to update the readme instructions if they are able to get it to successfully build natively on a different OS.
## Using docker
First build will take a while, because docker image will need to be build. Next builds should be much faster :)
```
git clone https://github.com/steemit/bluepaper && cd blupaper
./build.sh
```
Bluepaper.pdf should be created.
## Ubuntu 16.04 or higher
### Installation Instructions
Install packages
```bash
sudo apt-get update
sudo apt install texlive-xetex
sudo apt-get install pandoc
```
Clone repository
```bash
git clone https://github.com/steemit/bluepaper
```
### Build Instructions
Open the bluepaper directory
```bash
cd ~/bluepaper
```
Compile using pandoc
```bash
pandoc Bluepaper.md --latex-engine=xelatex -o Bluepaper.pdf
```
After building, the pdf file will be output to:
```bash
./Bluepaper.pdf
```