From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Eric Schulte" Subject: Re: TikZ to separate file (babel?) possible? Date: Mon, 25 Oct 2010 12:53:52 -0600 Message-ID: <87r5fet873.fsf@gmail.com> References: <87lj5px6m5.fsf@gmail.com> <87aam5bz6y.wl%ucecesf@ucl.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=56152 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PASL0-0003EF-Lo for emacs-orgmode@gnu.org; Mon, 25 Oct 2010 15:04:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PASBB-0005ha-CN for emacs-orgmode@gnu.org; Mon, 25 Oct 2010 14:53:58 -0400 Received: from mail-iw0-f169.google.com ([209.85.214.169]:53423) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PASBB-0005hI-6n for emacs-orgmode@gnu.org; Mon, 25 Oct 2010 14:53:57 -0400 Received: by iwn34 with SMTP id 34so203489iwn.0 for ; Mon, 25 Oct 2010 11:53:56 -0700 (PDT) In-Reply-To: (John Hendy's message of "Mon, 25 Oct 2010 13:21:49 -0500") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: John Hendy Cc: emacs-orgmode Hi John, In the case you describe I would export the *code* of the tikz latex block rather than the file resulting from evaluating the block. This is possible by adding the following header argument to the code block which will evaluate the latex block when the export target is not latex and will just export the code when the target is latex. :exports (if latexp "code" "results") Best -- Eric John Hendy writes: > Followup question. I have an existing diagram I had already exported to PDF > via LaTeX, taken a screenshot of, and used in a presentation. I tried the > same diagram with the new method and am having issues with the font. The > original org file is like this: > > *---( File_1.org -> embedded LaTeX )---* > #+latex_header: \usepackage{tikz} \usetikzlibrary{shapes,positioning,arrows} > #+latex_header: \usepackage[hmargin=2.5cm,vmargin=2.5cm]{geometry} > #+latex_header: \usepackage{lmodern} > #+latex_header: \renewcommand{\rmdefault}{cmss} > > * Section > > #+begin_latex > > +++ TikZ code is here +++ > > #+end_latex > > *---( End File_1.org )---* > > > My file using this new method is like this: > > *---( File_2.org -> exports TikZ to separate PDF via babel/LaTeX )---* > #+latex_header: \usepackage{tikz} \usetikzlibrary{shapes,positioning,arrows} > #+latex_header: \usepackage[hmargin=2.5cm,vmargin=2.5cm]{geometry} > #+latex_header: \usepackage{lmodern} > #+latex_header: \renewcommand{\rmdefault}{cmss} > > * Section > > #+begin_src latex :file flow-chart.pdf :packages '(("" "tikz")) :border 1em > > +++ TikZ code is here +++ > > #+end_src > > *---( End File_2.org )---* > > > In my first file, the entire font is latin modern (sans-serif). Header, > title, author, *and* all TikZ diagram text. > > In the second, only the header is (if I export the whole thing), but not the > text in my TikZ nodes. Why is the babel block ignoring the document font > setting? > > > Thanks, > John > > > On Sat, Oct 23, 2010 at 12:58 PM, John Hendy wrote: > >> Thanks, Eric F. Got the preview package going and this is *exactly* what I >> would have been looking for. >> >> Eric S: yes, ImageMagick will take care of the rest :) >> >> >> Thanks all! >> John >> >> On Fri, Oct 22, 2010 at 6:11 PM, Eric S Fraga wrote: >> >>> On Fri, 22 Oct 2010 16:36:10 -0500, John Hendy >>> wrote: >>> >>> > This is fantastic. Honestly, I had no idea that one could use LaTeX with >>> > babel! This is just perfect. I was googling around for "export tikz pgf >>> jpg" >>> > and things like that with no luck. This will do perfectly. >>> >>> For completeness (and the mailing list archive), if you need to do >>> this directly in latex, you will want to use the minimal document >>> class and the preview package. Check out examples on the tikz >>> examples web site [1]. The preview package is what babel uses. >>> >>> Footnotes: >>> [1] http://www.texample.net/tikz/examples/ >>> >>> >>> -- >>> Eric S Fraga >>> GnuPG: 8F5C 279D 3907 E14A 5C29 570D C891 93D8 FFFC F67D >>> >>> >>