ScribTeX online LaTeX editor (with git interface)
11–20 of 37 posts
Re: ScribTeX online LaTeX editor (with git interface)
#12Just tested with some chinese characters, showed up as blank in the output pdf file. No support for languages other than english is not good.
Re: ScribTeX online LaTeX editor (with git interface)
#13That's just really nice. I used LaTeX for two theses and loved it. It was very freeing to just worry about content and not about layout. When I use Word, I constantly fiddle with styling and with Word's occasional bizarre behavior (delete a word and the next paragraph becomes bold... ?!). With LaTeX, I spent an hour up front defining styles and a few minutes toward the end adjusting styles, but otherwise just wrote c…
Re: ScribTeX online LaTeX editor (with git interface)
#14I think there's a lot of room for improvement in LaTeX editors. For instance:
Suppose I'm reading a PDF compiled draft and spot an error in an equation. It would be fantastic if I could simply click on the equation and have a mini text box pop up with the relevant LaTeX code. After editing the LaTeX the PDF would seamlessly update.
Or suppose I see an embedded figure and want to change its dimensions. It would be great if I didn't have to guess, compile, check, guess, compile, check, guess, compile, check, etc. If I could see the result as I edit the code, or maybe even have a little GUI to click and drag to scale, that would save me tremendous amounts of time.
I would pay a monthly subscription to have a fast online version of that software.
Re: ScribTeX online LaTeX editor (with git interface)
#15Just tested with some chinese characters, showed up as blank in the output pdf file. No support for languages other than english is not good.
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/ )
\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 for everything, but handles a good portion of common languages.Re: ScribTeX online LaTeX editor (with git interface)
#16Earlier 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…
! 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)
#17Earlier 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.
But yeah, XeLaTeX makes that all much simpler. The LaTeX solution is mostly good if you're already using LaTeX for some reason, but need to include non-ASCII text from a limited range of languages (e.g. you're writing a Hebrew document, or an English document with a Greek literature quotation).
Re: ScribTeX online LaTeX editor (with git interface)
#18That's just really nice. I used LaTeX for two theses and loved it. It was very freeing to just worry about content and not about layout. When I use Word, I constantly fiddle with styling and with Word's occasional bizarre behavior (delete a word and the next paragraph becomes bold... ?!). With LaTeX, I spent an hour up front defining styles and a few minutes toward the end adjusting styles, but otherwise just wrote c…
Google docs has a latex based equation editor http://googlesystem.blogspot.com/2009/09/google-docs-has-equ...
Re: ScribTeX online LaTeX editor (with git interface)
#19Who 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)
#20Latex 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.
Besides, to someone who has only ever used WYSIWYG installing compilers and the like is really complicated.