diff --git a/Home.md b/Home.md index 705aee3..4a80687 100644 --- a/Home.md +++ b/Home.md @@ -2,4 +2,49 @@ This basic tutorial is based on the (How to have a clean and minimal sublime set # Softare and Packages installation -To handle small or large projects with LaTeX highly depend on the IDE or Source Code Editor. For this tutorial, Sublime Text will be the main application to prepare LaTeX documents. Thus, first, install MikTeX (or your preferred LaTeX distribution). Then, is highly recommended to install *ImageMagick* \ No newline at end of file +To handle small or large projects with LaTeX highly depend on the IDE or Source Code Editor. For this tutorial, Sublime Text will be the main application to prepare LaTeX documents. Thus, first, install MikTeX (or your preferred LaTeX distribution). Next, install a PDF viewer listed here: + +* Sumatra - Windows +* Evince - Linux +* Skim - MacOS + +Then, is also highly recommended to install **ImageMagick**. Finally, install at least Sublime Text 4. + +To start configuring sublime follow the next steps[^1]: + +* Open the Command Palette: `Press Ctrl+Shift+P` + +* Type `install` in the Command Palette input box, which should autocomplete to `Install Package Control` Press Enter to select it. + +* Sublime Text 3 will start installing Package Control. This may take a short while. Once installed, a pop-up will display the message: *Package Control was successfully installed* + +* Go to `Preferences → Package Settings → Package Control → Settings` and paste the following: + +``` +{ + "bootstrapped": true, + "in_process_packages": + [ + ], + "installed_packages": + [ + "A File Icon", + "Agila Theme", + "AutoPEP8", + "ayu", + "DistractionFreeWindow", + "Dracula Color Scheme", + "Fold Comments", + "ImageMagick", + "LaTeX Word Count", + "LaTeX-cwl", + "LaTeXTab", + "LaTeXTools", + "LaTeXYZ", + "Non Text Files", + "Package Control", + "Python 3", + "SideBarEnhancements", + ] +} +```