Below is a guide to installing a text editor Sublime Text , followed by the addition of the possibility of using the computer layout system LaTeX . As a bonus, let's teach him to understand the language of Julia .
The compile and create the PDF file will occur. Using TeXworks, you can get down to full-fledged work, for example, using LaTeX you can very effectively assemble a diploma or dissertation ( Ready-made templates )
It is much more convenient to use LaTeX through Sublime Text. In addition to convenient backlighting and autocompletion, here you can see the image or typed formula without compiling, that is, to see the result while typing. By the way, in Sublime Text you can type (and if you add the appropriate plug-ins, then execute) the program codes of many programming languages and markup: C / C ++, Java, MATLAB, PHP, HTML ...
More about LaTeXTools
Finding online LaTeX manuals will not be difficult for you (for example: Tutorial , Wiki ). It will also be useful to use the online formula editor until the commands are stored in memory.
In Package Control: Install Package, type Julia , download the plugin, and now Julia appeared in the View / Syntax tab among other languages, which means you can now type programs in this language with illumination and Greek letters (\ delta + press tab
), and also save files in .jl format.
When saving files, it will be convenient to internally divide modules into:
module somename # functions, variables # and some things end
Code typed in Sublime text and saved in the .jl format can be executed in the REPL
# cd("C:\\Users\\User\\Desktop") # include("MDPSO.jl") # # PSO.parabol([2,3,5])
At the end of a small guide. All convenient layout and pleasant backlighting!
Source: https://habr.com/ru/post/447476/
All Articles