Re: [O] Citation syntax: now supported in Pandoc

2016-12-01 Thread Matt Price
Richard, is wip-cite up to date with recent git versions of org-mode? I'd like ot try it out but would rather not go back to a pre-9.0 version or org, having done a certain amount of work to update to the new framework... Thanks! On Thu, Dec 1, 2016 at 8:51 AM, Julian M. Burgos

Re: [O] semi-visible stars?

2016-12-01 Thread Matt Price
On Wed, Nov 30, 2016 at 3:41 PM, Matt Price wrote: > I have been fooling around a little bit with color-themes and also the new > emacs 24+ custom themes, and find that (perhaps because of using > desktop-mode) there are certain traces of the theming that get left behind > in

Re: [O] Latex code blocks HTML export still broken

2016-12-01 Thread Nick Dokos
Éric Würbel writes: > When trying to export to html with C-c C-e h h, org complains : > > org-compile-file: File "/tmp/babel-2370po9/latex-237073Q.pdf" wasn't > produced. See "*Org PDF LaTeX Output*" for details > What does that buffer show? > In fact the file is

Re: [O] Citation syntax: now supported in Pandoc

2016-12-01 Thread Julian M. Burgos
This is very interesting! I will give it a try. Thanks for the heads up. Richard Lawrence writes: > Hi everyone, > > With Org 9.0 out, I thought it might be a good time to revisit the issue > of citation syntax. Not much has happened with this recently, but I do > have one bit of progress to

Re: [O] Latex code blocks HTML export still broken

2016-12-01 Thread Nick Dokos
Éric Würbel writes: > When exporting a latex code block as a png image in an HTML page, Org > complains that the pdf file was not produced. > > Minimal org document example : > > #+BEGIN_SRC org > #+TITLE LaTeX export minimal test > > * Let's go > > A really

Re: [O] dynamically set face [was: semi-visible stars?]

2016-12-01 Thread John Kitchin
Try: `background light)) (:foreground ,(format (face-attribute 'default :background)) )) (((background dark)) (:foreground ,(format (face-attribute 'default :background) Note the backtick and the commas. The functions in your list are treated like data and not evaluated. The

Re: [O] Bug: Latex preview overlay scaling not consistent across PPI

2016-12-01 Thread Nicolas Goaziou
Hello, Scott Otterson writes: > I'd like to test your fix but I'm a github newbie (*). Org main repository is not in github. > Where did you check it in? In "maint" branch of our repository. > I don't know if it's melpa or elpa, or if the fix is in a personal > account

Re: [O] Citation syntax: now supported in Pandoc

2016-12-01 Thread Richard Lawrence
Hi Matt, Matt Price writes: > Richard, is wip-cite up to date with recent git versions of org-mode? Nope. At least, I have not done any work on this, and I don't know of anyone else who has either. I suppose I should rebase it onto master again, but it's hard to justify

Re: [O] Citation syntax: now supported in Pandoc

2016-12-01 Thread Nicolas Goaziou
Hello, Richard Lawrence writes: > Matt Price writes: > >> Richard, is wip-cite up to date with recent git versions of org-mode? > > Nope. At least, I have not done any work on this, and I don't know of > anyone else who has either. I suppose

Re: [O] latex export: can I add an optional argument to an item?

2016-12-01 Thread Richard Lawrence
Hi Alan, Alan Schmitt writes: > I would like to generate the following latex export: > > \begin{itemize} > \item[\Checkmark] foo > \end{itemize} It's not exactly pretty, but you can use a description list while resetting it to the itemize environment, like:

[O] Make wide tables more readable

2016-12-01 Thread David Talmage
I'm looking for ways to make a wide table more readable. My motivation is from a table that is too wide to fit on my screen. I need to be able to see all of the contents of a cell. If it were just text, I'd use M-q (fill-paragraph). I've already tried org-table-wrap-region and couldn't figure

[O] dynamically set face [was: semi-visible stars?]

2016-12-01 Thread Matt Price
On Thu, Dec 1, 2016 at 10:22 AM, Matt Price wrote: > > > On Wed, Nov 30, 2016 at 3:41 PM, Matt Price wrote: > >> I have been fooling around a little bit with color-themes and also the >> new emacs 24+ custom themes, and find that (perhaps because of using

Re: [O] Make wide tables more readable

2016-12-01 Thread Clément Pit--Claudel
On Thu, Dec 1, 2016 at 3:43 PM, Joost Kremers wrote: > Why not use `text-scale-adjust`? On 2016-12-01 16:12, John Kitchin wrote: > If I had to guess its because I was unaware of that command when I wrote > those functions ;) Note that these two don't do the same thing. Text-scale-adjust

Re: [O] Make wide tables more readable

2016-12-01 Thread John Kitchin
I use: ;;;###autoload (defun tq-increase-text-size () "Increase text size." (interactive) (set-face-attribute 'default nil :height (truncate (* 1.1 (face-attribute 'default :height) ;;;###autoload (defun tq-decrease-text-size () "Decrease text size." (interactive)

Re: [O] Make wide tables more readable

2016-12-01 Thread Joost Kremers
On Thu, Dec 01 2016, John Kitchin wrote: I use: ;;;###autoload (defun tq-increase-text-size () "Increase text size." (interactive) (set-face-attribute 'default nil :height (truncate (* 1.1 (face-attribute 'default :height) ;;;###autoload (defun tq-decrease-text-size ()

Re: [O] Make wide tables more readable

2016-12-01 Thread John Kitchin
If I had to guess its because I was unaware of that command when I wrote those functions ;) John --- Professor John Kitchin Doherty Hall A207F Department of Chemical Engineering Carnegie Mellon University Pittsburgh, PA 15213 412-268-7803 @johnkitchin

Re: [O] Citation syntax: now supported in Pandoc

2016-12-01 Thread Richard Lawrence
Hi Nicolas, Nicolas Goaziou writes: > I rebased wip-cite onto master. I didn't test the branch but "make test" > reports no problem. Great, thanks! I guess this does not include the preliminary work on the org-cite library (from Aaron Ecay's wip-cite-awe branch), or

Re: [O] Make wide tables more readable

2016-12-01 Thread David Talmage
On Thu, Dec 1, 2016 at 3:17 PM, David Talmage wrote: > ... > (fill-paragraph). I've already tried org-table-wrap-region and couldn't > figure it out. > I figured out org-table-wrap-region. Most of the time it works as expected. Sometimes it puts text cells below

[O] v9.0 ignores org-export-babel-evaluate

2016-12-01 Thread Alexander Vorobiev
I noticed this happening with R source code blocks after the upgrade. The simple example is below. The resulting html file has different time in the "Time" section than the org file. Reverting to 8.3.6 fixes the issue. Thanks, Alex * Environment #+begin_src emacs-lisp :exports both :results

Re: [O] v9.0 ignores org-export-babel-evaluate

2016-12-01 Thread Charles C. Berry
On Thu, 1 Dec 2016, Alexander Vorobiev wrote: I noticed this happening with R source code blocks after the upgrade. This should be fixed in master. But use `org-export-use-babel' instead as `org-export-babel-evaluate' is obsolete. Chuck

Re: [O] fuzzy matching of parameters

2016-12-01 Thread Charles C. Berry
On Thu, 1 Dec 2016, Matt Price wrote: I have just done something I'm very excited about. Given a directory name (the variable ~assignment~ in this case) and a list of student info, search through the directory for files whose names contain the student names, and attach those to newly created

[O] fuzzy matching of parameters

2016-12-01 Thread Matt Price
I have just done something I'm very excited about. Given a directory name (the variable ~assignment~ in this case) and a list of student info, search through the directory for files whose names contain the student names, and attach those to newly created subtrees. Before now, manually attaching

[O] latex export: can I add an optional argument to an item?

2016-12-01 Thread Alan Schmitt
Hello, I would like to generate the following latex export: \begin{itemize} \item[\Checkmark] foo \end{itemize} I tried both -[\Checkmark] and - [\Checkmark] but neither works. Is this possible with org-mode? Best, Alan -- OpenPGP Key ID : 040D0A3B4ED2E5C7 Monthly Athmospheric CO₂,

[O] Latex code blocks HTML export still broken

2016-12-01 Thread Éric Würbel
When exporting a latex code block as a png image in an HTML page, Org complains that the pdf file was not produced. Minimal org document example : #+BEGIN_SRC org #+TITLE LaTeX export minimal test * Let's go A really interresting algorithm : #+header: :headers '(

[O] Add preamble support to ob-plantuml.el

2016-12-01 Thread Thibault Marin
Hi list, I am attaching a patch adding support for preamble commands to ob-plantuml.el. The string content of the `org-plantuml-preamble' variable is added at the beginning of each source block before execution (after the "@startuml" string). Does this look like this could be merged? Please