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

Latest commit

 

History

History
53 lines (35 loc) · 1017 Bytes

README.md

File metadata and controls

53 lines (35 loc) · 1017 Bytes

jrsj-report-template

Latex template for JRSJ

based on http://www.rsj.or.jp/jrsj/for_authors/stylefile/

Build Status

1. Build

latexmk

2. Build using docker

docker run --rm -v $(pwd):/workspace furushchev/latex

3. Cleanup

latexmk -C

4. 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.