https://github.com/fgjeci/ubuntu-latex
It includes the details on how to compile latex files in Ubuntu
Science Score: 26.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (12.8%) to scientific vocabulary
Repository
It includes the details on how to compile latex files in Ubuntu
Basic Info
- Host: GitHub
- Owner: fgjeci
- Language: TeX
- Default Branch: main
- Size: 406 KB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Metadata Files
README.md
Building Latex thesis style documents using VS Code (tested in Ubuntu)
Don't forget to give this repo a star ⭐️
This repository contains the configuration steps that are necessary to compile Latex documents in a local environment. It has been tested in Ubuntu and can be used to generate from simple documents, to publications articles. It supports citations for Research related documents.
Features
- Works fully offline
- Bibliography support with citations
- Auxiliary files are hidden in subfolders
- Only the Main file is shown in the main directory of the project
VS Code setup
In order to use it, you need to do the following
Install Visual Studio Code
VS Code is the IDE that you will use to edit and compile your LaTeX files. You can download it from the official source here
Install MikTex
Ubuntu users can use the command
sudo apt-get install miktex
You can check the Miktex Website for the installation details
Install the LaTeX Workshop extension in VS Code
The Publisher of this extension is James Yu. You can find it by searching for LaTeX Workshop in the Extensions option in the menu on the left of the VS Code IDE. The Extensions option is also activated by using the keyboard shortcuts Ctrl+Shift+X in Ubuntu.
After installing, restart the VS Code and you will see a new added extension to the VS Code menu on the left, with the text TEX as icon.
Edit the User Setting in VS Code
You have to open the JSON version of User Settings (JSON) using the keyboard shortcuts Ctrl+Shift+P in Ubuntu. Once inside you have to add the following components
"latex-workshop.latex.tools": [
{
"name": "lualatex",
"command": "lualatex",
"args": [
"--interaction=nonstopmode",
"--recorder",
"--output-directory=%DOCFILE%",
"--aux-directory=%DOCFILE%",
"%DOCFILE%"
]
},
{
"name": "bibtex",
"command": "bibtex",
"args": [
"%DOCFILE%/%DOCFILE%"
],
},
{
"name": "pdflatex",
"command": "pdflatex",
"args": [
"-interaction=nonstopmode",
"-synctex=1",
"-include-directory=%DOCFILE%",
"-jobname=%DOCFILE%",
"-aux-directory=%DOCFILE%",
"%DOCFILE%"
]
},
],
"latex-workshop.latex.recipes": [
{
"name": "pdflatex",
"tools": [
"pdflatex"
]
},
{
"name": "lualatex -> bibtex -> lualatex",
"tools": [
"lualatex",
"bibtex",
"lualatex",
"pdflatex"
]
},
],
Build Latex projects
To build a latex project go into the new TEX added extension, and as a fist item you will see a list titled Build LaTeX project. Inside the list are listed the latex compilation recipes we defined in the previous step, namely pdflatex and lualatex -> bibtex -> lualatex. In case the latex document you create has only text and figure, you can use pdflatex, whereas if you have a bibliography and citations use lualatex -> bibtex -> lualatex.
Owner
- Name: Franci Gjeci
- Login: fgjeci
- Kind: user
- Location: Milan, Italy
- Repositories: 2
- Profile: https://github.com/fgjeci
GitHub Events
Total
- Push event: 3
- Create event: 2
Last Year
- Push event: 3
- Create event: 2