Skip to content
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.

jsk-report-template/ieee-report

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ieee-report

Latex template for IEEE Conference (Paper Plaza)

based on http://ras.papercept.net/conferences/support/tex.php

Build Status

1. Edit LaTeX files

2. Make pdf

$ make

3. Release pdf

  • Install Travis Command Line Tool

  • Enable Travis

    travis enable
    travis setup releases --force
  • After travis command, configuration like below will be appended to .travis.yml.

    deploy:
      provider: releases
      api_key: "GITHUB OAUTH TOKEN"
      file: main.pdf
      skip_cleanup: true
      on:
        tags: true

NOTE Please make sure you have skip_cleanup and on: tags is true

  • Push your tag by git push --tags. Then you can watch pdf in github releases.

Optional. cleaning

$ make clean
# or
$ make wipe