First time poster, long time user. Glad to be here.
This seems to a bug.
- Org mode version 9.4.4
- GNU Emacs 25.3.1
If I write in a little table like this:
: In Table [[tableOne]] I show that this site has AADT 143925, by
TVT_Detailed_2019.xlsx.
:
: #+NAME: tableOne
: #+CAPTION: Site 26016
acker? Ordinarily
here I would say "close the bug" but this is close enough I hope?
- JP
On 3/29/21 9:45 PM, Kyle Meyer wrote:
James Powell writes:
First time poster, long time user. Glad to be here.
Welcome.
This seems to a bug.
[...]
When I add some latex in the middle:
<>
In
I have a goal: make a table in R using org-babel and have it appear in
the latex export. I also want to be able to refer to the table by name in
the org file and have that become a hypertext link in the latex export.
Using Org mode version 9.4.4 I build this document:
<>
#+NAME: t1
#+begin_src
Using Org mode version 9.4.4 I build this document:
<>
#+NAME: t1
#+begin_src R :exports both
library(tidyverse)
x <- tribble(~a, ~b, 1, 3)
x
#+end_src
#+CAPTION: Org Table
#+RESULTS: t1
| 1 | 3 |
I want to refer to Table [[t1]].
<>
What I expect: the latex export will include the table a
aptioned and referenced.
- JP
On 4/19/21 10:45 AM, Nicolas Goaziou wrote:
Hello,
James Powell writes:
Using Org mode version 9.4.4 I build this document:
<>
#+NAME: t1
#+begin_src R :exports both
library(tidyverse) x <- tribble(~a, ~b, 1, 3) x #+end_src
#+CAPTION: Org Ta
Remember to cover the basics, that is, what you expected to happen and
what in fact did happen. You don't know how to make a good report? See
https://orgmode.org/manual/Feedback.html#Feedback
Your bug report will be posted to the Org mailing list.
-
Error handling is important and hard to get right. Me, I prefer to
treat every warning as an error (-Werror in gcc, "options(warn=2)" in
R, etc). I want the system to grind to a halt at the least sign of
trouble.
When I write some nonsense into a code block as in this example:
,---
I write a deliberate syntax error into a code block:
: #+begin_src R :session
: x <- 1
: y xx z
: #+end_src
I put my cursor in there and C-c C-c.
What I expect: a gentle useful report about the error.
Maybe even org would move the cursor to the point of the
error in the org buffer. If not,