安装Ubuntu 11.04 natty过早,没有现成的TexMakerX deb包, 自己编译吧
网站:http://texmakerx.sourceforge.net/
下载:
1
2
| All Platforms
2.1 source tarball 11.8 MiB needs 4.3 - en, fr, de see below
|
解压之, 在编译之前安装点必要工具:
1
2
3
| $ sudo apt-get install build-essential
$ sudo apt-get install qt4-dev-tools
$ sudo apt-get install libpoppler-qt4-dev
|
在解压后的目录执行:
1
| $ qmake texmakerx.pro && make release
|
编译成功后执行texmakerx就可以了。
TexMakerX编译成功后,还只是一个编辑器, 要编译tex, 还要安装LaTex,
texlive全装可能是一个G以上, 我还是先随便装点, 以后少了什么再加吧:
1
2
3
4
5
| $ sudo apt-get install latex209-base latex209-bin
$ sudo apt-get install pdfjam
$ sudo apt-get install texlive-lang-german
$ sudo apt-get install texlive-latex-extra
$ sudo apt-get install texlive-science
|
最后在TexMakerX中Quick Build中, 报这个错:
1
| pdftex.def: PDF mode expected, but DVI mode detected!(pdftex.def) If you are using `latex', then call `pdflatex'. }\@ehc
|
这样设置一下就OK了:
英文版
1
| Optionen -> Configure TexMaker -> Quick Build -> PdfLaTex + ViewPDf
|
德文版:
1
| Optionen -> TexMaker konfigurieren -> Schnelles Übersetzen -> PdfLaTex + ViewPDf
|
再Quick Build, OK, 成功了:
1
2
| Process started: pdflatex -synctex=1 -interaction=nonstopmode “neten”.tex
Process exited normally
|