Texmaker does not compile latex document on Ubuntu

I am using ubuntu and I am trying to compile some latex documents, but I am getting a lot of errors. I think the compiler is installed, but I'm not sure. I used Latex before on Windows with Miktex, but installing it on linux does not work.

Does anyone know how to fix this problem? Thanks in advance.

+6
source share
4 answers

This is what I did:

1- Install the Latex compiler:

sudo apt-get install abntex 

2- Install TexMaker:

 sudo apt-get install texmaker 

3- Launch texmaker and download the Tex document

And you install the next one, too

 sudo apt-get install texlive-latex-base texlive-latex-extra texlive-latex-recommended texlive-fonts-recommended texmaker 
+9
source

You can install all the dependencies only with sudo apt-get install texlive

+8
source

As I said in Install LaTeX on Ubuntu or Debian , I use the following commands:

 sudo apt-get install texlive-full 

And then:

 sudo apt-get install texmaker 

Please note that installing the full Tex Live distribution takes a lot of time, but I recommend it a lot!

+3
source

using

sudo apt-get install texlive

if you prefer to download packages only as needed. Via

sudo apt-get install texlive-full

downloads 2 GB of data that is extracted to install more than 4 GB!

0
source

Source: https://habr.com/ru/post/919829/


All Articles