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=date:from:to:subject:message-id:in-reply-to:references:mime-version :content-transfer-encoding; bh=kObzfGf37H83iuEQLK1eo7dXnJaoExDy5IAUl1sHxqY=; b=AHZfL0rvFF2w3JHtbYEv+D0+kUdjSBanRSbvIcpYAPUvn2y5k71tJVu6zSZ2Og54Zv XLA0i5yzNTIOYuMeTQND4eXjjlPVgKEOK2V9zZZrQJrTalgxpvFyL20Y+S6RC9RMIUHw 7Vksi8iQ0BV+NILlm7B0jUvbyHulTkF+huEociBrBJYXOScC6hBnJRwMRoeDc1WN+5zc Q9lauaZVwUsfTvli6cl6NzZJQ2bEMqi7sRWwlGKpyh1pZipt0XzSB13FwdG0qZTyMsqW cbdFFlMmiSBij/F89+ZOevsGyYvrlw6+516jac2I1sAiObLv2gMlD8fllRv/yjOkgGoB HPOA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=kObzfGf37H83iuEQLK1eo7dXnJaoExDy5IAUl1sHxqY=; b=Q0zGipdTKSQJHKG4f+sFN4312VVGtE+q3SA+tVyFnONNY0u79H+euJSk7JeXrR3Dga hYsZDKbhaWYgmeV/iPTljrEPEhhpOa4pd7lrMom9+OdupyGZ2Oh1kIULyYPrfystRlbr l3jv5LJ3srEn/K9IzkHh3LMh5FvY+78hEKAODN3+wsvjnNXoaPvyiq+MnX6uCulXoDUP 923wvQN3dFy5lAiBNfgTLNLEgWSL96w8TBOH4LQwk3ZQUCzN4mbkV/eL1FBReGVKvlNv +hwuIJ20QliwHWHzqxuTeE4EDSuAS93wK39UchxhlvLFclN5UHcGwb1m1gi/YZ5dEJwt UFMQ== X-Gm-Message-State: ALKqPwc9Tzx3ZlsiI2vsY4GERwy3xjS/CkHB9/UcnTxEACexzHG9quNp bXX6/T1EnozpCYKfZWUJvZlVMQ== X-Google-Smtp-Source: AB8JxZpstQ5VKEeZ0luk6MSFnlw+T2VwfWegjpUMHbW9QBA+DGb1VhJNZZiFoamgZnl7WfZ7/6cy+Q== X-Received: by 2002:a19:8f8a:: with SMTP id s10-v6mr1476569lfk.47.1527075390592; Wed, 23 May 2018 04:36:30 -0700 (PDT) Date: Wed, 23 May 2018 14:36:20 +0300 From: "(graahnul DOT grom AT gmail DOT com) [via geda-user AT delorie DOT com]" To: geda-user AT delorie DOT com Subject: Re: [geda-user] postscript print extents without margins Message-ID: <20180523143620.1ad55aab@demon> In-Reply-To: <20180523005748.793A180F49D7@turkos.aspodata.se> References: <20180523005748 DOT 793A180F49D7 AT turkos DOT aspodata DOT se> X-Mailer: Claws Mail 3.16.0 (GTK+ 2.24.32; amd64-portbld-freebsd11.1) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit 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 On Wed, 23 May 2018 02:57:48 +0200 (CEST) karl AT aspodata DOT se wrote: > Before commit 04761cad1f86ec47e650bc9e48320943de712aaf > (2012-01-12) I could print a schematic with a frame like > [1] full page. The marks in the corner in the sym is to > be in the paper corner, that way I would always get the > frame in the correct and same size. > > Today I always get a margin, which I don't want, It is > the as a shrunk drawing. Is there any way that I could > solve that with todays gschem ? > > Regards, > /Karl Hammar > > [1] > http://aspodata.se/git/openhw/share/gschem/A4liggande.sym Hi Karl. $ gaf config "export" "paper" "iso_a4" $ gaf config "export" "margins" "0;0;0;0" $ gaf export -o out.ps A4liggande.sym Or with one command: $ gaf export --margins="0:0:0:0" --paper="iso_a4" \ -o out.ps A4liggande.sym Note: *both* "margins" and "paper" should be specified. Resources: [1] man gaf [2]https://github.com/lepton-eda/lepton-eda/wiki/Configuration-Settings Regards, Dmitry.