emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Feature suggestion
@ 2011-11-06 11:41 Markus Grebenstein
  2011-11-06 22:04 ` Herbert Sitz
  0 siblings, 1 reply; 7+ messages in thread
From: Markus Grebenstein @ 2011-11-06 11:41 UTC (permalink / raw)
  To: emacs-orgmode

Dear community,

since I used Scrivener (Windows Beta) quite a while I'd love to have 
more of fletcher penny's multimarkdown (or MMD- like Syntax) integrated 
in orgmode to make it more versatile. Sadly I am not a lisp programmer 
at all...

Best Markus

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Feature suggestion
  2011-11-06 11:41 Markus Grebenstein
@ 2011-11-06 22:04 ` Herbert Sitz
  0 siblings, 0 replies; 7+ messages in thread
From: Herbert Sitz @ 2011-11-06 22:04 UTC (permalink / raw)
  To: emacs-orgmode

Markus Grebenstein <post <at> mgrebenstein.de> writes:
> 
> since I used Scrivener (Windows Beta) quite a while I'd love to have 
> more of fletcher penny's multimarkdown (or MMD- like Syntax) integrated 
> in orgmode to make it more versatile. Sadly I am not a lisp programmer 
> at all...
> 

Markus --

What exactly are the features you're thinking about?

For example, I read this at the MMD site, but virtually all of these
are already implemented in Org-mode:
--------------------------------------------
MultiMarkdown adds these features to the basic Markdown syntax:

    footnotes
    tables
    citations and bibliography (works best in LaTeX using BibTeX)
    math support
    automatic cross-referencing ability
    smart typography, with support for multiple languages
    image attributes
    table and image captions
    definition lists
    glossary entries (LaTeX only)
    document metadata (e.g. title, author, etc.)
------------------------------------------
http://fletcherpenney.net/multimarkdown/features/

Regards,

Herb

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Feature suggestion
@ 2011-11-28 14:53 Markus Grebenstein
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Grebenstein @ 2011-11-28 14:53 UTC (permalink / raw)
  To: emacs-orgmode

I'd especially would love to be able to use Markdown to write
equations which -to me- is much more comfortable than writing latex
equations. Second I'd love to be able to export to MMD when I run into
problems with the latex exporter (I had plenty!). Third in my eyes it
would be nice to have as few markdown syntaxes as possible (I know
that is kind of a dream ;-)).

Best Markus


--
Markus Grebenstein
Herrnstraße 15
80539 Muenchen
Tel. 089/62509834

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Feature suggestion
@ 2012-01-02  2:22 York Zhao
  2012-01-02 14:53 ` Bastien
  0 siblings, 1 reply; 7+ messages in thread
From: York Zhao @ 2012-01-02  2:22 UTC (permalink / raw)
  To: emacs-orgmode

Hi,

May I suggest a feature that when the point is inside a TeX source block and
"C-c C-c" is pressed, instead of showing the error "No org-babel-execute
function for tex!", can we process the current tex block to output the dvi or
pdf file?

Thanks,

York

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Feature suggestion
  2012-01-02  2:22 York Zhao
@ 2012-01-02 14:53 ` Bastien
  2012-01-02 15:40   ` York Zhao
  0 siblings, 1 reply; 7+ messages in thread
From: Bastien @ 2012-01-02 14:53 UTC (permalink / raw)
  To: York Zhao; +Cc: emacs-orgmode

Hi York,

York Zhao <gtdplatform@gmail.com> writes:

> May I suggest a feature that when the point is inside a TeX source block and
> "C-c C-c" is pressed, instead of showing the error "No org-babel-execute
> function for tex!", can we process the current tex block to output the dvi or
> pdf file?

I'd rather define a org-babel-execute:tex function for that. 

Maybe look at org-babel-execute:* functions and suggest one?

Thanks!

-- 
 Bastien

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Feature suggestion
  2012-01-02 14:53 ` Bastien
@ 2012-01-02 15:40   ` York Zhao
  2012-01-02 18:06     ` Bastien
  0 siblings, 1 reply; 7+ messages in thread
From: York Zhao @ 2012-01-02 15:40 UTC (permalink / raw)
  To: Bastien; +Cc: emacs-orgmode

> York Zhao <gtdplatform@gmail.com> writes:
>
>> May I suggest a feature that when the point is inside a TeX source block and
>> "C-c C-c" is pressed, instead of showing the error "No org-babel-execute
>> function for tex!", can we process the current tex block to output the dvi or
>> pdf file?
>
> I'd rather define a org-babel-execute:tex function for that.
>
> Maybe look at org-babel-execute:* functions and suggest one?
>
> Thanks!

Hi Bastien,

I think this is a good idea. By `org-babel-execute:tex' do you mean
`org-babel-execute-tex'?


York

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Feature suggestion
  2012-01-02 15:40   ` York Zhao
@ 2012-01-02 18:06     ` Bastien
  0 siblings, 0 replies; 7+ messages in thread
From: Bastien @ 2012-01-02 18:06 UTC (permalink / raw)
  To: York Zhao; +Cc: emacs-orgmode

Hi York,

York Zhao <gtdplatform@gmail.com> writes:

> I think this is a good idea. By `org-babel-execute:tex' do you mean
> `org-babel-execute-tex'?

No, I mean org-babel-execute:tex.

There is a whole family of Babel functions that let C-c C-c act 
upon a source block, with respect to the langage used.

Do `C-h f org-babel-execute: TAB' to see the list of available
function for your configuration.

Then you can pick up a langage you are familiar with in this 
list, jump to the Emacs lisp function and start getting familiar
with the code to write your own org-babel-execute:tex function.

But wait, there is already org-babel-execute:latex, so I think 
part of the problem is already solved.

Good exploration,

-- 
 Bastien

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2012-01-02 18:05 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-11-28 14:53 Feature suggestion Markus Grebenstein
  -- strict thread matches above, loose matches on Subject: below --
2012-01-02  2:22 York Zhao
2012-01-02 14:53 ` Bastien
2012-01-02 15:40   ` York Zhao
2012-01-02 18:06     ` Bastien
2011-11-06 11:41 Markus Grebenstein
2011-11-06 22:04 ` Herbert Sitz

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).