X-Authentication-Warning: delorie.com: mail set sender to geda-user-bounces using -f X-Recipient: geda-user AT delorie DOT com X-Original-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:date:to:subject:message-id:mail-followup-to:references :mime-version:content-disposition:in-reply-to; bh=PRSllAxBzKURbKqfiPh+HgZPqpeQPBcNnHAzn2fG74o=; b=a72k26BkBKGnfIfcTYsKTVR6TXB/26QjNPIkzENME1jGPtn6EY+Qb4JbmYpOL1329h jHlaaQfFS6B2Hf0Mo5gzAc1AiBfivYMvH3kgzTirKP/GZF/zleSHWKkZHr5X0trNlsZs aAe+mFmMTnieD4KQmoisj8J0CKONywV5cntdcqGr55nfUh2GehOKaH0OqFk1nLTufL76 EAQapMduwE7wrGmCxP6E4MEq4/o0ion6uK7O/lVn4aHWafqWBmIudsCqmiaw8ZuYKcPq PRPzmtqUgeDYeHXr5xdMfdLkFnNVMYpuax85j6qZdChL+hqxB39nt5pZQWEnhQrTpog4 mK/A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:date:to:subject:message-id:mail-followup-to :references:mime-version:content-disposition:in-reply-to; bh=PRSllAxBzKURbKqfiPh+HgZPqpeQPBcNnHAzn2fG74o=; b=mBDEtFltSM9MbXVqjYkY+BP6kOoOYOfmi0ul5cEwE3DXWUt+f25F6ALegYMqdnNT9G Gh4OjsabbV33Hsv2nrozPzoE2gO1NzPttZjR4ioGBhnJN+ozFnJqiJRtJtgqVgu43wGf kt2lv68WGLiSOdahqizjYUfj+fZ3q2TpTVPDyllMuLGFe2D8i4rtwVumjdHBO3lu6Vnz S5olRafQgTIeYL4+yO2QLr2zzpw+gxER0C55I1uv7Np5IyPaMRj7gzFzJsMdn3h2AInY 6oo/YP/kT/bznc1eeP9Zro7sT+ReezP1WCvrAi717aGSjKJsKoWQPjrYP4Is1PJm9TvZ NJxQ== X-Gm-Message-State: AOAM533Q+EewWUJGu9uP6Aark6xGZTff71c3nvvnTN+A4uPJgrCO7Tv4 tN2FpiwGi7mD1+ODgsHCQDHbGAHujB0= X-Google-Smtp-Source: ABdhPJxv64kxEgAVhUhorly0YR92la0c6ElrGaZB7D/4B18uB3M8HLjeXno8FepVBE78Quotd3oZNA== X-Received: by 2002:ac2:4948:: with SMTP id o8mr10989233lfi.537.1627944561017; Mon, 02 Aug 2021 15:49:21 -0700 (PDT) From: "Vladimir Zhbanov (vzhbanov AT gmail DOT com) [via geda-user AT delorie DOT com]" X-Google-Original-From: Vladimir Zhbanov Date: Tue, 3 Aug 2021 01:49:19 +0300 To: geda-user AT delorie DOT com Subject: Re: [geda-user] schematics and curves in text Message-ID: Mail-Followup-To: geda-user AT delorie DOT com References: <20210802152417 DOT 4BD8E83DE4BE AT turkos DOT aspodata DOT se> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20210802152417.4BD8E83DE4BE@turkos.aspodata.se> Reply-To: geda-user AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: geda-user AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk Hi Karl, On Mon, Aug 02, 2021 at 05:24:17PM +0200, karl AT aspodata DOT se [via geda-user AT delorie DOT com] wrote: > I have experimented with including schematics and curves with > latex. > > Current result (yes, it is in swedish): > http://aspodata.se/tmp/voltage_inverter.pdf > > Its source is at: > http://aspodata.se/git/openhw/text/switched_power/ > > In overall I think it works good. Looks nice, yeah :-) > Now that I have done that, what can I do better (anything except > language related) ? > > /// > > On page 2, in "Figur 3" (inv3.sch in source dir), ends of pins > and nets is rendered as small squares. > > Is there a way to make thoose small squares disappear ? The trick I used a few years ago was disabling 'net-endpoint' color in 'print-color-map' by setting it to #f, defining other colors as black or white, and exporting my images with the --color option. The print color map may be defined in gafrc as follows: (print-color-map '((background #f) (pin "#000000") (net-endpoint #f) ; <= this one (graphic "#000000") (net "#000000") (attribute "#000000") (logic-bubble "#000000") (grid #f) (detached-attribute "#000000") (text "#000000") (bus "#000000") (select #f) (bounding-box #f) (zoom-box #f) (stroke #f) (lock "#000000") (output-background "#ffffff") (junction "#000000") (freestyle1 #f) (freestyle2 #f) (freestyle3 #f) (freestyle4 #f) )) AFAIR, this worked with 'gaf', and should definitely work with 'lepton-cli'. HTH, -- Vladimir