Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Texmaker don't compile latex document on Ubuntu

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

Someone know how to fix this problem? Thanks in advance.

like image 300
vgonisanz Avatar asked Jul 06 '12 07:07

vgonisanz


People also ask

Why is texmaker not compiling?

Texmaker can't compile yours documents if the paths to the LaTeX related commands are wrong. The default settings should work with the recent and standard LaTeX distributions, but you should have to modify them ("Configure Texmaker" -> "Commands").

How do I run texmaker in Ubuntu?

Install Texmaker on Ubuntu and other Linux In Ubuntu, you can find “Texmaker” listed in the Software Center and simply install it from there. If you use command line, you can use the apt-get install command to install it. Alternatively, you can install it from . deb file that you download from its official website.

How do I compile a LaTeX file?

In order to compile a LaTeX file, simply press \ll while editing the file. This runs latex on the current file and displays the errors in a |quickfix-window| below the file being edited.


2 Answers

This is what I did:

1- Install Latex compiler:

sudo apt-get install abntex

2- Install TexMaker:

sudo apt-get install texmaker

3- Run texmaker and load your Tex document

And you install next, too

sudo apt-get  install texlive-latex-base texlive-latex-extra texlive-latex-recommended texlive-fonts-recommended texmaker
like image 72
Jav_Rock Avatar answered Sep 22 '22 12:09

Jav_Rock


You can install all dependencies just using sudo apt-get install texlive

like image 37
goe Avatar answered Sep 22 '22 12:09

goe