From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: linguistic, covington style: problems with org-preview-latex-fragment Date: Thu, 14 Nov 2013 11:13:28 -0500 Message-ID: <87ob5nyn9z.fsf@alphaville.bos.redhat.com> References: <87ob5ndphy.fsf@gilgamesch.quim.ucm.es> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48281) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VgzYB-0001E0-H1 for emacs-orgmode@gnu.org; Thu, 14 Nov 2013 11:13:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VgzY4-0006jZ-Oj for emacs-orgmode@gnu.org; Thu, 14 Nov 2013 11:13:47 -0500 Received: from plane.gmane.org ([80.91.229.3]:42898) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VgzY4-0006ix-HY for emacs-orgmode@gnu.org; Thu, 14 Nov 2013 11:13:40 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1VgzY2-0005f8-W5 for emacs-orgmode@gnu.org; Thu, 14 Nov 2013 17:13:38 +0100 Received: from nat-pool-bos-t.redhat.com ([66.187.233.206]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 14 Nov 2013 17:13:38 +0100 Received: from ndokos by nat-pool-bos-t.redhat.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 14 Nov 2013 17:13:38 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Uwe Brauer writes: > Hello > > Convington.sty is a linguistic style for presenting interline > translation. I attach a pdf file as an examnple. The typical > file looks as follows. > > \documentclass[12pt]{article} > \usepackage{covington} > \begin{document} > > > \begin{examplecov} > \gll Marun ngeerne. > Boy\textsc{-NOM} sleep. > \glt 'The boy is sleeping'. > \glend > \end{examplecov} > \end{document} > > So have added \usepackage{covington} > to org-format-latex-header, as I have done before. However when I run > org-preview-latex-fragment, no png are generated, I even do not see a > buffer containing possible latex errors. > > Any idea what to do? > The *Messages* buffer should have something like this (.dvi or .pdf, depending on whether you use dvipng or imagemagick): Creating image...1 if: PDF file /tmp/orgtex31356_9l.pdf wasn't produced If there is no such message, try diff'ing /tmp before and after you try to produce the fragment. That should tell you the name of the .tex file. Try processing the corresponding .tex file from the command line: latex /tmp/orgtex31356_9l.tex or pdflatex /tmp/orgtex31356_9l.tex and see where it breaks. Nick