Latex compiling is precisely a kind of thing I'd do on _my machine_ than on a web service. Who in this world knows Latex but doesn't have access to a machine to compile it into a pdf? While I really like how well the site has been done, I have a hard time imagining how it would be a success, in the market.
ScribTeX online LaTeX editor (with git interface)
21–30 of 37 posts
Re: ScribTeX online LaTeX editor (with git interface)
#22Re: ScribTeX online LaTeX editor (with git interface)
#23The most attractive feature for a service like this is the collaboration features. I have a linux box set up for wake on lan and Dropbox so I can basically do the same thing as long as I have access to a terminal. What would be great was if the editor with ScribTex was something similar to etherpad had where multiple users can edit the same document at once and you can see updates in realtime.
I was a bit taken aback that this has been live since January 2009 (if I'm reading their blog correctly) since an online LaTex editor is something I look out for on a semi regular basis (and has been for years).
Re: ScribTeX online LaTeX editor (with git interface)
#24Earlier quoted context omitted.
LaTeX doesn't support Unicode. You need XeLaTeX for that: http://i.imgur.com/Yx9x4.png (code is at http://paste.pocoo.org/show/295774/ )
It's hackish, but you can do Unicode in LaTeX with the inputenc and ucs packages. If you do: \usepackage[utf8x]{inputenc} \usepackage{ucs} then the inputenc macro package does a first pass on the document, handing off all non-ASCII characters to ucs to replace them with LaTeX commands to generate the appropriate characters, if supported. So, ö gets replaced by \"{o}, א gets replaced with \hebalef, etc. Doesn't work f…
\usepackage[utf8]{inputenc}
It seems utf8x is more complete, but not officially supported. I haven't needeced the ucs package. (Maybe needed for extended characters, Chinese?)http://stackoverflow.com/questions/1797841/icelandic-utf8-an...
By the way, here is a document that can be compiled both with LaTeX and XeLaTeX, with Unicode:
http://ustunozgur.com/compiling-documents-via-both-latex-and...
Re: ScribTeX online LaTeX editor (with git interface)
#25I wish I could up vote this more. I've tried LaTeX a few times and I think the reason I don't go back more often is because I have to install it and remember how to compile. This makes it much easier to get your feet wet.
Re: ScribTeX online LaTeX editor (with git interface)
#26Thank you for all the positive comments, they really mean a lot. The constructive feedback from HN is excellent as always.
For the interested, here are some features I am working on at the moment: * Better history navigation. The current implementation is quite flat and cumbersome. * A much better editor. Currently it's just a textbox with syntax highlighting, but I'm working on something to rival the functionality of a desktop editor. * Overall design, in particular the splash page and information pages
Push and pull access to the underlying git repository is currently a feature I am testing. Send me an email (james@scribtex.com) if you would like me to enable it for your account.
Re: ScribTeX online LaTeX editor (with git interface)
#27Re: ScribTeX online LaTeX editor (with git interface)
#28Latex compiling is precisely a kind of thing I'd do on _my machine_ than on a web service. Who in this world knows Latex but doesn't have access to a machine to compile it into a pdf? While I really like how well the site has been done, I have a hard time imagining how it would be a success, in the market.
Re: ScribTeX online LaTeX editor (with git interface)
#29Earlier quoted context omitted.
It's hackish, but you can do Unicode in LaTeX with the inputenc and ucs packages. If you do: \usepackage[utf8x]{inputenc} \usepackage{ucs} then the inputenc macro package does a first pass on the document, handing off all non-ASCII characters to ucs to replace them with LaTeX commands to generate the appropriate characters, if supported. So, ö gets replaced by \"{o}, א gets replaced with \hebalef, etc. Doesn't work f…
Huh, it worked for ö, but א gave me: ! Undefined control sequence. \u-default-1488 #1->\hebalef And the Japanese example above gave me: Package ucs Error: Unknown Unicode character 12371 = U+3053 Either way, there's not much of a point in using LaTeX when XeLaTeX is available, save for intercompatibility. So until sites like this one start moving to XeTeX/XeLaTeX, we'll still often be stuck without (true) Unicode.
Re: ScribTeX online LaTeX editor (with git interface)
#30Hi, I'm the creator of ScribTeX. I'm a regular reader of HN and it was great to see this on the front page this morning. Most of my effort is focused on the technical side of things and I've been relying on word of mouth for promotion. (Sorry to those of you who have been looking for something like this for a while!) Thank you for all the positive comments, they really mean a lot. The constructive feedback from HN is…