PDA

View Full Version : LaTeX



Lostincyberspace
November 19th, 2007, 03:36 AM
Does anyone know of another GUI front end for LaTeX like lyx. :)

perce
November 19th, 2007, 06:56 AM
I don't exactly know what you mean. If you want something which allows you to input symbols from a menu you could try kyle (a KDE application, but it suns under Gnome too). If you want to see the dvi file in real time when you are typing you can try (x)emacs + whizzytex.

I personally use XEmacs with an extension called x-symbols. X-symbols put some symbols in place of the command in the XEmacs buffer, and also allows you to choose the symbol from a menu if you don't remember the command. Unfortunately x-symbols is no longer maintained, and you have to download it from Debian's historical archive, but it's still working.

Miguel
November 19th, 2007, 10:00 AM
You also have TeXmaker, but it's also a Qt app. I must admit I don't know what GTk2 app I could use to edit LaTeX files, apart from gvim running the vim-latexsuite plugin (which is what I actually do).

Isn't there a list in "The not so short introduction to LaTeX2e" (A must read if you are new to LaTeX)???. Also, I'd browse synaptic and google.

MaximusTG
November 19th, 2007, 10:08 AM
I use winefish, it's in the repositories.

sudo apt-get install winefish

Kimm
November 19th, 2007, 12:47 PM
I use GEdit with spellchecking and a script in Thunar to turn it into a PDF file :popcorn:

conehead77
November 19th, 2007, 03:41 PM
I use winefish, it's in the repositories.

sudo apt-get install winefish

I just tried winefish, but got a error when i wanted to make a "Hello, world" pdf.


! LaTeX Error: File `ifpdf.sty' not found.
Im a complete LaTeX noob, so it might be trivial... any idea to fix this?
I found the ifpdf.sty file with google, but dont know what to do with it, lol

Edit: Already solved after i removed all /usepackage lines. I think adding packages will be described somewhen later in my tutorial ;)

mannheim
November 19th, 2007, 03:46 PM
I just tried winefish, but got a error when i wanted to make a "Hello, world" pdf.


! LaTeX Error: File `ifpdf.sty' not found.


If you are using Gutsy, you should install the package texlive-latex-recommended:

sudo apt-get install texlive-latex-recommended
(or use synaptic to install it). This will give you ifpdf.sty

conehead77
November 19th, 2007, 03:50 PM
If you are using Gutsy, you should install the package texlive-latex-recommended:

sudo apt-get install texlive-latex-recommended
(or use synaptic to install it). This will give you ifpdf.sty

Ah, thank you, now it all works :)

Lostincyberspace
November 19th, 2007, 06:43 PM
What I was looking for is a wysiwyg type editor like lyx is, but better, more abilitys like being able to center text, that is hard to do lyx. I use Texmaker righ now but it takes to long to edit problems in the content.

perce
November 20th, 2007, 06:10 AM
more abilitys like being able to center text, that is hard to do lyx.

To center in LaTeX:

\begin{center}

the text you whant to center

\end{center}

You don't need a wysiwyg editor for something that easy.

firefoxdl
November 20th, 2007, 09:11 AM
i'm using winefish:popcorn:

hugmenot
November 21st, 2007, 02:00 AM
Gedit with LaTeX-Plugin: http://live.gnome.org/Gedit/LaTeXPlugin

mustang
November 21st, 2007, 03:24 AM
sudo apt-get install kile

Lostincyberspace
November 21st, 2007, 03:51 AM
I have decide I need to learn how to code well enough to make my own that is good. I like Kiles auto complete feature, I like the setup of texmaker, but I really want a whysiwhyg interface with a more advanced set of options than lyx.

jpkotta
November 21st, 2007, 08:10 AM
[x]emacs and AUCTeX.

mustang
November 25th, 2007, 08:21 PM
If you are using Gutsy, you should install the package texlive-latex-recommended:

sudo apt-get install texlive-latex-recommended
(or use synaptic to install it). This will give you ifpdf.sty

Thanks :)