ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Me once again, a little bit trouble here
@ 2016-08-19 13:07 Ursula Hermann
  2016-08-19 15:05 ` eidenbenz
  0 siblings, 1 reply; 3+ messages in thread
From: Ursula Hermann @ 2016-08-19 13:07 UTC (permalink / raw)
  To: 'mailing list for ConTeXt users'


[-- Attachment #1.1: Type: text/plain, Size: 2849 bytes --]

Hallo Alan, and list!

 

Maybe someone has seen, what correspondence Henri Menke and i had. 

 

Now I have the following trouble:

 

As you can see, I have two sections in the backmatter. I did, like Henri
wrote to me, but I have two authors, which should be in two different
sections: Truman in the first section: Allgemeine Literatur 

and Eriksson in an second section : Ich. 

 

Why are the titles in two sections? I’am sorry for the long text, but so you
can understand, what I mean. 

Example: 

 

\startbuffer[biblio]

@book{ErikssonBaaz2005,

  author ={Eriksson, Maria}

  title = {The Paternalism of Partnership. A Postcolonial Reader of Identity
in Development Aid.},

  year = {2005},

}

@electronic{Truman1949,

  author = {Truman, Harry},

  title = {Inaugural Address},

  year = {1949},

  note = {Letzter Zugriff: 10.07.2013},

  url = {http:// www.presidency.ucsb.edu/ws/?pid=13282},

}

\stopbuffer

 

\usebtxdataset[eriksson][biblio.buffer]

\usebtxdataset[truman][biblio.buffer]

\usebtxdefinitions[apa]

\definebtxrendering[eriksson][apa][dataset=eriksson]

\definebtxrendering[truman][apa][dataset=truman]

\setupbtxrendering[continue =yes]

\starttext

\startchapter[title={Einleitung:"Entwicklung" Behindern?}]

\startnarrower[left, right]

\en More than half the people of the world are living in conditions
approaching misery. Their food is inadequate. They are victims of disease.
Their economic life is primitive and stagnant. Their poverty is a handicap
and a threat both to them and to more prosperous areas. For the first time
in history, humanity possesses the knowledge and the skill to relieve the
suffering of these people[...] I believe that we should make available to
peace-loving peoples the benefit of our store of technical knowledge in
order to help them realize their aspirations for a better
life.\footnote{\cite[alternative=entry][eriksson::Truman1949]}

\stopnarrower

Das vorangestellte Zitat der Amtsantrittsrede des 33. US-amerikanischen
Präsidenten Harry S. Truman vom 20. Januar 1949 wird innerhalb der sich als
kritisch verstehenden Entwicklungsforschung häufig als Beginn des modernen
Entwicklungsdiskurses diskutiert, in der sich eine neue Diskursordnung im
Sprechen und Denken über den globalen Süden
formiert.\footnote{\cite[alternative=entry][eriksson::ErikssonBaaz2005]}

\stopchapter

 

\starttext

\startbackmatter

  \startchapter[title={Bibliography}]

        \startsection[title={Allgemeine Literatur}]

        \placelistofpublications[truman][method=dataset]

        \stopsection

        \startsection[title={Ich}]

        \placelistofpublications[eriksson][method=dataset]

        \stopsection

         \stopchapter

\stopbackmatter

\stoptext


[-- Attachment #1.2: Type: text/html, Size: 6052 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Me once again, a little bit trouble here
  2016-08-19 13:07 Me once again, a little bit trouble here Ursula Hermann
@ 2016-08-19 15:05 ` eidenbenz
  2016-08-22  8:13   ` Ursula Hermann
  0 siblings, 1 reply; 3+ messages in thread
From: eidenbenz @ 2016-08-19 15:05 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 6017 bytes --]

because you have method=dataset and your dataset is biblio.buffer for both renderings.

this should work:


\startbuffer[biblio]
@book{ErikssonBaaz2005,
  author ={Eriksson, Maria}
  title = {The Paternalism of Partnership. A Postcolonial Reader of Identity in Development Aid.},
  year = {2005},
}
@electronic{Truman1949,
  author = {Truman, Harry},
  title = {Inaugural Address},
  year = {1949},
  note = {Letzter Zugriff: 10.07.2013},
  url = {http:// www.presidency.ucsb.edu/ws/?pid=13282},
}
\stopbuffer

\usebtxdataset[allgemeine][biblio.buffer]
\usebtxdataset[ich][biblio.buffer]
\usebtxdefinitions[apa]
\definebtxrendering[allgemeine][apa][dataset=allgemeine]
\definebtxrendering[ich][apa][dataset=ich]
\setupbtxrendering[continue =yes]

\starttext
\startchapter[title={Einleitung:"Entwicklung" Behindern?}]
\startnarrower[left, right]
\en More than half the people of the world are living in conditions approaching misery. Their food is inadequate. They are victims of disease. Their economic life is primitive and stagnant. Their poverty is a handicap and a threat both to them and to more prosperous areas. For the first time in history, humanity possesses the knowledge and the skill to relieve the suffering of these people[...] I believe that we should make available to peace-loving peoples the benefit of our store of technical knowledge in order to help them realize their aspirations for a better life.\footnote{\cite[alternative=entry][allgemeine::Truman1949]}
\stopnarrower
Das vorangestellte Zitat der Amtsantrittsrede des 33. US-amerikanischen Präsidenten Harry S. Truman vom 20. Januar 1949 wird innerhalb der sich als kritisch verstehenden Entwicklungsforschung häufig als Beginn des modernen Entwicklungsdiskurses diskutiert, in der sich eine neue Diskursordnung im Sprechen und Denken über den globalen Süden formiert.\footnote{\cite[alternative=entry][ich::ErikssonBaaz2005]}
\stopchapter

\starttext
\startbackmatter
  \startchapter[title={Bibliography}]
        \startsection[title={Allgemeine Literatur}]
        \placelistofpublications[allgemeine][method=local]
        \stopsection
        \startsection[title={Ich}]
        \placelistofpublications[ich][method=local]
        \stopsection
         \stopchapter
\stopbackmatter
\stoptext 


> On 19 Aug 2016, at 15:07, Ursula Hermann <ursula.hermann@univie.ac.at> wrote:
> 
> Hallo Alan, and list!
>  
> Maybe someone has seen, what correspondence Henri Menke and i had. 
>  
> Now I have the following trouble:
>  
> As you can see, I have two sections in the backmatter. I did, like Henri wrote to me, but I have two authors, which should be in two different sections: Truman in the first section: Allgemeine Literatur 
> and Eriksson in an second section : Ich. 
>  
> Why are the titles in two sections? I’am sorry for the long text, but so you can understand, what I mean. 
> Example: 
>  
> \startbuffer[biblio]
> @book{ErikssonBaaz2005,
>   author ={Eriksson, Maria}
>   title = {The Paternalism of Partnership. A Postcolonial Reader of Identity in Development Aid.},
>   year = {2005},
> }
> @electronic{Truman1949,
>   author = {Truman, Harry},
>   title = {Inaugural Address},
>   year = {1949},
>   note = {Letzter Zugriff: 10.07.2013},
>   url = {http:// www.presidency.ucsb.edu/ws/?pid=13282 <http://www.presidency.ucsb.edu/ws/?pid=13282>},
> }
> \stopbuffer
>  
> \usebtxdataset[eriksson][biblio.buffer]
> \usebtxdataset[truman][biblio.buffer]
> \usebtxdefinitions[apa]
> \definebtxrendering[eriksson][apa][dataset=eriksson]
> \definebtxrendering[truman][apa][dataset=truman]
> \setupbtxrendering[continue =yes]
> \starttext
> \startchapter[title={Einleitung:"Entwicklung" Behindern?}]
> \startnarrower[left, right]
> \en More than half the people of the world are living in conditions approaching misery. Their food is inadequate. They are victims of disease. Their economic life is primitive and stagnant. Their poverty is a handicap and a threat both to them and to more prosperous areas. For the first time in history, humanity possesses the knowledge and the skill to relieve the suffering of these people[...] I believe that we should make available to peace-loving peoples the benefit of our store of technical knowledge in order to help them realize their aspirations for a better life.\footnote{\cite[alternative=entry][eriksson::Truman1949]}
> \stopnarrower
> Das vorangestellte Zitat der Amtsantrittsrede des 33. US-amerikanischen Präsidenten Harry S. Truman vom 20. Januar 1949 wird innerhalb der sich als kritisch verstehenden Entwicklungsforschung häufig als Beginn des modernen Entwicklungsdiskurses diskutiert, in der sich eine neue Diskursordnung im Sprechen und Denken über den globalen Süden formiert.\footnote{\cite[alternative=entry][eriksson::ErikssonBaaz2005]}
> \stopchapter
>  
> \starttext
> \startbackmatter
>   \startchapter[title={Bibliography}]
>         \startsection[title={Allgemeine Literatur}]
>         \placelistofpublications[truman][method=dataset]
>         \stopsection
>         \startsection[title={Ich}]
>         \placelistofpublications[eriksson][method=dataset]
>         \stopsection
>          \stopchapter
> \stopbackmatter
> \stoptext
> ___________________________________________________________________________________
> If your question is of interest to others as well, please add an entry to the Wiki!
> 
> maillist : ntg-context@ntg.nl <mailto:ntg-context@ntg.nl> / http://www.ntg.nl/mailman/listinfo/ntg-context <http://www.ntg.nl/mailman/listinfo/ntg-context>
> webpage  : http://www.pragma-ade.nl <http://www.pragma-ade.nl/> / http://tex.aanhet.net <http://tex.aanhet.net/>
> archive  : http://foundry.supelec.fr/projects/contextrev/ <http://foundry.supelec.fr/projects/contextrev/>
> wiki     : http://contextgarden.net <http://contextgarden.net/>
> ___________________________________________________________________________________


[-- Attachment #1.2: Type: text/html, Size: 26870 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Me once again, a little bit trouble here
  2016-08-19 15:05 ` eidenbenz
@ 2016-08-22  8:13   ` Ursula Hermann
  0 siblings, 0 replies; 3+ messages in thread
From: Ursula Hermann @ 2016-08-22  8:13 UTC (permalink / raw)
  To: 'mailing list for ConTeXt users'


[-- Attachment #1.1: Type: text/plain, Size: 6504 bytes --]

Hello again!

 

Thank you so much eidenbenz. This is what I wanted. And to all of the list, which had helped me until now. 

 

Uschi

 

Von: ntg-context [mailto:ntg-context-bounces@ntg.nl] Im Auftrag von eidenbenz
Gesendet: Freitag, 19. August 2016 17:05
An: mailing list for ConTeXt users
Betreff: Re: [NTG-context] Me once again, a little bit trouble here

 

because you have method=dataset and your dataset is biblio.buffer for both renderings.

 

this should work:

 

 

\startbuffer[biblio]

@book{ErikssonBaaz2005,

  author ={Eriksson, Maria}

  title = {The Paternalism of Partnership. A Postcolonial Reader of Identity in Development Aid.},

  year = {2005},

}

@electronic{Truman1949,

  author = {Truman, Harry},

  title = {Inaugural Address},

  year = {1949},

  note = {Letzter Zugriff: 10.07.2013},

  url = {http:// www.presidency.ucsb.edu/ws/?pid=13282},

}

\stopbuffer

 

\usebtxdataset[allgemeine][biblio.buffer]

\usebtxdataset[ich][biblio.buffer]

\usebtxdefinitions[apa]

\definebtxrendering[allgemeine][apa][dataset=allgemeine]

\definebtxrendering[ich][apa][dataset=ich]

\setupbtxrendering[continue =yes]

 

\starttext

\startchapter[title={Einleitung:"Entwicklung" Behindern?}]

\startnarrower[left, right]

\en More than half the people of the world are living in conditions approaching misery. Their food is inadequate. They are victims of disease. Their economic life is primitive and stagnant. Their poverty is a handicap and a threat both to them and to more prosperous areas. For the first time in history, humanity possesses the knowledge and the skill to relieve the suffering of these people[...] I believe that we should make available to peace-loving peoples the benefit of our store of technical knowledge in order to help them realize their aspirations for a better life.\footnote{\cite[alternative=entry][allgemeine::Truman1949]}

\stopnarrower

Das vorangestellte Zitat der Amtsantrittsrede des 33. US-amerikanischen Präsidenten Harry S. Truman vom 20. Januar 1949 wird innerhalb der sich als kritisch verstehenden Entwicklungsforschung häufig als Beginn des modernen Entwicklungsdiskurses diskutiert, in der sich eine neue Diskursordnung im Sprechen und Denken über den globalen Süden formiert.\footnote{\cite[alternative=entry][ich::ErikssonBaaz2005]}

\stopchapter

 

\starttext

\startbackmatter

  \startchapter[title={Bibliography}]

        \startsection[title={Allgemeine Literatur}]

        \placelistofpublications[allgemeine][method=local]

        \stopsection

        \startsection[title={Ich}]

        \placelistofpublications[ich][method=local]

        \stopsection

         \stopchapter

\stopbackmatter

\stoptext 

 

 

On 19 Aug 2016, at 15:07, Ursula Hermann <ursula.hermann@univie.ac.at> wrote:

 

Hallo Alan, and list!

 

Maybe someone has seen, what correspondence Henri Menke and i had. 

 

Now I have the following trouble:

 

As you can see, I have two sections in the backmatter. I did, like Henri wrote to me, but I have two authors, which should be in two different sections: Truman in the first section: Allgemeine Literatur 

and Eriksson in an second section : Ich. 

 

Why are the titles in two sections? I’am sorry for the long text, but so you can understand, what I mean. 

Example: 

 

\startbuffer[biblio]

@book{ErikssonBaaz2005,

  author ={Eriksson, Maria}

  title = {The Paternalism of Partnership. A Postcolonial Reader of Identity in Development Aid.},

  year = {2005},

}

@electronic{Truman1949,

  author = {Truman, Harry},

  title = {Inaugural Address},

  year = {1949},

  note = {Letzter Zugriff: 10.07.2013},

  url = {http://  <http://www.presidency.ucsb.edu/ws/?pid=13282> www.presidency.ucsb.edu/ws/?pid=13282},

}

\stopbuffer

 

\usebtxdataset[eriksson][biblio.buffer]

\usebtxdataset[truman][biblio.buffer]

\usebtxdefinitions[apa]

\definebtxrendering[eriksson][apa][dataset=eriksson]

\definebtxrendering[truman][apa][dataset=truman]

\setupbtxrendering[continue =yes]

\starttext

\startchapter[title={Einleitung:"Entwicklung" Behindern?}]

\startnarrower[left, right]

\en More than half the people of the world are living in conditions approaching misery. Their food is inadequate. They are victims of disease. Their economic life is primitive and stagnant. Their poverty is a handicap and a threat both to them and to more prosperous areas. For the first time in history, humanity possesses the knowledge and the skill to relieve the suffering of these people[...] I believe that we should make available to peace-loving peoples the benefit of our store of technical knowledge in order to help them realize their aspirations for a better life.\footnote{\cite[alternative=entry][eriksson::Truman1949]}

\stopnarrower

Das vorangestellte Zitat der Amtsantrittsrede des 33. US-amerikanischen Präsidenten Harry S. Truman vom 20. Januar 1949 wird innerhalb der sich als kritisch verstehenden Entwicklungsforschung häufig als Beginn des modernen Entwicklungsdiskurses diskutiert, in der sich eine neue Diskursordnung im Sprechen und Denken über den globalen Süden formiert.\footnote{\cite[alternative=entry][eriksson::ErikssonBaaz2005]}

\stopchapter

 

\starttext

\startbackmatter

  \startchapter[title={Bibliography}]

        \startsection[title={Allgemeine Literatur}]

        \placelistofpublications[truman][method=dataset]

        \stopsection

        \startsection[title={Ich}]

        \placelistofpublications[eriksson][method=dataset]

        \stopsection

         \stopchapter

\stopbackmatter

\stoptext

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist :  <mailto:ntg-context@ntg.nl> ntg-context@ntg.nl /  <http://www.ntg.nl/mailman/listinfo/ntg-context> http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  :  <http://www.pragma-ade.nl/> http://www.pragma-ade.nl /  <http://tex.aanhet.net/> http://tex.aanhet.net
archive  :  <http://foundry.supelec.fr/projects/contextrev/> http://foundry.supelec.fr/projects/contextrev/
wiki     :  <http://contextgarden.net/> http://contextgarden.net
___________________________________________________________________________________

 


[-- Attachment #1.2: Type: text/html, Size: 22859 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

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

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-08-22  8:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-19 13:07 Me once again, a little bit trouble here Ursula Hermann
2016-08-19 15:05 ` eidenbenz
2016-08-22  8:13   ` Ursula Hermann

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).