Tools for a scientific research

Table of Contents

How to setup simple markdown converter to pdf in Sublime:

image

  1. Install pandoc and pdflatex
    sudo apt-get install texlive-latex-base texlive-fonts-recommended texlive-fonts-extra texlive-latex-extra
    
  2. Start Sublime go to menu: Tools -> Build System -> New Build System
  3. In the New window pandoc.sublime-build put the following:
    {
     "shell_cmd": "pandoc --toc --toc-depth=5 $file_base_name.md -o  $file_base_name.pdf"
    }
    
    • --toc --toc-depth=5 is responsible for generating Table of content and takes into account depth of #####
  4. In order to modify pandoc.sublime-build:
    • In menu: Preferences -> Browse Packages -> User -> pandoc.sublime-build
  5. In order to execute the pandoc press Cmnd+B

How to check grammar in your text:

SVG draw tool for papers and posters:

How to keep order of papers:

How to use jupyter notebooks efficiently:

Create and Maintain python package: