TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: Paperman – LaTeX editor with a Markdown feel

120 pointsby patricklorioover 10 years ago

21 comments

misnomeover 10 years ago
I tried a &quot;\begin{equation}&quot; pair to get a numbered equation and nothing happened.<p>I would say &quot;Markdown editor with latex inline equations&quot; instead of calling this a latex editor - the most basic latex syntax doesn&#x27;t seem to work!<p>(also: Isn&#x27;t $$ an out-of-line equation, rather than a \displaystyle-sized inline)
wall_wordsover 10 years ago
If you want to generate LaTeX from Markdown, you can use Pandoc. Pandoc has various extensions to regular Markdown (including inline math, tables, etc.), so this gives you some flexibility when producing more complicated types of documents. In fact, Pandoc converts from Markdown to LaTeX to PDF when you choose PDF as the output format.
评论 #8508102 未加载
sigvefover 10 years ago
This is the same approach we&#x27;re using at Wikipendium[1] for math-heavy article editing - Markdown with inline LaTeX math segments edited in a CodeMirror editor. It&#x27;s cool to see others tackling the same problems in similar ways.<p>We use Mathjax[2] for rendering LaTeX client side, but have run into some performance issues as the number of math segments increase on a single page. Paperman seems to be using something called MathQuill[3], has anyone here tried using it on large amounts of LaTeX math? KaTeX[4] is another possible alternative, and certainly the best I&#x27;ve tried in terms of performance, although it&#x27;s still a little lacking in terms of symbol support.<p>[1]: <a href="https://www.wikipendium.no/" rel="nofollow">https:&#x2F;&#x2F;www.wikipendium.no&#x2F;</a> [2]: <a href="http://www.mathjax.org/" rel="nofollow">http:&#x2F;&#x2F;www.mathjax.org&#x2F;</a> [3]: <a href="http://mathquill.com/" rel="nofollow">http:&#x2F;&#x2F;mathquill.com&#x2F;</a> [4]: <a href="http://khan.github.io/KaTeX/" rel="nofollow">http:&#x2F;&#x2F;khan.github.io&#x2F;KaTeX&#x2F;</a>
评论 #8507428 未加载
m_muellerover 10 years ago
Here&#x27;s what I&#x27;d need as a minimum to make productive use of this:<p>* numbered list<p>* download LaTeX<p>What I&#x27;d consider paying for:<p>* a nice table editor - IMO this is the only case where it would make sense to divert from the text-input-only approach.<p>* Load LaTeX templates, have all of the common packages supported, so that I could just write papers online.<p>* Integration with DropBox and&#x2F;or Google Drive
评论 #8507664 未加载
yiyusover 10 years ago
I wrote a kind of markdown to latex script to help me writing my thesis, based in previous versions of md2html.awk. It had some more features than Paperman, such as ((footnotes)), [[bib references]] and [(references to labels)]. It also supported several heading levels, an abstract at the beginning, and even had some support for images and tables.<p>It was never publicly released because, since it was for my personal use, required a serious amount of work to make it usable for more people and better (or at least some) documentation. Anyway, if somebody is interested, I have no problem sharing it.
评论 #8507726 未加载
chatmastaover 10 years ago
I started using Latex with editors like this (sharelatex I think), but eventually, when my advisor said &quot;latex is source code,&quot; I came to the realization that I should be writing in my text editor.<p>Now I do all latex writing in sublime or vim and have a build script to compile to Pdf and open it in Preview on the left side of my screen. Save, build, review. Just as fast as an online editor, no lockin, and a native feeling.
jvdhover 10 years ago
If you want authors to actually write (scientific) papers in this editor you&#x27;ll need a lot more:<p><pre><code> * including figures, with captions * tabels, with captions * sections * Something like the \ref{} command to refer to tables, figures, sections. * Citations</code></pre>
beggiover 10 years ago
I&#x27;d say it&#x27;s Markdown editor with limited LaTeX support but whatever. It&#x27;s very cool.
grayclhnover 10 years ago
Emacs orgmode is an exceptional LaTeX editor with a markdown feel. Citations, numbered&#x2F;aligned equations, tables, footnotes, etc.
mostelatoover 10 years ago
I use something identical to this: <a href="https://stackedit.io/" rel="nofollow">https:&#x2F;&#x2F;stackedit.io&#x2F;</a>
评论 #8507665 未加载
评论 #8507830 未加载
mandalar12over 10 years ago
Nice project. Are the source available ? It would be nice to use but I&#x27;d rather host&#x2F;use it locally.<p>Besides I don&#x27;t know which font (Symbola?) you use in the .pdf but it appears ugly (part of the &#x27;o&#x27; is missing and it is overall not too easy to read) on my laptop running Ubuntu 14.10.
mhartlover 10 years ago
Those interested in a tool that lets you use your text editor with an auto-refreshed HTML view should check out Softcover (<a href="http://softcover.io/" rel="nofollow">http:&#x2F;&#x2F;softcover.io&#x2F;</a>), which among other things is the build system used by the <i>Ruby on Rails Tutorial</i>.
jbranchaudover 10 years ago
The tagline is misleading. This is just a markdown editor with something like MathJax dropped in to do LaTeX-like equation rendering. Nevertheless, the live-editing and download PDF features are pretty cool. Nice work!
thesumofallover 10 years ago
Nice demo. Hopefully the time will come when we will finally have a proper Latex editor that is easy to use and has an editor that makes it a joy to write with (think of iA Writer)
beerbajayover 10 years ago
Good idea, as latex editing can be incredibly slow, but the math support failed on my first test case: $$A = \sum_{n=-\infty}^{+\infty} f(x)$$
评论 #8507515 未加载
评论 #8507673 未加载
Dorian-Marieover 10 years ago
I love it, I always thing LaTeX documents are the best looking PDF out there, but I write Markdown files because that&#x27;s so much easier.
评论 #8507522 未加载
NaNaNover 10 years ago
Seems like a linkbait. There is not anything new to me. It&#x27;s just a Markdown variant editor with a LaTeX feel.
atmosxover 10 years ago
Is there any editor that can produce that? Can I add custom latex extensions (e.g. for chemistry)?
vannaover 10 years ago
<a href="http://markx.herokuapp.com" rel="nofollow">http:&#x2F;&#x2F;markx.herokuapp.com</a> :)
sampoover 10 years ago
There is something wrong with all the o letters in the pdf that I downloaded.
评论 #8507667 未加载
zobzuover 10 years ago
i would call it a markdown with formulas :)