From owner-freebsd-questions@FreeBSD.ORG Fri Oct 10 06:45:24 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3D7D16A4B3 for ; Fri, 10 Oct 2003 06:45:24 -0700 (PDT) Received: from smtp012.mail.yahoo.com (smtp012.mail.yahoo.com [216.136.173.32]) by mx1.FreeBSD.org (Postfix) with SMTP id 4664443F93 for ; Fri, 10 Oct 2003 06:45:24 -0700 (PDT) (envelope-from q_dolan@yahoo.com.au) Received: from q.onthenet.com.au (HELO ?192.168.100.154?) (q?dolan@203.10.89.214 with plain) by smtp.mail.vip.sc5.yahoo.com with SMTP; 10 Oct 2003 13:45:23 -0000 From: Q To: William O'Higgins In-Reply-To: <20031010123141.GA1925@sillyrabbi.dyndns.org> References: <20031010123141.GA1925@sillyrabbi.dyndns.org> Message-Id: <1065793520.4810.100.camel@boxster> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Fri, 10 Oct 2003 23:45:21 +1000 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.1 cc: freebsd-questions@freebsd.org Subject: Re: writing pdfs X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 10 Oct 2003 13:45:25 -0000 You have quite a few options: 1. HTMLDOC - will convert most HTML documents to PDF very quickly (I use this in production to generate several thousand files a month) 2. Openoffice 1.1 - has an Export to PDF option. (the most recent port works) 3. Anything that prints using Gnome's Gnome-print or KDE's Kprint, eg. Abiword or Kword, even gedit. 4. Ghostscript's ps2pdf tool used with any application that can save or print to postscript, like a2ps, html2ps, etc. Whichever method you choose, make sure you verify the output in Acrobat a few times until you are confident with the result. Sometimes it takes a bit of tweaking to get everything in the right places. Seeya...Q On Fri, 2003-10-10 at 22:31, William O'Higgins wrote: > I have grown tired of using MS Word as my standard document output > format. I haven't gotten OpenOffice to work under FreeBSD (and it isn't > my favourite tool by a long shot) and I am most happy generating text in > vi. PDF is eminently portable, and I think that it would suit my > purposes nicely. > > I had some thoughts about generating PDFs, but I was hoping for advice > about which tools to use. Should I just learn how to mark up a text > page manually (I write HTML almost as quickly as plain text)? Should I > learn TeX or some variant and translate it? I hear that PHP has some > excellent PDF-generation tools; should I write up a command-line > interpreter myself? Any suggestions would be appreciated. > > I did a bit of searching, but I didn't find any real *advice* on what > process to use, and most of the tools that I found are for viewing PDFs, > not writing them. > > Thanks.