
gknauth
2018-2-23 16:42:51
Very happy to see CACM 3/18 cover story on programmable programming languages today!

ben
2018-2-23 21:11:36
I’m using scribble to write a paper, and I want it to output \begin{multicols}{2} ... stuff ... \end{multicols}
. Is there an easy way to do this?

ben
2018-2-23 21:12:30
@nested[#:style "multicols"]{... stuff ...}
outputs \begin{multicols}{2} ... stuff ... \end{multicols}
, but I want to add the 2

stamourv
2018-2-23 21:14:57
@ben: For stuff like that, I just fall back to TeX directly.

ben
2018-2-23 21:16:05
but I’d like ... stuff ...
to be in scribble

mflatt
2018-2-23 21:18:30
@ben I’d fall back to LaTex to make an MultiColsTwo
environment that inserts \begin{multicols}{2}
and \end{multicols}
.

mflatt
2018-2-23 21:18:51
Then use @nested[#:style "MultiColsTwo"]{... stuff ...}

ben
2018-2-23 21:19:17
ok