Re: [O] porting guide from old to new beamer export?

2015-09-01 Thread Joseph Vidal-Rosset
2015-08-31 10:32 GMT+02:00 Loris Bennett : > #+BEAMER_THEME: CambridgeUS > > If that doesn't work, you should post a minimal working example which > illustrates the problem. > I must say to the list that the code that solves my problem is given in Eric Fraga's

Re: [O] Bug: Can't export subtree with links to headlines outside of the subtree [8.3.1 (8.3.1-95-g1dbb25-elpa)]

2015-09-01 Thread Nicolas Goaziou
Hello, Michael Behr writes: > I want to export a subtree of a file, but that subtree has links to > headings in the file that are outside of the subtree. I expect the > exporting process to produce some sort of valid result, but instead it > throws an "Unable to resolve link"

Re: [O] Bug: Can't export subtree with links to headlines outside of the subtree [8.3.1 (8.3.1-95-g1dbb25-elpa)]

2015-09-01 Thread Marcin Borkowski
On 2015-09-01, at 20:14, Michael Behr wrote: > I want to export a subtree of a file, but that subtree has links to > headings in the file that are outside of the subtree. I expect the > exporting process to produce some sort of valid result, but instead it > throws an "Unable

[O] Bug: Can't export subtree with links to headlines outside of the subtree [8.3.1 (8.3.1-95-g1dbb25-elpa)]

2015-09-01 Thread Michael Behr
I want to export a subtree of a file, but that subtree has links to headings in the file that are outside of the subtree. I expect the exporting process to produce some sort of valid result, but instead it throws an "Unable to resolve link" error. Here's a test file to reproduce: * Foo * Bar

Re: [O] Default html export css styles?

2015-09-01 Thread Lawrence Bottorff
So this default stuff is located in ox-html.el I'm guessing. If I wanted to override the default behavior of putting a border and a gray bar around a source code block, there really isn't a specific Org Export HTML customization entry for that. I'd just have to figure out how to override the

Re: [O] Bug: Can't export subtree with links to headlines outside of the subtree [8.3.1 (8.3.1-95-g1dbb25-elpa)]

2015-09-01 Thread Nicolas Goaziou
Michael Behr writes: > My use case is a large file of notes that I want to typeset frequently as I > update it, so that won't work for me unless there's an easy way to pass a > filtered version of the file to the exporter. There are hooks, e.g.

Re: [O] Default html export css styles?

2015-09-01 Thread Thomas S . Dye
Lawrence Bottorff writes: > So this default stuff is located in ox-html.el I'm guessing. If I wanted to > override the default behavior of putting a border and a gray bar around a > source code block, there really isn't a specific Org Export HTML > customization entry for

Re: [O] porting guide from old to new beamer export?

2015-09-01 Thread Marko Schütz-Schmuck
Suvayu Ali writes: [..] > latex:\hoareTriple{V}{\(\textmath{merge}\) latex:}{P} > > See the help string for org-export-snippet-translation-alist. > > Hope this helps, Yes!! It does help a lot! Thank you very much. Best regards, Marko

Re: [O] Bug: Can't export subtree with links to headlines outside of the subtree [8.3.1 (8.3.1-95-g1dbb25-elpa)]

2015-09-01 Thread Michael Behr
My use case is a large file of notes that I want to typeset frequently as I update it, so that won't work for me unless there's an easy way to pass a filtered version of the file to the exporter. Personally I'd prefer a customization option to change this behavior, but if that's not doable I'll

Re: [O] [PATCH] org-mime: make plain/text mime export a choice

2015-09-01 Thread Nicolas Goaziou
Eric Abrahamsen writes: > I agree 'org is pretty useless. But couldn't we just allow any symbol, > and let the export process blow up if an invalid symbol is given? Not if we allow latin1 or utf-8 as values, which are not valid export back-ends. Otherwise, I do not

Re: [O] Default html export css styles?

2015-09-01 Thread Scott Randby
On 09/01/2015 11:52 AM, Lawrence Bottorff wrote: When I do an HTML export of my org buffer, it produces a default css section in the head:

Re: [O] Default html export css styles?

2015-09-01 Thread Eric S Fraga
On Tuesday, 1 Sep 2015 at 15:52, Lawrence Bottorff wrote: > When I do an HTML export of my org buffer, it produces a default css > section in the head: [...] > What is producing this default css styling and how can I change it directly? It's a constant, ~org-html-style-default~, defined in

Re: [O] gnuplot: plotting students' progress of grades

2015-09-01 Thread Robert Klein
Hi, Tobias Frischholz wrote: > Hi List, > > I have a table in org which looks like this (student’s grades): > [s.d.] > I would like to use gnuplot to show me a line graph of each student’s > single grades in order to resemble their progress during the school > year. Can

Re: [O] porting guide from old to new beamer export?

2015-09-01 Thread Suvayu Ali
On Tue, Sep 01, 2015 at 12:19:32AM +, Marko Schütz-Schmuck wrote: > Suvayu Ali writes: > > > > > On Mon, Aug 31, 2015 at 05:23:52PM +, Marko Schütz-Schmuck wrote: > > > > > > Thanks for the link. I had used all of the documentation that are > > >

Re: [O] gnuplot: plotting students' progress of grades

2015-09-01 Thread Loris Bennett
Hi Tobias, Tobias Frischholz writes: > Hi List, > > I have a table in org which looks like this (student’s grades): > > |---++++++++++++++-| > | | Schüler |

Re: [O] can't assign to hline relative reference

2015-09-01 Thread Nicolas Goaziou
Hello, Luke Swart writes: > There seems to be an error when using hline-relative references in an > org-mode table’s formula. For example, I have the following org-mode table: > > #+BEGIN: columnview :hlines 1 :id global > | /Project/ | Mon | Tue | Wed | Thu

Re: [O] [PATCH] org-mime: make plain/text mime export a choice

2015-09-01 Thread Nicolas Goaziou
Hello, Jon Miller writes: > Update to how org-mime constructs emails for the plain/text section of the > mime email. I've found that using the 'ascii exporter produces a saner > plain/text section than using the 'org exporter. Added a new custom variable > to control which

Re: [O] refile whole files as headings?

2015-09-01 Thread Matt Price
Thank you so much Nick! I am terrible with sed and with pipes, and ended up having two problems when trying to use this code with sed; I ended up modifying it to the following: for f in *.org; do echo "* $f" >> allofem.org # cat $f cat $f | sed 's/^\*/**/' >> allofem.org done not as

Re: [O] [PATCH] org-mime: make plain/text mime export a choice

2015-09-01 Thread Eric Abrahamsen
Nicolas Goaziou writes: > Eric Abrahamsen writes: > >> I agree 'org is pretty useless. But couldn't we just allow any symbol, >> and let the export process blow up if an invalid symbol is given? > > Not if we allow latin1 or utf-8 as values,

Re: [O] refile whole files as headings?

2015-09-01 Thread Nick Dokos
Matt Price writes: > Thank you so much Nick! > > I am terrible with sed and with pipes, and ended up having two problems when > trying to use this code with sed; I ended up modifying it to the following: > > for f in *.org; do >     echo "* $f" >> allofem.org >     # cat $f

Re: [O] students, classes, assignments...

2015-09-01 Thread John Kitchin
scraw...@gmail.com writes: > On Tue, Sep 01, 2015 at 06:13:00AM -0400, John Kitchin wrote: >> It depends a lot on what you want to be able to do. Do you need reports >> of what is completed? aggregated grades, etc... >> >> Here is what I do: https://www.youtube.com/watch?v=cRUCiF2MwP4 >> >> Here

Re: [O] students, classes, assignments...

2015-09-01 Thread scrawler
On Tue, Sep 01, 2015 at 06:13:00AM -0400, John Kitchin wrote: > It depends a lot on what you want to be able to do. Do you need reports > of what is completed? aggregated grades, etc... > > Here is what I do: https://www.youtube.com/watch?v=cRUCiF2MwP4 > > Here is a talk I gave last year on

Re: [O] caption inside threeparttable

2015-09-01 Thread Vikas Rawal
> > Hi, > > Vikas Rawal writes: > >> I have a table like below. How can I get the caption inside >> threeparttable? Keeping caption outside threeparttable makes it go >> wider than the table width. > > Next time please also include desired output. > > Anyway

Re: [O] [PATCH] org-mime: make plain/text mime export a choice

2015-09-01 Thread Jon Miller
Jon Miller writes: > Nicolas Goaziou writes: > >> Hello, >> >> Jon Miller writes: >> >>> Update to how org-mime constructs emails for the plain/text section of the >>> mime email. I've found that using the 'ascii exporter produces a saner >>> plain/text section than using

Re: [O] refile whole files as headings?

2015-09-01 Thread Nick Dokos
Matt Price writes: > I am reorganizing my courses, consolidating many short files into longer > ones. So, for instance, I have > a directory like: > > ✗ ls Assignments > > ClassProjectGuidelines.org > course-blog.org > essay-assignment.org > ProjectProposal.org >

[O] Fwd: can't assign to hline relative reference

2015-09-01 Thread Luke Swart
I am re-sending because I didn't include everyone on the original message. -- Forwarded message -- From: Luke Swart Date: Tue, Sep 1, 2015 at 1:10 AM Subject: Re: can't assign to hline relative reference To: Luke Swart ,

Re: [O] Exporting an org-file to multiple html pages

2015-09-01 Thread Marcin Borkowski
On 2015-09-01, at 11:07, Jarmo Hurri wrote: > Marcin Borkowski writes: > >>> I am writing a relatively extensive document in org, and I am >>> currently trying to figure out how to split the exported html into >>> multiple html pages. > >> Does this help? >>

Re: [O] Very slow execution, tangling and export with noweb and quick-and-dirty

2015-09-01 Thread Rainer M Krug
Rainer M Krug writes: > Hi > > I have a rather extensive literate programming document with several > hundred code blocks. In two subtrees, I use :noweb. Each of these has one > noweb block which is located onder the first level header, and used several > times in the

Re: [O] Very slow execution, tangling and export with noweb and quick-and-dirty

2015-09-01 Thread Sebastien Vauban
Rainer M Krug writes: > Rainer M Krug writes: >> I have a rather extensive literate programming document with several >> hundred code blocks. In two subtrees, I use :noweb. Each of these has >> one noweb block which is located onder the first level header, and

Re: [O] [PATCH] org-mime: make plain/text mime export a choice

2015-09-01 Thread Eric Abrahamsen
Nicolas Goaziou writes: > Hello, > > Jon Miller writes: > >> Update to how org-mime constructs emails for the plain/text section of the >> mime email. I've found that using the 'ascii exporter produces a saner >> plain/text section than using the 'org

Re: [O] can't assign to hline relative reference

2015-09-01 Thread Luke Swart
Hi Nicolas Goaziou, Thanks very much for your clarification: hline relative references are not allowed on the left hand side of a formula My error message was user-error: Can't assign to hline relative reference, which now makes sense. Still, a lot of folks didn’t understand the original

Re: [O] exporting multiple choice questions to Aiken or GIFT formats?

2015-09-01 Thread Eric S Fraga
On Monday, 31 Aug 2015 at 18:17, Marcin Borkowski wrote: > I hope people liked it. One of the good things that > resulted from it was a short discussion, whose conclusion was an idea > to write a series of blog posts explaining one of the Org exporters in > detail. (Since I know LaTeX fairly

Re: [O] Exporting an org-file to multiple html pages

2015-09-01 Thread Fabrice Popineau
If you want a fancier solution : http://renard.github.io/o-blog-v2/ It works pretty well. Fabrice 2015-09-01 11:07 GMT+02:00 Jarmo Hurri : > Marcin Borkowski writes: > > >> I am writing a relatively extensive document in org, and I am > >> currently trying

[O] Very slow execution, tangling and export with noweb and quick-and-dirty

2015-09-01 Thread Rainer M Krug
Hi I have a rather extensive literate programming document with several hundred code blocks. In two subtrees, I use :noweb. Each of these has one noweb block which is located onder the first level header, and used several times in the sub-sections of this tree. But even with the quick-and-dirty

Re: [O] gnuplot: plotting students' progress of grades

2015-09-01 Thread Eric S Fraga
On Tuesday, 1 Sep 2015 at 08:38, Robert Klein wrote: [...] > You can use something like this: [...] > #+begin_src gnuplot :var data=grades :file noten.png > put your gnuplot code here > #+end_src The problem for the OP will be that the data are in rows instead of columns and gnuplot will

Re: [O] students, classes, assignments...

2015-09-01 Thread John Kitchin
It depends a lot on what you want to be able to do. Do you need reports of what is completed? aggregated grades, etc... Here is what I do: https://www.youtube.com/watch?v=cRUCiF2MwP4 Here is a talk I gave last year on using it. https://www.youtube.com/watch?v=IsSMs-4GlT8=FLQp2VLAOlvq142YN3JO3y8w

Re: [O] can't assign to hline relative reference

2015-09-01 Thread Nicolas Goaziou
Luke Swart writes: > Still, I am confused because it seems like org-mode used to allow hline > references to be assigned, no? As Carsten pointed out, that was a bug, as Org couldn't expand them correctly anyway. As a consequence, an error is now thrown. Regards,

Re: [O] Exporting an org-file to multiple html pages

2015-09-01 Thread Jarmo Hurri
Marcin Borkowski writes: >> I am writing a relatively extensive document in org, and I am >> currently trying to figure out how to split the exported html into >> multiple html pages. > Does this help? > > https://github.com/mbork/org-one-to-many Greetings Marcin. Looks

Re: [O] gnuplot: plotting students' progress of grades

2015-09-01 Thread John Kitchin
You can transpose the table like this: (org-table-transpose-table-at-point) Alternatively (adapted from that code): this might get you where you need to be: #+name: my-data | 1 | 2 | 3 | 4 | | a | b | c | d | #+BEGIN_SRC emacs-lisp (defun get-transposed-table (tblname) (save-excursion

Re: [O] Very slow execution, tangling and export with noweb and quick-and-dirty

2015-09-01 Thread Rainer M Krug
Sebastien Vauban writes: > Rainer M Krug writes: >> Rainer M Krug writes: >>> I have a rather extensive literate programming document with several >>> hundred code blocks. In two subtrees, I use :noweb. Each of these has >>> one noweb

Re: [O] org-mode 3.5.1 emacs 24: invalid-functon 41

2015-09-01 Thread Martin Steffen
Hi Nicolas, and all. I recently answered to a prior suggestion concerning the cause of a problem (see below), basically I could not confirm the cause of the error. In the meantime, I had the same problem (on different computer), again with the newest org-mode with the same symptoms (org-mode

Re: [O] emacs & org mode for scholars questions

2015-09-01 Thread Erik Hetzner
Hi all, Thanks for all your responses! They were a great help when putting together my talk. I’ve posted my slides from EmacsConf 2015 here: http://www.e6h.org/talks/emacsconf-2015/index.html I think the planners are planning to post videos as soon as they can get them edited to

[O] Org-Contacts skip archived contacts

2015-09-01 Thread Tory S. Anderson
It would be useful to mark a contact as "archived" so that it won't auto-fill in an email, as when I may want to look someone up in the future but don't need to contact them now. Judging by the docstring I thought the answer would be with `org-contacts-matcher` but I can't quite make sense of

[O] refile whole files as headings?

2015-09-01 Thread Matt Price
I am reorganizing my courses, consolidating many short files into longer ones. So, for instance, I have a directory like: ✗ ls Assignments ClassProjectGuidelines.org course-blog.org essay-assignment.org ProjectProposal.org STA-01-CSS.org STA-02-wordpress-themes.org STA-03-Foundation.org

Re: [O] [PATCH] org-mime: make plain/text mime export a choice

2015-09-01 Thread Eric Abrahamsen
I agree 'org is pretty useless. But couldn't we just allow any symbol, and let the export process blow up if an invalid symbol is given? On September 1, 2015 11:26:14 PM GMT+08:00, Nicolas Goaziou wrote: >Eric Abrahamsen writes: > >> I'd say it

[O] Suggestions on sync algorithms

2015-09-01 Thread Tory S. Anderson
I'm planning to make a mode that allows me to manage my Pivotal Tracker projects from orgmode; Pivotal Tracker exposes a rich JSON API and the basic task of mapping Pivotal data types to Org syntax is conceptually straight forward. But I'm trying to decide on the best way to perform

Re: [O] Need help with HTML export custom postamble [SOLVED]

2015-09-01 Thread Nick Dokos
"David A. Gershman" writes: > *argh* I remember that variation of postamble in my readings...didn't > think to try it. Thank you!!! > > I attempted the export as well and it worked as expected. I appreciate > your patience! > > FWIW, yes, I'm on the latest Org (8.3.1)

Re: [O] caption inside threeparttable

2015-09-01 Thread Rasmus
Hi, Vikas Rawal writes: > I have a table like below. How can I get the caption inside > threeparttable? Keeping caption outside threeparttable makes it go > wider than the table width. Next time please also include desired output. Anyway try this: 0.

Re: [O] Do you like to have your TODOs at the same headline level?

2015-09-01 Thread cesar mena
i do the same; 4 char states - with box around them (setq org-todo-keyword-faces '(("TODO" . (:foreground "pink" :box (:line-width 1 :style none))) ("NEXT" . (:foreground "green" :box (:line-width 1 :style none)))

[O] caption inside threeparttable

2015-09-01 Thread Vikas Rawal
I have a table like below. How can I get the caption inside threeparttable? Keeping caption outside threeparttable makes it go wider than the table width. Vikas #+NAME: energy-cost-uk #+CAPTION: I have a long caption that is wider than the table and it goes beyond the table much to my dislike

Re: [O] caption inside threeparttable

2015-09-01 Thread Eric S Fraga
On Tuesday, 1 Sep 2015 at 18:26, Vikas Rawal wrote: > I have a table like below. How can I get the caption inside > threeparttable? Keeping caption outside threeparttable makes it go > wider than the table width. One option would be to put the table and caption within a centred minipage of the

Re: [O] [PATCH] org-mime: make plain/text mime export a choice

2015-09-01 Thread Jon Miller
Nicolas Goaziou writes: > Hello, > > Jon Miller writes: > >> Update to how org-mime constructs emails for the plain/text section of the >> mime email. I've found that using the 'ascii exporter produces a saner >> plain/text section than using the 'org exporter. Added a new

Re: [O] [bug] org-open-file: ignores browse-url settings

2015-09-01 Thread Nicolas Goaziou
Hello, Rasmus writes: > From Emacs-devel: > > From: ra...@google.com > Subject: org-open-file: ignores browse-url settings > Date: the 21st of August 2015 at 20:07 > Archived-At: > > Function

Re: [O] [PATCH] org-mime: make plain/text mime export a choice

2015-09-01 Thread Nicolas Goaziou
Eric Abrahamsen writes: > I'd say it might be nice to have the option there to customize. There > are several potential plain-text exportation options (I'd prefer utf8, > personally), and giving the user a choice seems nice Then the option could offer a choice

[O] Default html export css styles?

2015-09-01 Thread Lawrence Bottorff
When I do an HTML export of my org buffer, it produces a default css section in the head: