[NTG-context] Server downtime on 20th June and 4th July

2015-06-19 Thread Mojca Miklavec
Hi,

There is a planned downtime of our server (that excludes the wiki) due
to UPS upgrades on Saturday the 20th of June and the 4th of July.

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
___

Re: [NTG-context] Line wrapping inconsistency with tolerance, alignment and framed

2015-06-19 Thread Christoph Reller
On Thu, 18 Jun 2015 17:04:33 +0200 schuster.wolfg...@gmail.com wrote:

 The frame resets the tolerance settings and you have to set the values
 again for it.


  \defineframed[myframe][align={flushleft,stretch,verytolerant},offset=0pt]


 BTW: You can also disable hyphentation with the “nothyphenated” keyword
 for \setupalign (and the align key).

 \starttext

 \startalignment[flushleft,stretch,verytolerant,nothyphenated]
supercalifragilisticexpialidoc + supercalifragilisticexpialidoc +
supercalifragilisticexpialidoc + supercalifragilisticexpialidoc
 \stopalignment

 \startframed[align={flushleft,stretch,verytolerant,nothyphenated}]
supercalifragilisticexpialidoc + supercalifragilisticexpialidoc +
supercalifragilisticexpialidoc + supercalifragilisticexpialidoc
 \stopframed

 \stoptext

 Wolfgang


Thank you Wolfgang! This is very valuable information to me - and it solves
the problem.

Christoph
___
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
___

Re: [NTG-context] Newbie, question about fonts

2015-06-19 Thread Thad Heltemes
Try this:

\definefontfamily[ijcv-fonts][sans][ITCFranklinGothicStd][tf=file:ITCFranklinGothicStd-BkCp.otf,
it=file:ITCFranklinGothicStd-BkCpIt.otf,
bf=file:ITCFranklinGothicStd-DmCp.otf,
bi=file: ITCFranklinGothicStd-DmCpIt.otf]

On Fri, Jun 19, 2015 at 2:18 PM, Florian Rudt fr...@mac.com wrote:

 Dear List,

 at first: thanks a lot for TeX and ConTeXt.

 I am really new to CoTeXt, TeX and LaTex, sorry. I come from the other
 side, from the DTP-side (the dark side). I have been working for more than
 20 years in the graphics and prepess business with the mouse (only at the
 beginning some weeks playing with Linotype Series 300 and Linosetting and
 one day Berthold's ProfiPage).

 I managed to redo a simple old job with context: the book block of a
 novel, incl. front matter and fonts from my own library. Even the first
 results were amazingly beautiful.

 Now I want to redesign an academic journal (the International Journal of
 Conflict and Violence, www.ijcv.org) that I currently set with tango
 (something like Scribus or InDesign). I have got most of my font working
 with ConTeXt, but this time I failed. I can not get the ITC Franklin Gothic
 working.

 My installation is ConTeXt standalone on linux mint. I installed the
 otf-fonts by copying them into the directory
 ~/context/tex/texmf-fonts/opentype/FranklinGothic/ . Then I run mtxrun
 --generate in the terminal.

 mtxrun --script fonts --list --all --pattern=*franklin* gives:

 itcfranklingothicstd itcfranklingothicstddmcp
  ITCFranklinGothicStd-DmCp.otf
 itcfranklingothicstdbkcp itcfranklingothicstdbkcp
  ITCFranklinGothicStd-BkCp.otf
 itcfranklingothicstdbkcpit   itcfranklingothicstdbkcpit
  ITCFranklinGothicStd-BkCpIt.otf
 itcfranklingothicstdbold itcfranklingothicstddmcp
  ITCFranklinGothicStd-DmCp.otf
 itcfranklingothicstdbolditalic   itcfranklingothicstddmcpit
  ITCFranklinGothicStd-DmCpIt.otf
 itcfranklingothicstddemi itcfranklingothicstddmcp
  ITCFranklinGothicStd-DmCp.otf
 itcfranklingothicstddmcp itcfranklingothicstddmcp
  ITCFranklinGothicStd-DmCp.otf
 itcfranklingothicstddmcpit   itcfranklingothicstddmcpit
  ITCFranklinGothicStd-DmCpIt.otf
 itcfranklingothicstditalic   itcfranklingothicstdbkcpit
  ITCFranklinGothicStd-BkCpIt.otf
 itcfranklingothicstdnormal   itcfranklingothicstdbkcpit
  ITCFranklinGothicStd-BkCpIt.otf
 itcfranklingothicstdregular  itcfranklingothicstdbkcp
  ITCFranklinGothicStd-BkCp.otf

 I thought that all font styles are available (but I only need Book
 Compressed, Book Compressed Italic, Demi Compressed, and Demi Compressed
 Italic).

 So, this is my not working example:

 %fonts for ijcv
 \setupbodyfontenvironment[default][em=italic]
 %
 \definefontfamily [ijcv-fonts] [serif] [Minion Pro]
 \definefontfamily [ijcv-fonts] [sans] [itcfranklingothicstd]
 %
 \definefontfeature [default] [default] [onum=yes]
 %
 \setupbodyfont[ijcv-fonts, 10.25pt]
 \setupinterlinespace[4.75mm]
 %
 \starttext
 Minion Pro 1234567890

 \ss{ITC Franklin Gothic Book Compressed}
 \stoptext

 The problem is the fontname: [itcfranklingothicstd] doesn't work and I
 tried [ITC Franklin Gothic Std] and a lot of other spellings. I succeded
 with a lot of other fonts with this approach.

 What could I have done wrong?

 Thanks in advance

 Florian


 ___
 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

 ___




-- 
Thad Heltemes, Ph.D.

http://theltemes.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
___

Re: [NTG-context] Newbie, question about fonts

2015-06-19 Thread Florian Rudt
Works :-)

Thanks a lot, Thad.

Best regards,

Florian


Am 19.06.2015 um 21:33 schrieb Thad Heltemes thelte...@gmail.com:

 Try this:
 
 \definefontfamily[ijcv-fonts][sans][ITCFranklinGothicStd][tf=file:ITCFranklinGothicStd-BkCp.otf,
  it=file:ITCFranklinGothicStd-BkCpIt.otf, 
 bf=file:ITCFranklinGothicStd-DmCp.otf, bi=file: 
 ITCFranklinGothicStd-DmCpIt.otf]
 
 On Fri, Jun 19, 2015 at 2:18 PM, Florian Rudt fr...@mac.com wrote:
 Dear List,
 
 at first: thanks a lot for TeX and ConTeXt.
 
 I am really new to CoTeXt, TeX and LaTex, sorry. I come from the other side, 
 from the DTP-side (the dark side). I have been working for more than 20 years 
 in the graphics and prepess business with the mouse (only at the beginning 
 some weeks playing with Linotype Series 300 and Linosetting and one day 
 Berthold's ProfiPage).
 
 I managed to redo a simple old job with context: the book block of a novel, 
 incl. front matter and fonts from my own library. Even the first results were 
 amazingly beautiful.
 
 Now I want to redesign an academic journal (the International Journal of 
 Conflict and Violence, www.ijcv.org) that I currently set with tango 
 (something like Scribus or InDesign). I have got most of my font working with 
 ConTeXt, but this time I failed. I can not get the ITC Franklin Gothic 
 working.
 
 My installation is ConTeXt standalone on linux mint. I installed the 
 otf-fonts by copying them into the directory 
 ~/context/tex/texmf-fonts/opentype/FranklinGothic/ . Then I run mtxrun 
 --generate in the terminal.
 
 mtxrun --script fonts --list --all --pattern=*franklin* gives:
 
 itcfranklingothicstd itcfranklingothicstddmcp 
 ITCFranklinGothicStd-DmCp.otf
 itcfranklingothicstdbkcp itcfranklingothicstdbkcp 
 ITCFranklinGothicStd-BkCp.otf
 itcfranklingothicstdbkcpit   itcfranklingothicstdbkcpit   
 ITCFranklinGothicStd-BkCpIt.otf
 itcfranklingothicstdbold itcfranklingothicstddmcp 
 ITCFranklinGothicStd-DmCp.otf
 itcfranklingothicstdbolditalic   itcfranklingothicstddmcpit   
 ITCFranklinGothicStd-DmCpIt.otf
 itcfranklingothicstddemi itcfranklingothicstddmcp 
 ITCFranklinGothicStd-DmCp.otf
 itcfranklingothicstddmcp itcfranklingothicstddmcp 
 ITCFranklinGothicStd-DmCp.otf
 itcfranklingothicstddmcpit   itcfranklingothicstddmcpit   
 ITCFranklinGothicStd-DmCpIt.otf
 itcfranklingothicstditalic   itcfranklingothicstdbkcpit   
 ITCFranklinGothicStd-BkCpIt.otf
 itcfranklingothicstdnormal   itcfranklingothicstdbkcpit   
 ITCFranklinGothicStd-BkCpIt.otf
 itcfranklingothicstdregular  itcfranklingothicstdbkcp 
 ITCFranklinGothicStd-BkCp.otf
 
 I thought that all font styles are available (but I only need Book 
 Compressed, Book Compressed Italic, Demi Compressed, and Demi Compressed 
 Italic).
 
 So, this is my not working example:
 
 %fonts for ijcv
 \setupbodyfontenvironment[default][em=italic]
 %
 \definefontfamily [ijcv-fonts] [serif] [Minion Pro]
 \definefontfamily [ijcv-fonts] [sans] [itcfranklingothicstd]
 %
 \definefontfeature [default] [default] [onum=yes]
 %
 \setupbodyfont[ijcv-fonts, 10.25pt]
 \setupinterlinespace[4.75mm]
 %
 \starttext
 Minion Pro 1234567890
 
 \ss{ITC Franklin Gothic Book Compressed}
 \stoptext
 
 The problem is the fontname: [itcfranklingothicstd] doesn't work and I tried 
 [ITC Franklin Gothic Std] and a lot of other spellings. I succeded with a lot 
 of other fonts with this approach.
 
 What could I have done wrong?
 
 Thanks in advance
 
 Florian
 
 ___
 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
 ___
 
 
 
 --
 Thad Heltemes, Ph.D.
 
 http://theltemes.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
 ___



signature.asc
Description: Message signed with OpenPGP using GPGMail
___
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  : 

[NTG-context] Newbie, question about fonts

2015-06-19 Thread Florian Rudt
Dear List,

at first: thanks a lot for TeX and ConTeXt.

I am really new to CoTeXt, TeX and LaTex, sorry. I come from the other side, 
from the DTP-side (the dark side). I have been working for more than 20 years 
in the graphics and prepess business with the mouse (only at the beginning some 
weeks playing with Linotype Series 300 and Linosetting and one day Berthold's 
ProfiPage).

I managed to redo a simple old job with context: the book block of a novel, 
incl. front matter and fonts from my own library. Even the first results were 
amazingly beautiful.

Now I want to redesign an academic journal (the International Journal of 
Conflict and Violence, www.ijcv.org) that I currently set with tango (something 
like Scribus or InDesign). I have got most of my font working with ConTeXt, but 
this time I failed. I can not get the ITC Franklin Gothic working.

My installation is ConTeXt standalone on linux mint. I installed the otf-fonts 
by copying them into the directory 
~/context/tex/texmf-fonts/opentype/FranklinGothic/ . Then I run mtxrun 
--generate in the terminal.

mtxrun --script fonts --list --all --pattern=*franklin* gives:

itcfranklingothicstd itcfranklingothicstddmcp 
ITCFranklinGothicStd-DmCp.otf
itcfranklingothicstdbkcp itcfranklingothicstdbkcp 
ITCFranklinGothicStd-BkCp.otf
itcfranklingothicstdbkcpit   itcfranklingothicstdbkcpit   
ITCFranklinGothicStd-BkCpIt.otf
itcfranklingothicstdbold itcfranklingothicstddmcp 
ITCFranklinGothicStd-DmCp.otf
itcfranklingothicstdbolditalic   itcfranklingothicstddmcpit   
ITCFranklinGothicStd-DmCpIt.otf
itcfranklingothicstddemi itcfranklingothicstddmcp 
ITCFranklinGothicStd-DmCp.otf
itcfranklingothicstddmcp itcfranklingothicstddmcp 
ITCFranklinGothicStd-DmCp.otf
itcfranklingothicstddmcpit   itcfranklingothicstddmcpit   
ITCFranklinGothicStd-DmCpIt.otf
itcfranklingothicstditalic   itcfranklingothicstdbkcpit   
ITCFranklinGothicStd-BkCpIt.otf
itcfranklingothicstdnormal   itcfranklingothicstdbkcpit   
ITCFranklinGothicStd-BkCpIt.otf
itcfranklingothicstdregular  itcfranklingothicstdbkcp 
ITCFranklinGothicStd-BkCp.otf

I thought that all font styles are available (but I only need Book Compressed, 
Book Compressed Italic, Demi Compressed, and Demi Compressed Italic).

So, this is my not working example:

%fonts for ijcv
\setupbodyfontenvironment[default][em=italic]
%
\definefontfamily [ijcv-fonts] [serif] [Minion Pro]
\definefontfamily [ijcv-fonts] [sans] [itcfranklingothicstd]
%
\definefontfeature [default] [default] [onum=yes]
%
\setupbodyfont[ijcv-fonts, 10.25pt]
\setupinterlinespace[4.75mm]
%
\starttext
Minion Pro 1234567890

\ss{ITC Franklin Gothic Book Compressed}
\stoptext

The problem is the fontname: [itcfranklingothicstd] doesn't work and I tried 
[ITC Franklin Gothic Std] and a lot of other spellings. I succeded with a lot 
of other fonts with this approach.

What could I have done wrong?

Thanks in advance

Florian


signature.asc
Description: Message signed with OpenPGP using GPGMail
___
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
___