Live data from Hacker News

Quarkdown: A modern Markdown-based typesetting system

github.com

211–220 of 285 posts

Re: Quarkdown: A modern Markdown-based typesetting system

#211

Earlier quoted context omitted.

when this tool has "FakeBold"[0] like Latex has, I'll make the switch. [0]: https://x.com/OrganicGPT/status/1920202649481236745/photo/1

What does that actually mean? The tweet is not very clear. Is it the bold in the header? What's special about it?

I'm assuming it's emboldening text by thickening up the strokes instead of using a (possibly non-existent) bold variant of the font?

Re: Quarkdown: A modern Markdown-based typesetting system

#212
post #82
post #60

Earlier quoted context omitted.

Last I checked Typst can't emit HTML.

They do now, experimentally. The support is getting improved a lot currently.

That's really cool! Would love to create my website with that and also make it available as a pdf for easy archival.

Re: Quarkdown: A modern Markdown-based typesetting system

#214
> What could be mistaken for a planet is actually a quark or, more specifically, a down quark, an elementary particle that is a major constituent of matter: they give life to every complex structure we know of, while also being one of the lightest objects in existence.

Cool project, but seems dangerous to use the word “Quark” in a publishing context RE: QuarkXPress:

- https://tsdr.uspto.gov/#caseNumber=90886976&caseSearchType=U...

- https://tsdr.uspto.gov/#caseNumber=97009034&caseSearchType=U...

(Why do they have two for the same word?)

Re: Quarkdown: A modern Markdown-based typesetting system

#215
My FOSS text editor, KeenWrite[1], takes a similar approach: Markdown -> XHTML -> TeX -> PDF. The software architecture shows how you can have processor chains:

https://gitlab.com/DaveJarvis/KeenWrite/-/blob/main/docs/ima...

I developed KeenWrite to help write a sci-fi novel where I can use variables for character names, places, etc. See the tutorials[2] for details.

For anyone still using pandoc and shell scripts, my Typesetting Markdown[3] series describes building a script-based infrastructure for converting Markdown into PDF.

[1]: https://keenwrite.com/

[2]: https://www.youtube.com/watch?v=CFCqe3A5dFg&t=15s

[3]: https://dave.autonoma.ca/blog/2019/05/22/typesetting-markdow...

Re: Quarkdown: A modern Markdown-based typesetting system

#217
post #138

Earlier quoted context omitted.

Your statement is not correct, LuaLaTeX can output any unicode character you need and also you can use Lua as well for scripting.

Other incorrect statement is that LaTeX cannot generate HTML. There is number of projects for LaTeX to HTML conversion (TeX4ht, Lwarp, LaTeXML), also Pandoc can convert subset of LaTeX to HTML.

Absolutely; One should also keep in mind why do you need the HTML, drop the pdf file on Google drive, and it will serve it fine, no webservers can limit who can see it, no friction for authorizations etc. Granted difficult to view on a mobile, but who can really do serious reading of a paper on mobile?

Re: Quarkdown: A modern Markdown-based typesetting system

#218
post #191

Earlier quoted context omitted.

llms are great at handling syntax for you so you can focus on your work I never wrote latex before, but writing a simple PDF / scholarly article from code is pretty easy with current tools if you're a dev

> writing a simple PDF / scholarly article from code is pretty easy with current tools I tripped over a lot of abandonware while looking for a free OSS HTML->PDF solution, recently. What do you recommend?

I settled using latex with tectonic, you could always leverage playwright or similar for easy html -> print to pdf without any weird libs? (not great startup time, but you can batch many ops in one session)

# justfile ── put in repo root set shell := ["bash", "-cu"] # one shell → predictable env, pipe-fail, etc.

# Build a PDF once pdf: tectonic -X compile src-v0.1/main.tex --outdir target/pdf # or swap for typst

# Clean artefacts clean: rm -rf target

# Live-reload while writing watch: cargo watch -q -x 'just pdf'

then i just split the paper in sections like react components but using tex

main.tex

\documentclass{article}

\input{preamble}

\begin{document} \maketitle

\input{sections/abstract}

\input{sections/introduction}

\input{sections/syntax}

\input{sections/evaluation}

\input{sections/conclusion}

\end{document}

Re: Quarkdown: A modern Markdown-based typesetting system

#220

Earlier quoted context omitted.

This is for academic and publication journals. Which is why you see Typst it's strongest competitor in the Comparison Chart.

Every conference has their own required LaTeX style file that must be used. Unless there is an automated way to convert these exactly, I don't see how LaTeX alternatives can be used.

This is a general argument against any sort of innovation in this field, which is absurd.
Post reply on HN