koka-lang / madoko

Madoko is a fast markdown processor for high quality academic and technical articles
Other
393 stars 42 forks source link

Latex Packages #49

Closed ofrades closed 3 years ago

ofrades commented 6 years ago

Imagine I want to have a bilingual book with side-by-side text with nice lettrines. In LaTex I would use Paracol and Lettrine Packages and do something like:

\usepackage{paracol}
\usepackage{lettrine}

And then the text would look like:

\begin{paracol}{2}
\lettrine{s}{ome} text
\switchcolumn
\lettrine{s}{ome}  other text
\switchcolumn*
some text
\switchcolumn
some text
\end{paracol}

Is this possible to do with madoko? I know that markdown can do tables but it is very basic.

RandomFrenchman commented 3 years ago

If I remember well, this should do the trick.

Package : paracol
Package : lettrine
~ Snippet
\begin{paracol}{2}
\lettrine{s}{ome} text
\switchcolumn
\lettrine{s}{ome}  other text
\switchcolumn*
some text
\switchcolumn
some text
\end{paracol}
~