From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/46239 Path: news.gmane.org!not-for-mail From: Aditya Mahajan Newsgroups: gmane.comp.tex.context Subject: Re: Experience on writing a thesis with MKIV Date: Tue, 9 Dec 2008 16:49:57 -0500 (EST) Message-ID: References: <493EE1BF.4060704@elvenkind.com> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; Format="flowed" Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1228859595 10880 80.91.229.12 (9 Dec 2008 21:53:15 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 9 Dec 2008 21:53:15 +0000 (UTC) To: mailing list for ConTeXt users Original-X-From: ntg-context-bounces@ntg.nl Tue Dec 09 22:54:17 2008 Return-path: Envelope-to: gctc-ntg-context-518@m.gmane.org Original-Received: from ronja.vet.uu.nl ([131.211.172.88] helo=ronja.ntg.nl) by lo.gmane.org with esmtp (Exim 4.50) id 1LAAX3-0007Sh-9H for gctc-ntg-context-518@m.gmane.org; Tue, 09 Dec 2008 22:54:17 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id DF4FB1FB95; Tue, 9 Dec 2008 22:53:02 +0100 (CET) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (smtp.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 32151-01-3; Tue, 9 Dec 2008 22:51:49 +0100 (CET) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 19A8D1FB39; Tue, 9 Dec 2008 22:51:48 +0100 (CET) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id ACBFF1FB1D for ; Tue, 9 Dec 2008 22:51:45 +0100 (CET) Original-Received: from ronja.ntg.nl ([127.0.0.1]) by localhost (smtp.ntg.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 31856-02-2 for ; Tue, 9 Dec 2008 22:50:59 +0100 (CET) Original-Received: from hellskitchen.mr.itd.umich.edu (smtp.mail.umich.edu [141.211.14.82]) by ronja.ntg.nl (Postfix) with ESMTP id 7FA411FB57 for ; Tue, 9 Dec 2008 22:50:59 +0100 (CET) Original-Received: FROM dhcp128036151015.central.yale.edu (dhcp128036151015.central.yale.edu [128.36.151.15]) BY hellskitchen.mr.itd.umich.edu ID 493EE841.2ED0F.8846 ; 9 Dec 2008 16:50:57 -0500 In-Reply-To: <493EE1BF.4060704@elvenkind.com> User-Agent: Alpine 2.00 (LNX 1167 2008-08-23) X-Virus-Scanned: amavisd-new at ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.1.11 Precedence: list List-Id: mailing list for ConTeXt users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: ntg-context-bounces@ntg.nl Errors-To: ntg-context-bounces@ntg.nl X-Virus-Scanned: amavisd-new at ntg.nl Xref: news.gmane.org gmane.comp.tex.context:46239 Archived-At: On Tue, 9 Dec 2008, Taco Hoekwater wrote: > Aditya Mahajan wrote: >> On Tue, 9 Dec 2008, Mohamed Bana wrote: >> >>> sorry about the late reply, my minimals broke so i had to wait for a fix. >>> >>> >>> t-bib-2008.12.01.zip >>> >>> $ luatex --version >>> This is LuaTeX, Version snapshot-0.30.3-2008112812, build unknown >>> .... >>> $ context --version >>> MtxRun | main context file: >>> /home/mbana/context-minimals/tex/texmf-context/tex/context/base/context.tex >>> MtxRun | current version: 2008.11.10 21:40 >>> >>> http://filebin.ca/jqqekq/thesis.pdf or http://filebin.ca/jqqekq >>> http://filebin.ca/uhvgex/thesis.log or http://filebin.ca/uhvgex >> >> How are you compiling your files? Use "context thesis" and not "texexec >> --lua thesis" (texexec will run bibtex which will overwrite the existing >> bbl file, since you do not have any bib file, the bbl file will be empty). > > Please note that my latest upload to modules.contextgarden runs > bibtex itself, in mkiv mode. Ah, so that explains why Mohamed is not getting any citations. I was using "latest" minimals from yesterday which still have t-bib from 2008.10.27. Taco, I also have a feature request for the bib module. Currently, \setupcite is defined as \def\dosetupcite[#1][#2]% {\ifsecondargument \def\dodosetupcite##1{\getparameters[\??pv##1][#2]}% \processcommalist[#1]\dodosetupcite \else % default case \getparameters[\??pv\@@citedefault][#1]% \fi } This means that if I say \setupcite[compress=no], this option is only passed to the default cite command. This means that when interaction is enabled, (and the bibl-* file says compress=yes), we get no styles for other cite styles. Does it make sense to add a keyword "all" so that \setupcite[all][...] is equal to \setupcite [author,authoryear,authoryears, year,serial,authornum,page,short,type,doi,url,num] [...] Also, can we add style and color options to \cite. These can be either passed to \setupinteraction in \docite or simply added using attributes in the output of \cite. Mohamed, to get the references to work comment \setupbibtex [database={IEEEfull,../collection}, sort=author] in macros.tex and add \dousepublications[thesis] You can also use the official way: \usepublications[thesis], but I think that this will cause warnings about redefined labels. Perhaps a better way would be to change thesis.bbl to say thesis-ref.bbl and then use \usepublications[thesis-ref]. Aditya ___________________________________________________________________________________ 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 : https://foundry.supelec.fr/projects/contextrev/ wiki : http://contextgarden.net ___________________________________________________________________________________