bug#37338: Org-mode manual sec 11.8.2 out of date

2019-11-23 Thread Nicolas Goaziou
Hello,

Michael Wu  writes:

> No, I cannot. Perhaps my version is out of date.

OK. Then I'm closing this bug report. Feel free to re-open it if you
find anything wrong.

Thank you for replying.

Regards,

-- 
Nicolas Goaziou





Question: export with tags but hide "export" tag

2019-11-23 Thread wry

Hi fellow org people,

I want to start publishing some of my notes on a website. My preferred
method is either org-export-dispatch or org-publish (maybe in the
future).

I have one giant notes file where I keep everything. Some people
prefer to have multiple files to compartmentalize, but I prefer to
keep everything together to simplify searching, organizing, capturing
etc. This is similar to the philosophy of dnote (a third-party,
non-org-mode note taking app at https://www.getdnote.com/): being able
to capture a note as quickly as possible is more important than
putting it in the correct place, and being able to search all notes is
more important than having them perfectly organized.

Towards the top of the file are more permanent entries, like my TODO
inbox, calendar, and daily checklist. Whenever I add a note, I
automatically stick it at the end of the file. When headlines are
completed or become more permanent, I sometimes refile them higher up
in the file ("percolate up", if you will).

Anyway, my preferred method of publishing would be to simply tag
headlines when they're ready to be included in HTML exports. Org-mode
includes this, of course, with the "org-export-select-tags"
option. However, I also want to include tags in the exported HTML, but
currently that means every exported headline will have the "export"
tag. Any ideas about how to export using this workflow without showing
the "export" tag?

Thanks,
Nick



bug#37338: Org-mode manual sec 11.8.2 out of date

2019-11-23 Thread Nicolas Goaziou
Hello,

Michael Wu  writes:

> C-c C-x C-l is what removes the preview images, not C-c C-c as suggested in
> the info note.

I cannot find the paragraph you're talking about. Can you see it in the
manual at ?

Thank you.

Regards,

-- 
Nicolas Goaziou





bug#36968: 27.0.50; org-latex-subtitle-separate documentation inconsistent

2019-11-23 Thread Nicolas Goaziou
Hello,

Zach Shaftel  writes:

> The documentation string of `org-latex-subtitle-separate' says
> "Non-nil means the subtitle is not typeset as part of title" whereas
> the org manual says "If ‘org-latex-subtitle-separate’ is non-‘nil’,
> it is typed as part of the ‘\title’-macro". These descriptions seem
> to say the exact opposite of each other.

I fixed the documentation in the yet-to-be-released Org.

Thank you.

Regards,

-- 
Nicolas Goaziou





Re: [O][BABEL] Editing asymptote source code blocks

2019-11-23 Thread stardiviner


R C  writes:

> I am trying to use `org-edit-src-code` to edit an `asymptote` source code 
> block.
> By default, this editing is done in a temporary buffer. However, trying to 
> execute the file using `asy-compile` gives an error:
> file-name-sans-extension: Wrong type argument: stringp, nil
>
> As asy-compile works with standalone files with the asy extension, I thought 
> that the error was because it required a buffer with an asy extension. I set 
> the optional
> parameters according to the docstring
>
> (defun rc/org-edit-src-code ()
>   "Set file name for org-edit-src-code."
>   (interactive)
>   (org-edit-src-code (org-element-property :value (org-element-at-point))  
> "tmp.asy" ))
>
> and on calling this function, the editing buffer opens with the filename 
> 'tmp.asy' and the correct source code block contents, but I still get the 
> same error on
> calling `asy-compile`.
>
> I would appreciate any suggestions to fix this problem.

You need to use ADVICE to change the org babel generate/create template file
under =/tmp/ob-*=. Make sure the generate temporary file has correct file 
extension
"=.asy=".

-- 
[ stardiviner ]
   I try to make every word tell the meaning what I want to express.

   Blog: https://stardiviner.github.io/
   IRC(freenode): stardiviner, Matrix: stardiviner
   GPG: F09F650D7D674819892591401B5DF1C95AE89AC3
  



Re: Editting from the agenda view

2019-11-23 Thread Victor A. Stoichita



Le 22 Nov 2019, Shérab  a écrit :
When I am in an agenda view, say the weekly view, how can I edit 
one of
the listed entries? I may want to do that either because 
I notice I have

made a typo that I would like to fix, or because I would like to
re-schedule the entry for another date.


To reschedule an entry remotely from the agenda view, you can 
press S-right (org-agenda-do-date-later) or S-left 
(org-agenda-do-date-earlier).
C-c C-s (org-agenda-schedule) and C-c C-d (org-agenda-deadline) 
also work without leaving the agenda view.


Regards,
Victor