Re: [NTG-context] actualtext and encoding

2009-12-06 Thread Taco Hoekwater


Wolfgang Schuster wrote:
> Hi Hans,
> 
> you showed a while ago how the actualtext function of pdf works
> and i have a module where i would use it but letters outside of
> ascii appear wrong when i copy the text
> 
> \starttext
> text \pdfliteral{/Span <> BDC}Meier\pdfliteral{EMC} 
> text
> \stoptext

Is /ActualText supposed to be in PDFDoc Encoding?

Best wishes,
Taco
___
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
___


[NTG-context] Selectively not using a font feature

2009-12-06 Thread Matthijs Kooijman
Hi all,

I'm currently using old-style numerals in my document using the onum otf font
feature:

  \definefontfeature[default][default][onum=yes]

This gives very nice results, except for the cases where a 0 appears by itself
in the text. In these cases, it appears just like an o instead of a 0. I'd
like to explicitly turn off old style numerals for those cases, but I'm unsure
how. Any suggestions?

Gr.

Matthijs

For completeness, this is all of my font setup code:

% Script taken from the "typescripts" pacakage at 
http://modules.contextgarden.net/typescripts
\starttypescript [serif] [linuxlibertine]
\definefontsynonym [LinuxLibertine-Regular][name:Linux Libertine O] 
[features=default]
\definefontsynonym [LinuxLibertine-Italic] [name:Linux Libertine O 
Italic]  [features=default]
\definefontsynonym [LinuxLibertine-Bold]   [name:Linux Libertine O 
Bold][features=default]
\definefontsynonym [LinuxLibertine-BoldItalic] [name:Linux Libertine O Bold 
Italic] [features=default]
\definefontsynonym [LinuxLibertine-Caps]   [name:Linux Libertine O 
Capitals][features=default] 
\stoptypescript

% Script taken from the "typescripts" pacakage at
\starttypescript [serif] [linuxlibertine]
\setups[font:fallback:serif]
\definefontsynonym [Serif]   [LinuxLibertine-Regular]
[features=default]
\definefontsynonym [SerifItalic] [LinuxLibertine-Italic] 
[features=default]
\definefontsynonym [SerifBold]   [LinuxLibertine-Bold]   
[features=default]
\definefontsynonym [SerifBoldItalic] [LinuxLibertine-BoldItalic] 
[features=default]
\definefontsynonym [SerifCaps]   [LinuxLibertine-Caps]   
[features=default]
\stoptypescript

\usetypescript[linuxlibertine]

% Use old numbers when available
\definefontfeature[default][default][onum=yes]

% Define a custom typescript. We could also have put the \definetypeface's 
% directly in the file, without a typescript, but I guess this is more
% elegant...
\starttypescript[Custom]
% This is a sans font that supports greek symbols
\definetypeface [Custom] [ss] [sans]  [iwona][default]
% This is a serif font that supports greek symbols
\definetypeface [Custom] [rm] [serif] [linuxlibertine] [default]   
\definetypeface [Custom] [tt] [mono]  [modern]   [default]
\definetypeface [Custom] [mm] [math]  [modern] [default]
\stoptypescript


\usetypescript [Custom]
\switchtotypeface [Custom] [10pt]


signature.asc
Description: Digital signature
___
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] bib module, mkiv, and

2009-12-06 Thread Idris Samawi Hamid ادريس سماوي حامد
On Sun, 06 Dec 2009 01:35:44 -0700, Taco Hoekwater   
wrote:



Idris Samawi Hamid ادريس سماوي حامد wrote:

If i uncomment
 \subject{References}
 the bibliography disappears. Am I missing something


You need \placepublications[criterium=all] if you use sectioning.


Thanks for the clarification, Taco. It's been a while since I have used  
the module, and missed this update in behavior -- as well as others I'm  
sure.


Thnx again and

Best wishes
Idris

--
Professor Idris Samawi Hamid, Editor-in-Chief
International Journal of Shi`i Studies
Department of Philosophy
Colorado State University
Fort Collins, CO 80523

___
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] Table macro choices?

2009-12-06 Thread Design Department
> The best I can do.

Thanks Wolfgang. At first glance, it appears to cover the essentials.
I'll need to hack on it for a few days to test the minor requirements that 
aren't so obvious in the sample PDF, but this gets me going again.

A particular advantage (if I'm interpreting this layout correctly) is avoiding 
the use of column spans for header and footer material (other than the actual 
column headings). This report has a number of different tabular layouts that I 
didn't show you, each with unique column counts. Much more reliable if it isn't 
necessary to watch colspan values in the meta-data sections (which should 
really be includes.)

I would think the general requirement here isn't that unusual for certain types 
of technical reports. This report is for a regulatory compliance application. 
If printed pages within a single report are ever separated, it is essential 
that the meta-data for the inspection be available on each page, not just the 
first or last. The same must be true for many scientific and technical layouts.

I particularly need to get my head around what's different from my initial 
approach.
Once again, thanks. I'll report on results in a few days for anyone following 
this.


cheers,
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
___


Re: [NTG-context] Table macro choices?

2009-12-06 Thread Wolfgang Schuster

Am 06.12.2009 um 03:53 schrieb Design Department:

> The main point is that the tabular material runs from just a single to 
> several hundred rows and each page *must* contain both the header and footer 
> explanations associated with the table. Normally the pages are broken at a 
> fixed increment of rows depending on the type of data, usually 20 or 32 per 
> page, but other values are possible. For good measure, field technicians 
> often want a forced page break at an arbitrary row position.
> 
> Two of the table columns contain data which may wrap to multiple lines, as 
> illustrated.
> 
> Is all this possible without writing a new tabular macro? I could get close, 
> but couldn't get the table footer repeating on every page or the forced page 
> breaks. That was using the TeXLive 2008 distribution.


The best I can do.

\setuppapersize[A4,landscape][A4,landscape]

\setuptables[bodyfont=8pt]

\initializeboxstack{table}

\savebox{table}{footer}{\starttable[s0|l|l|l|l|l|l|]
\NC Accept \NC \THREE No detectable indications at the time of inspection   
 \NC Reject \NC See remarks for explanation\NC\NR
\NC BT \NC Burn-through \NC IP  \NC Incomplete 
penetration   \NC SHOTS  \NC Number of shots taken  \NC\NR
\NC CR \NC Crack\NC IUC \NC Internal undercut   
 \NC SIZE   \NC Size of pipe   \NC\NR
\NC EP \NC Excessive penetration\NC LC  \NC Low cover   
 \NC SOD\NC Source to object distance  \NC\NR
\NC EUC\NC External under-cut   \NC LOF \NC Lack of fusion  
 \NC STAMP  \NC Welder’s stamp \NC\NR
\NC EXP\NC Single or double wall exposure   \NC MAT \NC Material being 
inspected \NC TECH   \NC Inspection technique   \NC\NR
\NC HB \NC Hollow bead  \NC OFD \NC Object to film 
distance  \NC THICK  \NC Thickness of tubular wall or component \NC\NR
\NC HL \NC High/low \NC P   \NC Porosity
 \NC VIEW   \NC Single Or Double wall viewing  \NC\NR
\NC IC \NC Internal concavity   \NC S   \NC Slag
 \NC WT \NC Wall thickness \NC\NR
\NC SZ \NC Component diameter or dimensions \NC SW  \NC Single wall 
 \NC DW \NC Double wall\NC\NR
\stoptable}

\savebox{table}{header}{\input knuth }

\starttext

\splitfloat[lines=16,inbetween=\foundbox{table}{footer}\page,after=\foundbox{table}{footer}]
  {\foundbox{table}{header}}
  %{\placefigure[none]{}{\foundbox{table}{header}}}
  {\bTABLE[split=yes]
   \dorecurse{100}{\bTR\bTD#1\eTD\bTD text \eTD\eTR}
   \eTABLE}

\stoptext

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  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] TeX as an eBook engine?

2009-12-06 Thread Henning Hraban Ramm
Am 2009-12-05 um 15:58 schrieb Idris Samawi Hamid ادريس سماوي  
حامد:


On Thu, 03 Dec 2009 01:17:22 -0700, Henning Hraban Ramm > wrote:


Even if I don't intend to buy an eBook device, it made me think  
again about using another input language than TeX to create HTML,  
ConTeXt and whatever from one source.


Pandoc has this aim, and supports ConTeXt to some degree.


Thanks for the hint, I'll try it (hopefully it can do what I need  
without me learning Haskell).



Grüßlinge vom Südsee!
Greetlings from Lake Constance!
Hraban
---
http://www.fiee.net/texnique/
http://wiki.contextgarden.net
https://www.cacert.org (I'm an assurer)

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


[NTG-context] actualtext and encoding

2009-12-06 Thread Wolfgang Schuster
Hi Hans,

you showed a while ago how the actualtext function of pdf works
and i have a module where i would use it but letters outside of
ascii appear wrong when i copy the text

\starttext
text \pdfliteral{/Span <> BDC}Meier\pdfliteral{EMC} text
\stoptext

becomes

text Müller text

when i copy the text from the pdf (Adobe Reader) and insert it in my editor.

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  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] sectionsegments for reference

2009-12-06 Thread Wolfgang Schuster
This is a reminder for Hans.

Regards,
Wolfgang

Am 22.11.2009 um 23:49 schrieb Wolfgang Schuster:

> Hi Hans,
> 
> there is a nice example in strc-ref.mkiv for the use of sectionsegments in 
> references
> but the feature is still missing, can it be added.
> 
> % \starttext
> % 
> \definestructureconversionset[default][Character,number,Romannumerals,Character][number]
> % \definestructureseparatorset [default][.,.,--][.]
> % \setupstructurehead[subsection][sectionstopper=),sectionsegments=4:4]
> 
> % \setupreferencing[sectionsegments=3:4]
> % \section {One} \subsection[sec:test]{Two} See \in[sec:test]
> % \stoptext
> 
> TIA,
> 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  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Bibliography help - some problems I have noticed

2009-12-06 Thread Curiouslearn
Thanks very much Taco. This is very helpful.

Regards,
Bharat

On Sun, Dec 6, 2009 at 4:40 AM, Taco Hoekwater  wrote:
>
> Hi,
> Curiouslearn wrote:
>
>> (0)  Do I need bibltx for latex databases?
>
> No. These days, the ConTeXt core defines \newcommand so the bibltx
> module is obsolete.
>
>> (0.5) Using \type{\cite[author,year][BergstromBagnoli2005]} just returns
>> the key in the document
>
> This is caused by the \cite[author,year][] input. If the first argument
> of \cite[] has a comma, it is taken to be the list of references, and
> the second set of square brackets is just typeset text.
> Use \cite[authoryear][] or \cite[authoryears][].
>
>> (1) If the Key has a paranthesis, the \cite[Reference] gives empty
>> brackets.
>
> In this example, I do not know what is wrong, but adding an
> explicit first argument to \cite fixes it. It could be that the
> optional argument parser in ConTeXt gets confused by the ().
>
>> (2) If I use \cite[author][Reference] then I get a line break after
>> the opening paranthesis.
>
> This is a bug in current mkiv that was also mentioned in a thread last
> week. Should be fixed in this beta or one of the next ones.
>
> As a workaround, you can add
>
>  \usepublications[\jobname]
>
> just after the \usemodule[bib] line
>
>> (3) Also, note that I refer to only one paper of Daughety and
>> Reinganum in the minimal example below. However, because there are two
>> papers by them in my database, the References section lists the year
>> as (2000a) instead of just (2000). The bbl file generated contains all
>> the references in my database and not only the once I have cited.
>
> Adding
>
>  \def\maybeyear#1{}
>
> works around this. It is one of the few bibtex features that I have
> not found a good solution for. Otherwise, just remove the \setupbibtex
> command from the source and edit the bbl file by hand.
>
>> Should it not contain only the ones I have cited in the document.
>
> No, it always contains the entire database. That is why manuak editing
> is possible.
>
> Best wishes,
> Taco
> ___
> 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
___


Re: [NTG-context] Biblography list does not show numbers

2009-12-06 Thread Taco Hoekwater

Matthijs Kooijman wrote:

Hi Taco,


I have assumed that ConTeXt has more authors that need APA like
citations than bracketed numbers. ConTeXt has never had a very
strong presence in the exact sciences.


If that's the case, then the \cite command does the wrong thing by default,
since it generates references as bracketed numbers. My complaint was not one
of default style, but of inconsistency: \cite uses bracketed numbers, while
the list of references just uses author names and years (which I now
understand to be "APA style".

This also means that this is a MkIV problem, my example did generate (author,
year) style references with MkII.


Yes. MkII is right.

___
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] Biblography list does not show numbers

2009-12-06 Thread Matthijs Kooijman
Hi Taco,

> I have assumed that ConTeXt has more authors that need APA like
> citations than bracketed numbers. ConTeXt has never had a very
> strong presence in the exact sciences.

If that's the case, then the \cite command does the wrong thing by default,
since it generates references as bracketed numbers. My complaint was not one
of default style, but of inconsistency: \cite uses bracketed numbers, while
the list of references just uses author names and years (which I now
understand to be "APA style".

This also means that this is a MkIV problem, my example did generate (author,
year) style references with MkII.

Gr.

Matthijs


signature.asc
Description: Digital signature
___
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] Biblography list does not show numbers

2009-12-06 Thread Otared Kavian
Many thanks, Taco.

Best regards: OK

On 6 déc. 2009, at 10:15, Taco Hoekwater wrote:

> Otared Kavian wrote:
>> On 6 déc. 2009, at 08:53, Taco Hoekwater wrote:
>>> […] ConTeXt has never had a very strong presence in the exact sciences.
>> Hi Taco and all,
>> In order to change this, and in order to use more easily the t-bib module, 
>> can you please tell us how to put the cited references in square bracket in 
>> the typest output, something like:
>>   see T. Hoekwater [2]...
>> when in the source file one says ... see T. Hoekwater 
>> \cite[THoekwater]...
> 
> \setuppublications[alternative=num]
> 
> See also the bibliography manual:
> 
>  http://modules.contextgarden.net/bibman
> 
> Best wishes,
> Taco
> ___
> 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
> ___

%%
Otared Kavian
Département de Mathématiques
Université de Versailles Saint-Quentin
Bâtiment Fermat
45 aveue des Etats Unis
78035 Versailles cedex

Téléphone: +33 1 39 25 46 42
Secrétariat: +33 1 39 25 46 44 
Secrétariat: +33 1 39 25 46 46

e-mail: otared.kav...@math.uvsq.fr



___
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] Bibliography help - some problems I have noticed

2009-12-06 Thread Taco Hoekwater


Hi,
Curiouslearn wrote:


(0)  Do I need bibltx for latex databases?


No. These days, the ConTeXt core defines \newcommand so the bibltx
module is obsolete.

(0.5) Using \type{\cite[author,year][BergstromBagnoli2005]} just 
returns the key in the document


This is caused by the \cite[author,year][] input. If the first argument
of \cite[] has a comma, it is taken to be the list of references, and
the second set of square brackets is just typeset text.
Use \cite[authoryear][] or \cite[authoryears][].


(1) If the Key has a paranthesis, the \cite[Reference] gives empty brackets.


In this example, I do not know what is wrong, but adding an
explicit first argument to \cite fixes it. It could be that the
optional argument parser in ConTeXt gets confused by the ().


(2) If I use \cite[author][Reference] then I get a line break after
the opening paranthesis.


This is a bug in current mkiv that was also mentioned in a thread last
week. Should be fixed in this beta or one of the next ones.

As a workaround, you can add

  \usepublications[\jobname]

just after the \usemodule[bib] line


(3) Also, note that I refer to only one paper of Daughety and
Reinganum in the minimal example below. However, because there are two
papers by them in my database, the References section lists the year
as (2000a) instead of just (2000). The bbl file generated contains all
the references in my database and not only the once I have cited.


Adding

  \def\maybeyear#1{}

works around this. It is one of the few bibtex features that I have
not found a good solution for. Otherwise, just remove the \setupbibtex
command from the source and edit the bbl file by hand.


Should it not contain only the ones I have cited in the document.


No, it always contains the entire database. That is why manuak editing
is possible.

Best wishes,
Taco
___
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] Biblography list does not show numbers

2009-12-06 Thread Taco Hoekwater

Otared Kavian wrote:

On 6 déc. 2009, at 08:53, Taco Hoekwater wrote:

[…] ConTeXt has never had a very strong presence in the exact sciences.


Hi Taco and all,

In order to change this, and in order to use more easily the t-bib module, can 
you please tell us how to put the cited references in square bracket in the 
typest output, something like:
 see T. Hoekwater [2]...
when in the source file one says 
	... see T. Hoekwater \cite[THoekwater]...


\setuppublications[alternative=num]

See also the bibliography manual:

  http://modules.contextgarden.net/bibman

Best wishes,
Taco
___
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] Biblography list does not show numbers

2009-12-06 Thread Otared Kavian
On 6 déc. 2009, at 08:53, Taco Hoekwater wrote:
> […] ConTeXt has never had a very strong presence in the exact sciences.

Hi Taco and all,

In order to change this, and in order to use more easily the t-bib module, can 
you please tell us how to put the cited references in square bracket in the 
typest output, something like:
 see T. Hoekwater [2]...
when in the source file one says 
... see T. Hoekwater \cite[THoekwater]...

Since I am strongly willling to switch to ConTeXt for writing and submitting my 
maths papers, there are two other questions which I couldn't fix:
1) in the output of the minimal example below one sees two dots after the title 
of the Galileo reference; and the number of page of the Hoekwater reference 
appears as « .14p. » instead of « 14 p. »
2) the other question is that how the reference list can be in the alphabetical 
order? (Assuming that the publications are defined within the source file)

Thanks in advance.
Best regards: OK

### begin example-biblio.tex
\usemodule[bib] 

\startbuffer[bibexample]

\startpublication[
k=Galileo,
t=book,
a=Galilei]
   \author{First Name}[G. ]{}{Galilei}
   \title{Discorso sul flusso e il reflusso del mare}
   \pubyear{1616}
\stoppublication


\startpublication[
k=THoekwater,
t=manual,
a=Hoekwater,
y=2006,
s=TH2006,
n=1,
u=http://contextgarden.net/Bibliography]
\author{Taco}[T.]{}{Hoekwater}
\title{\CONTEXT\ Publication Module, The user documententation}
\pubyear{2006}
\note{In case you didn't know: this is the main manual wriiten on bib-module.}
\pages{14}
\stoppublication

\stopbuffer

\getbuffer[bibexample]

\setuppublications[numbering=yes]
\setupcite[num,left={[},right={]}]

\section{Introduction}

This is an example of article with bibliography, using the bibliography module 
(\type{t-bib.tex}) which takes care of references to publications and the 
typesetting of publication lists in  \CONTEXT. For more information see 
T.~Hoekwater~\cite[THoekwater].
If Galileo Galilei knew about this, the book  \cite[Galileo] would have been 
written differently.

\completepublications[criterirum=all]

\stoptext
### end example-biblio.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
___


Re: [NTG-context] bib module, mkiv, and

2009-12-06 Thread Taco Hoekwater

Idris Samawi Hamid ادريس سماوي حامد wrote:

If i uncomment

\subject{References}

the bibliography disappears. Am I missing something


You need \placepublications[criterium=all] if you use sectioning.

Best wishes,
Taco
___
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] page wiki.contextgarden.net/Running_Mark_IV

2009-12-06 Thread Taco Hoekwater

Robert J. Cristel wrote:

is referenced in TeX Live Guide 2009,

tug.org/texlive/doc/texlive-en/texlive-en.html#x1-190003.1.3

The most important motivation for this page is that the TeX Live 2008 
edition contains Mark IV



Note that the garden talks about 2008 instead of 2009...


That is because that page is a year old. A new section should be
added for TL 2009 (you'll have to update both luatex and context).

Best wishes,
Taco
___
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] Some_guidelines_for_writing_to_the_mailing_list

2009-12-06 Thread Taco Hoekwater

Vyatcheslav Yatskovsky wrote:

Hi

Sure, many people send files but the limit is 40kb.

http://wiki.contextgarden.net/ConTeXt_Mailing_Lists#Some_guidelines_for_writing_to_the_mailing_list 

   

I was unaware of that guidelines. It's funny that they exists )


You'll have to deal with it. You can always upload a pdf to the wiki
(as an image) if you have no web space yourself.

Best wishes,
Taco
___
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
___