[NTG-context] Removing a single ligature and using swash alternates

2015-05-01 Thread Manuel Blanco
Hello, I'm using Minion Pro, and I would like to remove the Th ligature (but only that one). Also, I'm trying to define a \swash command that uses swash from Minion Pro Italic. Any help? \usemodule [simplefonts] [size=11pt] \setmainfont [Minion Pro] [expansion=quality,

[NTG-context] Check the character after a macro

2015-05-01 Thread Sam Ḥilluc
Hello, Is it possible to check (in a macro definition) if the character following the macro is included in a set of characters? Something that could work like this: \def\MyMacro#1{% \ifNextCharIn{abcd} \dothis% \else \dothat% \fi% } Cheers.

Re: [NTG-context] Check the character after a macro

2015-05-01 Thread Otared Kavian
Hi, You have several commands in ConTeXt doing what you are seeking to do: please look at the examples below: %%% begin do-if-inset.tex \starttext \type{\doifinset{A}{A,B,C}{should go}:} \doifinset{A}{A,B,C}{should go} \type{\doifinset{D}{A,B,C}{should go}:} \doifinset{D}{A,B,C}{should

Re: [NTG-context] Check the character after a macro

2015-05-01 Thread Wolfgang Schuster
Am 01.05.2015 um 20:41 schrieb Sam Ḥilluc shil...@gmx.com: On 2015-05-01 19:38, Otared Kavian wrote: Hi, You have several commands in ConTeXt doing what you are seeking to do: please look at the examples below: %%% begin do-if-inset.tex \starttext \type{\doifinset{A}{A,B,C}{should

Re: [NTG-context] Check the character after a macro

2015-05-01 Thread Sam Ḥilluc
On 2015-05-01 19:38, Otared Kavian wrote: Hi, You have several commands in ConTeXt doing what you are seeking to do: please look at the examples below: %%% begin do-if-inset.tex \starttext \type{\doifinset{A}{A,B,C}{should go}:} \doifinset{A}{A,B,C}{should go}

Re: [NTG-context] Letterhead Usage

2015-05-01 Thread Pablo Rodriguez
On 04/30/2015 08:46 PM, henman wrote: I have created a letterhead for correspondence, but it is too unfriendly to have to include it in every time. I would like to use it as a package, but don't know if it's possible. The problem I see is that the command \setlayer must be done after the

Re: [NTG-context] Letterhead Usage

2015-05-01 Thread Wolfgang Schuster
Am 30.04.2015 um 20:46 schrieb henman dhen...@gmail.com: I have created a letterhead for correspondence, but it is too unfriendly to have to include it in every time. I would like to use it as a package, but don't know if it's possible. The problem I see is that the command

Re: [NTG-context] line number overwriting

2015-05-01 Thread Wolfgang Schuster
Am 30.04.2015 um 11:24 schrieb Pierre-François Bonnefoi bonne...@unilim.fr: Hello, thank you for your solution. As I understand this code, it's a patch to some internal processing code, so I've integrated it in my environment file. The result is similar to the previous result :

Re: [NTG-context] Synonyms’ \infull doesn’t work anymore

2015-05-01 Thread Wolfgang Schuster
Am 01.05.2015 um 04:11 schrieb Thomas Floeren t...@mac.com: Hi, starting with the Beta from 16 April I have a problem with synonyms. The \infull part doesn’t work anymore. Example: ``` \definesynonyms [Tea] [Teas] [\fullTea] \setupsynonyms [Tea] [synonymstyle=italic] \Tea

Re: [NTG-context] Check the character after a macro

2015-05-01 Thread Sam Ḥilluc
On 2015-05-01 21:10, Wolfgang Schuster wrote: You can use the \doifelsenextchar command to check the character after your command. \define[1]\MyMacro {\doifelsenextchar{,} {#1} {#1. }} \starttext \MyMacro{left} right \MyMacro{left}, right \stoptext The

Re: [NTG-context] Synonyms’ \infull doesn’t work anymore

2015-05-01 Thread Thomas Floeren
On 01 May 15, at 11:47, Wolfgang Schuster schuster.wolfg...@gmail.com wrote: Am 01.05.2015 um 04:11 schrieb Thomas Floeren t...@mac.com: Hi, starting with the Beta from 16 April I have a problem with synonyms. The \infull part doesn’t work anymore. Example: ```