Re: [O] minimal testing setup for pdf export?

2019-08-30 Thread Tim Cross
oss >> To: emacs-orgmode@gnu.org >> Cc: Nick Dokos >> Subject: Re: [O] minimal testing setup for pdf export? >> >> >> I think the main thing which needs to be in the PDF is structure >> 'tagging'. Unfortunately, making truly accessible PDFs is the one area

Re: [O] minimal testing setup for pdf export?

2019-08-30 Thread Jude DaShiell
Fri, 30 Aug 2019 19:31:32 > From: Tim Cross > To: emacs-orgmode@gnu.org > Cc: Nick Dokos > Subject: Re: [O] minimal testing setup for pdf export? > > > I think the main thing which needs to be in the PDF is structure > 'tagging'. Unfortunately, making truly accessible PDFs i

Re: [O] minimal testing setup for pdf export?

2019-08-30 Thread Tim Cross
macs-orgmode@gnu.org >> Subject: Re: [O] minimal testing setup for pdf export? >> >> Jude DaShiell writes: >> >> > It would be helpful if when pdf get exported from orgmode they have >> > speech enabled by default. >> > >> >> Not sure tha

Re: [O] minimal testing setup for pdf export?

2019-08-30 Thread Jude DaShiell
. I nearly forgot about that one. The 1099R form is a short one so it ought to be pretty quick to find the setting in one of those forms. On Fri, 30 Aug 2019, Nick Dokos wrote: > Date: Fri, 30 Aug 2019 16:07:49 > From: Nick Dokos > To: emacs-orgmode@gnu.org > Subject: Re: [O] min

Re: [O] minimal testing setup for pdf export?

2019-08-30 Thread Nick Dokos
Jude DaShiell writes: > It would be helpful if when pdf get exported from orgmode they have > speech enabled by default. > Not sure that org mode can do anything about, since it's LaTeX that produces the PDF. That said, I'm not sure what needs to be done: what's the difference between a

Re: [O] minimal testing setup for pdf export?

2019-08-30 Thread Jude DaShiell
It would be helpful if when pdf get exported from orgmode they have speech enabled by default. On Fri, 30 Aug 2019, John Hendy wrote: > Date: Fri, 30 Aug 2019 10:45:08 > From: John Hendy > To: Matt Price > Cc: org-mode-email > Subject: Re: [O] minimal testing setup for pdf e

Re: [O] minimal testing setup for pdf export?

2019-08-30 Thread John Hendy
Whew, the world is whole again! No worries, and I've been in the exact same situation more than I'd like. We joke at work that if you want to fix a problem, just ask someone to come watch it happen and it will magically go away :) Glad you're on your way! John On Fri, Aug 30, 2019 at 9:27 AM

Re: [O] minimal testing setup for pdf export?

2019-08-30 Thread Matt Price
On Thu, Aug 29, 2019 at 11:27 AM John Hendy wrote: > On Tue, Aug 27, 2019 at 6:34 PM Matt Price wrote: > > > > > > > > On Tue, Aug 27, 2019 at 1:33 PM John Kitchin > wrote: > >> > >> that does suggest that pdflatex is getting called somewhere else. > >> > >> Maybe you can edebug the export

Re: [O] minimal testing setup for pdf export?

2019-08-29 Thread John Hendy
On Tue, Aug 27, 2019 at 6:34 PM Matt Price wrote: > > > > On Tue, Aug 27, 2019 at 1:33 PM John Kitchin wrote: >> >> that does suggest that pdflatex is getting called somewhere else. >> >> Maybe you can edebug the export function and check the value of >> default-directory to see where it is

Re: [O] minimal testing setup for pdf export?

2019-08-28 Thread Julius Dittmar
Am 28.08.19 um 01:33 schrieb Matt Price: > huh.  that was kinda cool... but the value of default-directory seems to > be correct.  However, this helped a bit: > > #+BEGIN_SRC emacs-lisp > (shell-command-to-string "echo $PWD") > > #+END_SRC >   > > #+RESULTS: > : /home/matt/src/org-mode > > Not

Re: [O] minimal testing setup for pdf export?

2019-08-27 Thread Matt Price
On Tue, Aug 27, 2019 at 1:33 PM John Kitchin wrote: > that does suggest that pdflatex is getting called somewhere else. > > Maybe you can edebug the export function and check the value of > default-directory to see where it is getting called. > > You could also try this > > #+BEGIN_SRC

Re: [O] minimal testing setup for pdf export?

2019-08-27 Thread John Kitchin
that does suggest that pdflatex is getting called somewhere else. Maybe you can edebug the export function and check the value of default-directory to see where it is getting called. You could also try this #+BEGIN_SRC emacs-lisp (defun my-build (quoted-tex-file) (message "Building %s. Called

Re: [O] minimal testing setup for pdf export?

2019-08-27 Thread Matt Price
On Tue, Aug 27, 2019 at 8:27 AM John Kitchin wrote: > Can you manually compile the empty.tex file from the command line? eg > > pdflatex empty > > (reposting to group) pdflatex empty Seems to work fine. Hmmm... > John > > --- > Professor John Kitchin > Doherty

Re: [O] minimal testing setup for pdf export?

2019-08-27 Thread John Kitchin
Can you manually compile the empty.tex file from the command line? eg pdflatex empty John --- Professor John Kitchin Doherty Hall A207F Department of Chemical Engineering Carnegie Mellon University Pittsburgh, PA 15213 412-268-7803 @johnkitchin

Re: [O] minimal testing setup for pdf export?

2019-08-27 Thread Julius Dittmar
Am 27.08.19 um 12:34 schrieb Matt Price: > This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Arch > Linux) (preloaded format=pdflatex) >  restricted \write18 enabled. > entering extended mode > ! I can't find file `empty.tex'. So pdflatex is called and found. Then pdflatex can't find

Re: [O] minimal testing setup for pdf export?

2019-08-27 Thread Matt Price
My empty.tex is very similar: % Created 2019-08-27 Tue 06:25 % Intended LaTeX compiler: pdflatex \documentclass[11pt]{article} \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} \usepackage{graphicx} \usepackage{grffile} \usepackage{longtable} \usepackage{wrapfig} \usepackage{rotating}

Re: [O] minimal testing setup for pdf export?

2019-08-27 Thread Robert Klein
On Mon, 26 Aug 2019 21:20:53 -0400 Matt Price wrote: > Can someone point me to a minimal setup for testing PDF export with > "emacs -Q"? I am unable to produce a pdf with default settings and I > am pretty sure that the latex is invalid... but I'm having trouble > testing it since I 9still)

Re: [O] minimal testing setup for pdf export?

2019-08-26 Thread Ken Mankoff
On 2019-08-27 at 03:20 +02, Matt Price wrote... > Can someone point me to a minimal setup for testing PDF export with "emacs > -Q"? I am unable to produce a pdf with default settings and I am pretty > sure that the latex is invalid... but I'm having trouble testing it since > I 9still) know so

[O] minimal testing setup for pdf export?

2019-08-26 Thread Matt Price
Can someone point me to a minimal setup for testing PDF export with "emacs -Q"? I am unable to produce a pdf with default settings and I am pretty sure that the latex is invalid... but I'm having trouble testing it since I 9still) know so little about latex. Thanks everyone! Matt