From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.comp.tex.context/23746 Path: news.gmane.org!not-for-mail From: David Arnold Newsgroups: gmane.comp.tex.context Subject: Structures Date: Thu, 24 Nov 2005 22:08:52 -0800 Message-ID: <84FF03D5-F1CB-4F2C-93D8-AFE0829C1F8C@northcoast.com> Reply-To: mailing list for ConTeXt users NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (Apple Message framework v728) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1132899288 19264 80.91.229.2 (25 Nov 2005 06:14:48 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 25 Nov 2005 06:14:48 +0000 (UTC) Original-X-From: ntg-context-bounces@ntg.nl Fri Nov 25 07:14:37 2005 Return-path: Original-Received: from ronja.vet.uu.nl ([131.211.172.88] helo=ronja.ntg.nl) by ciao.gmane.org with esmtp (Exim 4.43) id 1EfWqz-0006Us-2N for gctc-ntg-context-518@m.gmane.org; Fri, 25 Nov 2005 07:14:37 +0100 Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 9254012844; Fri, 25 Nov 2005 07:14:36 +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 32655-01; Fri, 25 Nov 2005 07:14:36 +0100 (CET) Original-Received: from ronja.vet.uu.nl (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id 79D9312845; Fri, 25 Nov 2005 07:10:02 +0100 (CET) Original-Received: from localhost (localhost [127.0.0.1]) by ronja.ntg.nl (Postfix) with ESMTP id B5CDF12845 for ; Fri, 25 Nov 2005 07:10:00 +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 32324-05 for ; Fri, 25 Nov 2005 07:09:59 +0100 (CET) Original-Received: from borg.inreach.com (mail.northcoast.com [209.142.2.71]) by ronja.ntg.nl (Postfix) with SMTP id 4461E12844 for ; Fri, 25 Nov 2005 07:09:58 +0100 (CET) Original-Received: (qmail 28410 invoked from network); 25 Nov 2005 06:07:33 -0000 Original-Received: from unknown (HELO ?209.209.20.81?) (209.209.20.81) by mail.northcoast.com with SMTP; 25 Nov 2005 06:07:33 -0000 Original-To: Context Mailing List List X-Mailer: Apple Mail (2.728) X-Virus-Scanned: amavisd-new at ntg.nl X-BeenThere: ntg-context@ntg.nl X-Mailman-Version: 2.1.5 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:23746 Archived-At: All, I have book.tex. %output=pdftex \startproject book \environment bookenv \product chapter1 \stopproject %%% Local Variables: %%% mode: conTeXt-en %%% End: I have bookenv.tex. \startenvironment bookenv \setupwhitespace[medium] \setupindenting[medium] \stopenvironment %%% Local Variables: %%% mode: conTeXt-en %%% End: I have chapter1.tex: \startproduct chapter1 \project book \startbodymatter \chapter{Quadratic Functions} \component section1 \component section2 \component section3 \stopbodymatter \stopproduct %%% Local Variables: %%% mode: conTeXt-en %%% TeX-master: t %%% End: I have section1.tex: \startcomponent section1 \project book \product chapter1 \section{Trinomials} \input knuth \stopcomponent %%% Local Variables: %%% mode: conTeXt-en %%% End: I have section 2.tex: \startcomponent section2 \project book \product chapter1 \section{Special Forms} \input knuth \stopcomponent %%% Local Variables: %%% mode: conTeXt-en %%% End: I have section3.tex: \startcomponent section3 \project book \product chapter1 \section{Completing the Square} \input knuth \stopcomponent %%% Local Variables: %%% mode: conTeXt-en %%% End: A couple of questions: 1. When I compile: texexec book I do not get "medium" indenting. What am I doing wrong? 2. When I compile: texexec --pdf section2 I don't get indenting "medium" and the section is numbered 1. I was expecting 1.2. Am I missing something here? I was hoping that if you compiled a component like this that it would search the project structure and determine an appropriate adjustment in number labels and, hopefully, references. David