ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* buffer names in MKII
@ 2011-08-18 22:32 Mojca Miklavec
  2011-08-18 21:29 ` Aditya Mahajan
                   ` (2 more replies)
  0 siblings, 3 replies; 29+ messages in thread
From: Mojca Miklavec @ 2011-08-18 22:32 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Dear Hans,

something broke backward compatibility in MKII.

When using buffers like in

\startbuffer[buffername]
hello world
\stopbuffer

the code now creates buffername.tmp instead of \jobname-buffername.tmp.

This breaks the gnuplot module in weird ways. I can probably fix it in
one way or another, but I'm not sure why the behaviour would change.
To fix the vim module? :) :) :)

OK, I need to take some time and try to use Aditya's code in the
background anyway, but I still wonder if the change was intentional or
not.

Thanks,
    Mojca
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 29+ messages in thread
* Lilypond
@ 2014-06-08 22:31 David Wooten
  2014-06-10  9:53 ` Lilypond Henning Hraban Ramm
  0 siblings, 1 reply; 29+ messages in thread
From: David Wooten @ 2014-06-08 22:31 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Greetings all, it’s been quite a while since I tried to use lilypond snippets in a context file. Looks like we’re now using the filter module… can someone post a small working example file to get me started? —there are a number of different & some incomplete approaches to be found, none of which work :)

Kind regards,
David
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 29+ messages in thread
* lilypond
@ 2007-08-26 22:35 Hans Hagen
  0 siblings, 0 replies; 29+ messages in thread
From: Hans Hagen @ 2007-08-26 22:35 UTC (permalink / raw)
  To: mailing list for ConTeXt users, Mojca Miklavec

Mojca,

cn you check this module for things like

		\leavevmode%
		\newdimen\FigWidth
		\FigWidth=\figurewidth
		\ifdim\FigWidth>\localhsize
			\!!dimena=\localhsize
			\advance\!!dimena by-\FigWidth
			\noindent\hskip\!!dimena
		\fi

(1) defining dimens this way will create new ones every time since 
registers are defined global

(2) there is no need for the intermediate dimen anyway

(3) use dontleavehmode instead of leavevmode

(4) things can be simplified to:


\ifdim\figurewidth>\localhsize
   \dontleavehmode\hskip\dimexpr\localhsize-\figurewidth\relax
\fi

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
      tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 29+ messages in thread
* lilypond
@ 2007-07-03 15:59 Wolfgang Werners-Lucchini
  2007-07-06 20:25 ` lilypond Henning Hraban Ramm
  2007-08-27 10:28 ` lilypond Steffen Wolfrum
  0 siblings, 2 replies; 29+ messages in thread
From: Wolfgang Werners-Lucchini @ 2007-07-03 15:59 UTC (permalink / raw)
  To: ntg-context

Hallo!

I tryed the first wiki-example:
--------------------------------
There are some notes \lilypond{ \relative{bes a c b} } embedded in 
this line.
--------------------------------

With version 2.11.27 the lilypond option -b eps is unknown.
With version 2.10.25 the above example is a 3-page output:
(1) There are some notes
(2) lilypond-output 
(3) embedded in this line

Should I downgrad with lilypond?
Or what else I am doing wrong?

Wolfgang
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 29+ messages in thread

end of thread, other threads:[~2014-06-12 20:21 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-18 22:32 buffer names in MKII Mojca Miklavec
2011-08-18 21:29 ` Aditya Mahajan
2011-08-19  7:53   ` Henning Hraban Ramm
2011-08-19 15:08     ` Lilypond (Re: buffer names in MKII) Aditya Mahajan
2011-08-19 20:18       ` Lilypond Henning Hraban Ramm
2011-08-20  8:19         ` Lilypond Aditya Mahajan
2011-08-21  1:22           ` Lilypond David Wooten
2011-08-21 12:07           ` Lilypond Henning Hraban Ramm
2011-08-21 18:25             ` Lilypond Henning Hraban Ramm
2011-08-21 22:14             ` Lilypond Aditya Mahajan
2011-08-21 22:24               ` Lilypond Hans Hagen
2011-08-21 22:32                 ` Lilypond Aditya Mahajan
2011-08-22  1:53               ` Lilypond Aditya Mahajan
2011-08-22 13:59                 ` Lilypond Henning Hraban Ramm
2011-08-22 15:18                   ` Lilypond Aditya Mahajan
2011-08-19  0:09 ` buffer names in MKII Aditya Mahajan
2011-08-19  7:53 ` Hans Hagen
  -- strict thread matches above, loose matches on Subject: below --
2014-06-08 22:31 Lilypond David Wooten
2014-06-10  9:53 ` Lilypond Henning Hraban Ramm
2014-06-10 18:26   ` Lilypond David Wooten
2014-06-11  8:51     ` Lilypond Henning Hraban Ramm
2014-06-12 17:00       ` Lilypond David Wooten
2014-06-12 17:37         ` Lilypond Henning Hraban Ramm
2014-06-12 20:21           ` Lilypond David Wooten
2007-08-26 22:35 lilypond Hans Hagen
2007-07-03 15:59 lilypond Wolfgang Werners-Lucchini
2007-07-06 20:25 ` lilypond Henning Hraban Ramm
2007-08-27 14:28   ` lilypond Mojca Miklavec
2007-08-27 10:28 ` lilypond Steffen Wolfrum

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).