[NTG-context] remove full stop after a title ending with punctuation

2014-04-15 Thread Peng Zhang

Dear List,

If an article is How about this?, in the bib list, it will be printed like

author1, author2, ..., How about this?. Journal name...

I am trying to remove . after ?

From reading documents, I think I should change (bibl-apa)
\insertarttitle{\bgroup }{\egroup. }{}%

Right now it will add . in all cases. Is it possible that I can change 
it to conditional statement.


Something like if the original title ends with punctuation, do nothing, 
otherwise, add ..


Hope that I made myself clear.

Thank you!

Best,
Peng
___
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] Multiple bibliographies (bib-module, mkiv)

2014-04-07 Thread Peng Zhang

Dear all,

I am searching for a solution where I can use two different sources of 
bib files separately. I found that the same question was asked before at 
this mail list. Since it was few years old, could I ask if there is any 
new work done towards it?


Thanks!
Peng

http://www.ntg.nl/pipermail/ntg-context/2010/048290.html

Hello,


I need two bibliographies for my document, »Primary sources« and
»Secondary sources«.

Two bibliographies was created and loaded with
\setupbibtex[database={prim,sec}].

But for the last step in my intention I’m looking for something to the
effect that

\placepublications[database=prim]

or in a similar manner to

\nocite{*}

for every bib-database.

Is there any solution or workaround?


Thanks
Markus



___
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] Multiple bibliographies (bib-module, mkiv)

2014-04-07 Thread Peng Zhang

Hi Robert,

Thank you very much for this workaround! It does work. Would it be 
possible that I can make two fake/invisible sections? (without showing 
primary sources and secondary sources in your example)


I am doing my CV. I just want two separate reference lists, one for 
journal and one for published abstracts.


I am copying the CV template from wiki.

\definehead[CVHEAD][subject]

\setuphead[subject][style=\bfa,after={\blank[medium]}]


\definehead[SUBCVHEAD][subsubject]

\setuphead[subsubject][style=\bf,after={\blank[small]},before={\blank[small]}]


I want something like
\CVHEAD{References}
\SUBCVHEAD{Pulished Journal Articles}

list 1
\SUBCVHEAD{Pulished Abstracts}
list 2


Could I put two fake/invisible sections within those subcvhead?


Thanks,
Peng


On 04/07/2014 10:34 AM, Robert Blackstone wrote:


On 7 Apr 2014, at 12:00 , Peng Zhang pczh...@gmail.com 
mailto:pczh...@gmail.com wrote



I am searching for a solution where I can use two different sources of
bib files separately. I found that the same question was asked before at
this mail list. Since it was few years old, could I ask if there is any
new work done towards it?

Thanks!
Peng

http://www.ntg.nl/pipermail/ntg-context/2010/048290.html


Hello Peng,
For a Bibliography with  separate sections you can use the following 
work-around:
Suppose you want a section primary sources, for which you have the 
bibfile, say, ps.bib, and a section secundary sources, for which 
have the bibfile ss.bib.
The first step is tro to make for each of them a .bbl-file with, what 
I would call, a  bbl-generator.tex:


\setupbibtex[database=ps.bib,sort=author]
%\setupbibtex[database=ss.bib,sort=author]

\setuppublications[alternative=apa] %or any other style

\starttext

\stoptext
++
This can be processed with mkii or mkiv. It generates a lot of 
auxiliary files, including an empty pdf, but the only important one is 
bbl-generator.bbl, which you rename to ps.bbl or ss.bbl according to 
which of the two bib-files you used.(= did not comment out)


The other files you need are two .tex-files with the complete set of 
\nocite[]'s of the two databases. Personally I never used \nocite{*}. 
If you use a Mac with BibDesk it is quite easy to make such a file. It 
gives you some extra flexibility.


You can then generate the sectioned bibliography with:
++
\input(Your setups, including those for your Bibliography setup)
\starttext
\startchapter[bookmark=,label=,list=,marking=,reference=Bibliography,title={Bibliography}
\section{Primary sources}

\input ps.bbl
\input ps-nocite.tex
\placepublications[criterium=cite]

\section{Secundary sources}

\input ss.bbl
\input ss-nocite.tex
\placepublications[criterium=cite]

\stopchapter
\stoptext
+++
That's all.

I hope it works for you.
Best regards,
Robert Blackstone


___
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] Multiple bibliographies (bib-module, mkiv)

2014-04-07 Thread Peng Zhang
Thank you very much! That is exactly what I want. Changing subsubject to 
unnumbered section does the trick.


Best,
Peng

On 04/07/2014 12:39 PM, Robert Blackstone wrote:

On 7 Apr 2014, at 17:14 , Peng Zhang pczh...@gmail.com
mailto:pczh...@gmail.com wrote

Thank you very much for this workaround! It does work. Would it be
possible that I can make two fake/invisible sections? (without showing
primary sources and secondary sources in your example)

I am doing my CV. I just want two separate reference lists, one for
journal and one for published abstracts.

I am copying the CV template from wiki.

\definehead[CVHEAD][subject]

\setuphead[subject][style=\bfa,after={\blank[medium]}]


\definehead[SUBCVHEAD][subsubject]

\setuphead[subsubject][style=\bf,after={\blank[small]},before={\blank[small]}]


I want something like
\CVHEAD{References}
\SUBCVHEAD{Pulished Journal Articles}

list 1
\SUBCVHEAD{Pulished Abstracts}
list 2


Could I put two fake/invisible sections within those subcvhead?


Thanks,
Peng

Hi Peng,
I'm not quite sure I fully understand what you want, so I just tried making 
separate lists.
Now for some reason that I don't understand no list appears in a subsubject. 
However if you use instead SUBCVHEAD as an unnumbered section  with

\definehead[SUBCVHEAD][section]
\setuphead[section][header=empty,number=no,style=\bf,after={\blank[small]},before={\blank[small]}]

and if  you add \page after
\placepublications[criterium=cite],

then you get separate lists with unnumbered titles.

I hope this is what you want. If not, maybe someone les on this list can help 
you.

Best regards,
Robert


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