[FEATURE request] hope `org-agenda-custom-commands` can support propertiezed-text.

2023-03-06 Thread stardiviner
I want to display text icon using "all-the-icons" package to beautify org-mode commands interface. In `org-capture-templates`, I can set description text with propertied text like this: ```elisp (setq org-capture-templates `(("c" ,(format "%s\tsticky note" (all-the-icons-faicon "sticky-note

Re: how to add special glyphs

2023-03-06 Thread Rob Sargent
On 3/6/23 16:06, Thomas S. Dye wrote: Rob Sargent writes: On 3/6/23 10:42, Rob Sargent wrote: I settled for \ding{54}, but of course that doesn't work in the HTML export.  I keep bumping in to this works-here-not-there in export. Quite disappointing. LaTeX is great, but not for the f

Re: how to add special glyphs

2023-03-06 Thread Thomas S. Dye
Rob Sargent writes: On 3/6/23 10:42, Rob Sargent wrote: I settled for \ding{54}, but of course that doesn't work in the HTML export.  I keep bumping in to this works-here-not-there in export. Quite disappointing. LaTeX is great, but not for the faint of heart. I know two ways that mi

Re: how to add special glyphs

2023-03-06 Thread Rob Sargent
On 3/6/23 10:42, Rob Sargent wrote: On 3/6/23 10:37, Thomas S. Dye wrote: Rob Sargent writes: I have added a "boxed x" and "CHECK MARK" to my document, but they do not get exported to pdf output. They are in the .tex file, and do go through to the HTML.  So far I'm using these package

Re: how to add special glyphs

2023-03-06 Thread Rob Sargent
On 3/6/23 10:37, Thomas S. Dye wrote: Rob Sargent writes: I have added a "boxed x" and "CHECK MARK" to my document, but they do not get exported to pdf output. They are in the .tex file, and do go through to the HTML.  So far I'm using these packages  #+LaTeX_HEADER: \usepackage[T1]{fon

Re: how to add special glyphs

2023-03-06 Thread Thomas S. Dye
Rob Sargent writes: I have added a "boxed x" and "CHECK MARK" to my document, but they do not get exported to pdf output. They are in the .tex file, and do go through to the HTML. So far I'm using these packages #+LaTeX_HEADER: \usepackage[T1]{fontenc} #+LaTeX_HEADER: \usepackage{liber

Re: visual-line-mode don't play well with org-latex-preview

2023-03-06 Thread chris
On Thursday, 2 March 2023 20:00:14 CET Bruno Barbier wrote: > > Hi Chris, > > chris writes: > > > Hi all, > > > > ``` > > hello hello hello hello hello hello hello hello hello hello hello hello > > hello > > hello hello \(\text {hello hello hello hello hello hello hello hello}\) > > ```

how to add special glyphs

2023-03-06 Thread Rob Sargent
I have added a "boxed x" and "CHECK MARK" to my document, but they do not get exported to pdf output.  They are in the .tex file, and do go through to the HTML.  So far I'm using these packages #+LaTeX_HEADER: \usepackage[T1]{fontenc} #+LaTeX_HEADER: \usepackage{libertine} #+LaTeX_HEAD

Re: [PATCH] org-src: Improve the name of source editing buffers

2023-03-06 Thread Max Nikulin
On 06/03/2023 04:26, Rudolf Adamkovič wrote: -Format is \"*Org Src ORG-BUFFER-NAME [ LANG ]*\"." - (concat "*Org Src " org-buffer-name "[ " lang " ]*")) +Format is \"*Org Src ORG-BUFFER-NAME [LANG]*\"." + (concat "*Org Src " org-buffer-name " [" lang "]*")) May it be a breaking change for use

Re: [BUG] No space after footnote with org-export-with-footnotes set to nil [9.6.1 ( @ /Users/test/.emacs.d/elpa/28.0/develop/org-9.6.1/)]

2023-03-06 Thread Max Nikulin
On 05/03/2023 20:01, Ihor Radchenko wrote: Consider * Heading [0/1] text ... Text with newline\\ [footnote] more text. ... Text (parens[footnote] ). I am not convinced that space should be dropped here. It might be enough to use spaces if and only if there are no preceding spaces. Or no

Re: [PATCH] Fix LaTeX misspelled as Latex

2023-03-06 Thread Max Nikulin
On 06/03/2023 04:04, Rudolf Adamkovič wrote: (1) a unified commit message with the similar BibTeX patch, and * lisp/org-element.el: Spell LaTeX correctly. * lisp/ox-ascii.el: Spell LaTeX correctly. * lisp/ox-html.el: Spell LaTeX correctly. Accordingly to the CONTRIBUTE file in the Emacs reposi

Re: [FR] ob-awk.el specifying a delimeter argument in for output

2023-03-06 Thread Max Nikulin
On 05/03/2023 16:50, Jeremie Juste wrote: #+begin_src awk :in-file test.csv :cmd-line -F "," {print $0} #+end_src Notice that awk has Output Field Separator that is space by default and may be set using -v OFS=; (or --assign) command line options. -F option sets input field separator FS varia