* Problem getting booktabs example to work
@ 2012-07-13 15:16 Brendan Halpin
2012-07-13 20:50 ` Thomas S. Dye
0 siblings, 1 reply; 4+ messages in thread
From: Brendan Halpin @ 2012-07-13 15:16 UTC (permalink / raw)
To: emacs-orgmode
I'm trying to implement the LaTeX/booktabs example at section 13.2 of
http://orgmode.org/worg/org-tutorials/org-latex-export.html
but am having no success.
I've tried a range of tweaks, but the most common result is to get the
<<booktabs(table=test-table,align="lrX",env="tabularx")>>
line reproduced verbatim in the output.
I've pulled the latest git version.
In an "emacs -Q" session, I evaluate the following e-lisp:
> (setq load-path (cons "~/mylisp/org-mode/lisp/" load-path))
> (require 'org "~/mylisp/org-mode/lisp/org.el")
> (org-babel-do-load-languages
> 'org-babel-load-languages
> '((emacs-lisp . t)
> (R . t)
> (ruby . t)
> (latex . t)
> ))
> (org-babel-lob-ingest
> "~/mylisp/org-mode/contrib/babel/library-of-babel.org")
and then do C-c C-e D in a buffer containing this org-mode text:
> #+LATEX_HEADER: \usepackage{tabularx,booktabs}
>
> * Table section
> #+name: tabularx-export
> #+begin_src latex :exports results :results latex
> \begin{table}[htb!]
> \centering
> \footnotesize
> \caption{A table to test booktabs}
> \label{tab:test-table}
> <<booktabs(table=test-table,align="lrX",env="tabularx")>>
> \end{table}
> #+end_src
>
> * Not for export :noexport:
> #+tblname: test-table
> | | ham | hol | h2l |
> |-----+-------+-------+-------+
> | ham | 1.000 | 0.998 | 0.996 |
> | hol | 0.998 | 1.000 | 0.999 |
> | h2l | 0.996 | 0.999 | 1.000 |
> | oma | 0.986 | 0.990 | 0.995 |
> | omv | 0.941 | 0.939 | 0.936 |
The document is produced correctly, except for the fact that the
<<booktabs...>> chunk appears verbatim in place of the table body.
As far as I can see I am following the instructions correctly, but I
am probably missing some prerequisite.
Any pointers appreciated!
Regards,
Brendan
--
Brendan Halpin, Department of Sociology, University of Limerick, Ireland
Tel: w +353-61-213147 f +353-61-202569 h +353-61-338562; Room F1-009 x 3147
mailto:brendan.halpin@ul.ie ULSociology on Facebook: http://on.fb.me/fjIK9t
http://teaching.sociology.ul.ie/bhalpin/wordpress twitter:@ULSociology
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Problem getting booktabs example to work
2012-07-13 15:16 Brendan Halpin
@ 2012-07-13 20:50 ` Thomas S. Dye
0 siblings, 0 replies; 4+ messages in thread
From: Thomas S. Dye @ 2012-07-13 20:50 UTC (permalink / raw)
To: brendan.halpin; +Cc: emacs-orgmode
brendan.halpin@ul.ie (Brendan Halpin) writes:
> I'm trying to implement the LaTeX/booktabs example at section 13.2 of
> http://orgmode.org/worg/org-tutorials/org-latex-export.html
> but am having no success.
>
> I've tried a range of tweaks, but the most common result is to get the
> <<booktabs(table=test-table,align="lrX",env="tabularx")>>
> line reproduced verbatim in the output.
>
> I've pulled the latest git version.
>
> In an "emacs -Q" session, I evaluate the following e-lisp:
>
>> (setq load-path (cons "~/mylisp/org-mode/lisp/" load-path))
>> (require 'org "~/mylisp/org-mode/lisp/org.el")
>> (org-babel-do-load-languages
>> 'org-babel-load-languages
>> '((emacs-lisp . t)
>> (R . t)
>> (ruby . t)
>> (latex . t)
>> ))
>> (org-babel-lob-ingest
>> "~/mylisp/org-mode/contrib/babel/library-of-babel.org")
>
> and then do C-c C-e D in a buffer containing this org-mode text:
>
>> #+LATEX_HEADER: \usepackage{tabularx,booktabs}
>>
>> * Table section
>> #+name: tabularx-export
>> #+begin_src latex :exports results :results latex
>> \begin{table}[htb!]
>> \centering
>> \footnotesize
>> \caption{A table to test booktabs}
>> \label{tab:test-table}
>> <<booktabs(table=test-table,align="lrX",env="tabularx")>>
>> \end{table}
>> #+end_src
>>
>> * Not for export :noexport:
>> #+tblname: test-table
>> | | ham | hol | h2l |
>> |-----+-------+-------+-------+
>> | ham | 1.000 | 0.998 | 0.996 |
>> | hol | 0.998 | 1.000 | 0.999 |
>> | h2l | 0.996 | 0.999 | 1.000 |
>> | oma | 0.986 | 0.990 | 0.995 |
>> | omv | 0.941 | 0.939 | 0.936 |
>
> The document is produced correctly, except for the fact that the
> <<booktabs...>> chunk appears verbatim in place of the table body.
>
> As far as I can see I am following the instructions correctly, but I
> am probably missing some prerequisite.
>
> Any pointers appreciated!
>
>
> Regards,
>
> Brendan
Aloha Brendan,
My mistake. You are right, the tabularx-export block should also have
the header argument :noweb yes.
I've pushed this change to Worg.
Thanks for pointing it out.
All the best,
Tom
--
Thomas S. Dye
http://www.tsdye.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Problem getting booktabs example to work
@ 2012-07-13 21:27 Thomas S. Dye
2012-07-13 22:03 ` Nick Dokos
0 siblings, 1 reply; 4+ messages in thread
From: Thomas S. Dye @ 2012-07-13 21:27 UTC (permalink / raw)
To: Org-mode
Aloha Brendan,
I've pushed up another fix to the example on Worg. The call to booktabs
needs a width argument when the tabularx environment is used.
<<booktabs(table=test-table,align="lrX",env="tabularx",width="\\textwidth")>>
Your table doesn't look as if it needs tabularx, so you might want to
change to env="tabular" instead.
Thanks to Nick Dokos for pointing out to me off-list that the example
was more broken than I'd thought.
All the best,
Tom
... who has many reasons to be excited about the new exporter.
--
Thomas S. Dye
http://www.tsdye.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Problem getting booktabs example to work
2012-07-13 21:27 Problem getting booktabs example to work Thomas S. Dye
@ 2012-07-13 22:03 ` Nick Dokos
0 siblings, 0 replies; 4+ messages in thread
From: Nick Dokos @ 2012-07-13 22:03 UTC (permalink / raw)
To: Thomas S. Dye; +Cc: Org-mode
Thomas S. Dye <tsd@tsdye.com> wrote:
> Thanks to Nick Dokos for pointing out to me off-list that the example
> was more broken than I'd thought.
>
In the "credit where it's due" department, Brendan Halpin was the one
who found the problems: I just acted as a conduit, since I knew who the
guilty party was :-)
Nick
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-07-13 22:03 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-13 21:27 Problem getting booktabs example to work Thomas S. Dye
2012-07-13 22:03 ` Nick Dokos
-- strict thread matches above, loose matches on Subject: below --
2012-07-13 15:16 Brendan Halpin
2012-07-13 20:50 ` Thomas S. Dye
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).