ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Jaroslav Hajtmar <hajtmar@gyza.cz>
Cc: mailing list for ConTeXt users <ntg-context@ntg.nl>
Subject: Re: setuphead for in-paragraph head ?
Date: Sun, 12 Jan 2014 20:29:40 +0100	[thread overview]
Message-ID: <52D2ED24.2010007@gyza.cz> (raw)
In-Reply-To: <6EAA74A6-9DDF-4FF2-8020-958E37EB7209@gmail.com>

OK.  Thanx very much - for me it is a useful thing...
Jaroslav Hajtmar


Dne 12.1.2014 17:08, Otared Kavian napsal(a):
> Hi Jaroslav,
>
> Actually the formatting of what you put in the block determined for example by
> 	\beginanswer
> 		The answer is…
> 	\endanswer
> is independent of the block mechanism: you can use whatever structure you want. In the example we exchanged on, an enumeration such as
> 	\startanswer
> 	\stopanswer
> where this \start \stop has been defined by \defineenumeration[answer], but you can use your own compact formatting instead of this.
>
> Best regards: OK
>
> On 12 janv. 2014, at 11:45, Jaroslav Hajtmar <hajtmar@gyza.cz> wrote:
>
>> Hello Otared and Wolfgang.
>>
>> Thanks for launching this example.
>> Is there a possibility to write the answers into a more compact form (more columns, one paragraph, etc) like in any textbooks? I tried experimenting, but I was unable to put answers into a compact form.
>> Thanks Jaroslav Hajtmar
>>
>> Here is my modification of answer enumeration (not working):
>>
>> %%%% begin question-hint-answer-blocks.tex
>> \defineblock[question]
>> \defineblock[hint]
>> \defineblock[answer]
>>
>> \defineenumeration[question]
>>     [alternative=hanging,
>>     width=2.5cm,
>>     text={Question},
>>     headstyle={\bi},
>>     stopper={.}]
>>
>> \defineenumeration[hint]
>>     [alternative=hanging,
>>     width=4cm,
>>     text={Hint for question},
>>     headstyle={\bi},
>>     stopper={.}]
>>
>> \defineenumeration[answer]
>>     [alternative=hanging,
>>     beforehead=,
>>     afterhead=,
>>      before={\startcolumns[n=4]},
>>     after=\stopcolumns,
>>     width=0.5em,
>>     text={},
>>     headstyle={},
>>     stopper={.}]
>>
>> \setupblock[question][before={\startquestion},after={\stopquestion}]
>> \setupblock[hint][before={\starthint},after={\stophint}]
>> \setupblock[answer][before={\startanswer},after={\stopanswer}]
>>
>> \keepblocks[question]
>> \hideblocks[hint]
>> \hideblocks[answer]
>>
>> \starttext
>>
>> \section{Questions}
>>
>> \beginquestion
>>   Compute $4\times 5$.
>> \endquestion
>>
>> \beginhint
>>   Use the fact that $2\times 5 = 10$.
>> \endhint
>>
>> \beginanswer
>>   $20$.
>> \endanswer
>>
>> \beginquestion
>>   What is the value of $100 / 10$?
>> \endquestion
>>
>> \beginhint
>> Remember that $10\times 10 = 100$.
>> \endhint
>>
>> \beginanswer
>> $10$
>> \endanswer
>>
>> \beginquestion
>>   Compute $4\times 5$.
>> \endquestion
>>
>> \beginhint
>>   Use the fact that $2\times 5 = 10$.
>> \endhint
>>
>> \beginanswer
>>   $20$.
>> \endanswer
>>
>> \beginquestion
>>   What is the value of $100 / 10$?
>> \endquestion
>>
>> \beginhint
>> Remember that $10\times 10 = 100$.
>> \endhint
>>
>> \beginanswer
>> $10$
>> \endanswer
>>
>> \beginquestion
>>   Compute $4\times 5$.
>> \endquestion
>>
>> \beginhint
>>   Use the fact that $2\times 5 = 10$.
>> \endhint
>>
>> \beginanswer
>>   $20$.
>> \endanswer
>>
>> \beginquestion
>>   What is the value of $100 / 10$?
>> \endquestion
>>
>> \beginhint
>> Remember that $10\times 10 = 100$.
>> \endhint
>>
>> \beginanswer
>> $10$
>> \endanswer
>> \beginquestion
>>   Compute $4\times 5$.
>> \endquestion
>>
>> \beginhint
>>   Use the fact that $2\times 5 = 10$.
>> \endhint
>>
>> \beginanswer
>>   $20$.
>> \endanswer
>>
>> \beginquestion
>>   What is the value of $100 / 10$?
>> \endquestion
>>
>> \beginhint
>> Remember that $10\times 10 = 100$.
>> \endhint
>>
>> \beginanswer
>> $10$
>> \endanswer
>>
>>
>> \section{Hints to all questions}
>>
>> \useblocks[hint]
>>
>> \section{Answers to all questions}
>>
>> \useblocks[answer]
>>
>> \stoptext
>> %%%% end question-hint-answer-blocks.tex
>>
>>
>>
>> Dne 11.1.2014 20:01, Otared Kavian napsal(a):
>>> %%%% begin question-hint-answer-blocks.tex
>>> \defineblock[question]
>>> \defineblock[hint]
>>> \defineblock[answer]
>>>
>>> \defineenumeration[question]
>>> 	[alternative=hanging,
>>> 	width=2.5cm,
>>> 	text={Question},
>>> 	headstyle={\bi},
>>> 	stopper={.}]
>>> 	
>>> \defineenumeration[hint]
>>> 	[alternative=hanging,
>>> 	width=4cm,
>>> 	text={Hint for question},
>>> 	headstyle={\bi},
>>> 	stopper={.}]
>>>
>>> \defineenumeration[answer]
>>> 	[alternative=hanging,
>>> 	width=4.5cm,
>>> 	text={Answer to question},
>>> 	headstyle={\bi},
>>> 	stopper={.}]
>>>
>>> \setupblock[question][before={\startquestion},after={\stopquestion}]
>>> \setupblock[hint][before={\starthint},after={\stophint}]
>>> \setupblock[answer][before={\startanswer},after={\stopanswer}]
>>>
>>> \keepblocks[question]
>>> \hideblocks[hint]
>>> \hideblocks[answer]
>>>
>>> \starttext
>>>
>>> \section{Questions}
>>>
>>> \beginquestion
>>>    Compute $4\times 5$.
>>> \endquestion
>>>
>>> \beginhint
>>>    Use the fact that $2\times 5 = 10$.
>>> \endhint
>>>
>>> \beginanswer
>>>    $20$.
>>> \endanswer
>>>
>>> \beginquestion
>>>    What is the value of $100 / 10$?
>>> \endquestion
>>>
>>> \beginhint
>>> Remember that $10\times 10 = 100$.
>>> \endhint
>>>
>>> \beginanswer
>>> $10$
>>> \endanswer
>>>
>>> \section{Hints to all questions}
>>>
>>> \useblocks[hint]
>>>
>>> \section{Answers to all questions}
>>>
>>> \useblocks[answer]
>>>
>>> \stoptext
>>> %%%% end question-hint-answer-blocks.tex
>> ___________________________________________________________________________________
>> 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
>> ___________________________________________________________________________________
>

___________________________________________________________________________________
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
___________________________________________________________________________________


  reply	other threads:[~2014-01-12 19:29 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-09 13:23 Jean-Guillaume
2014-01-09 13:24 ` Wolfgang Schuster
2014-01-09 14:19 ` Otared Kavian
2014-01-09 14:48   ` Jaroslav Hajtmar
2014-01-09 15:36     ` Otared Kavian
2014-01-09 17:12       ` Aditya Mahajan
2014-01-09 17:23       ` Wolfgang Schuster
2014-01-09 17:36         ` Otared Kavian
2014-01-09 17:41           ` Wolfgang Schuster
2014-01-10  6:56             ` Jaroslav Hajtmar
2014-01-10 23:36             ` Otared Kavian
2014-01-11  9:12               ` Wolfgang Schuster
2014-01-11 19:01                 ` Otared Kavian
2014-01-12 10:45                   ` Jaroslav Hajtmar
2014-01-12 16:08                     ` Otared Kavian
2014-01-12 19:29                       ` Jaroslav Hajtmar [this message]
2014-01-12 20:30                   ` Wolfgang Schuster
2014-01-12 20:47                     ` Otared Kavian
2014-01-12 21:40                       ` Wolfgang Schuster
2014-01-13  3:41                         ` Otared Kavian
2014-01-13 10:07                           ` Wolfgang Schuster
  -- strict thread matches above, loose matches on Subject: below --
2014-01-09 12:44 Jean-Guillaume
2014-01-09 13:03 ` Marco Patzer
2014-01-09  9:43 Jean-Guillaume
2014-01-09 11:27 ` Marco Patzer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=52D2ED24.2010007@gyza.cz \
    --to=hajtmar@gyza.cz \
    --cc=ntg-context@ntg.nl \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).