* Two column output
@ 2013-10-14 2:15 Mehul Sanghvi
2013-10-14 2:48 ` Nick Dokos
0 siblings, 1 reply; 7+ messages in thread
From: Mehul Sanghvi @ 2013-10-14 2:15 UTC (permalink / raw)
To: ML Emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 301 bytes --]
How do I get two column output with org-mode ? I'm not looking for tables
but more like what you get in a newspaper article. Is that possible to do
with org-mode ?
For the most part this is for publishing to HTML and PDF.
cheers,
mehul
--
Mehul N. Sanghvi
email: mehul.sanghvi@gmail.com
[-- Attachment #2: Type: text/html, Size: 509 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Two column output
2013-10-14 2:15 Two column output Mehul Sanghvi
@ 2013-10-14 2:48 ` Nick Dokos
2013-10-14 3:01 ` Mehul Sanghvi
0 siblings, 1 reply; 7+ messages in thread
From: Nick Dokos @ 2013-10-14 2:48 UTC (permalink / raw)
To: emacs-orgmode
Mehul Sanghvi <mehul.sanghvi@gmail.com> writes:
> How do I get two column output with org-mode ? I'm not looking for
> tables but more like what you get in a newspaper article. Is that
> possible to do with org-mode ?
>
> For the most part this is for publishing to HTML and PDF.
>
For LaTeX/PDF, this should suffice:
#+LATEX_CLASS_OPTIONS: [twocolumn]
For HTML, I have no idea.
--
Nick
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Two column output
2013-10-14 2:48 ` Nick Dokos
@ 2013-10-14 3:01 ` Mehul Sanghvi
2013-10-14 5:29 ` Iannis Zannos
2013-10-14 13:32 ` Eric Schulte
0 siblings, 2 replies; 7+ messages in thread
From: Mehul Sanghvi @ 2013-10-14 3:01 UTC (permalink / raw)
To: Nick Dokos; +Cc: ML Emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 673 bytes --]
On Sun, Oct 13, 2013 at 10:48 PM, Nick Dokos <ndokos@gmail.com> wrote:
> Mehul Sanghvi <mehul.sanghvi@gmail.com> writes:
>
> > How do I get two column output with org-mode ? I'm not looking for
> > tables but more like what you get in a newspaper article. Is that
> > possible to do with org-mode ?
> >
> > For the most part this is for publishing to HTML and PDF.
> >
>
> For LaTeX/PDF, this should suffice:
>
> #+LATEX_CLASS_OPTIONS: [twocolumn]
>
> For HTML, I have no idea.
One of the things I would like to do is be able to have two side-by-side
source code blocks so that I can do a comparison of the two.
--
Mehul N. Sanghvi
email: mehul.sanghvi@gmail.com
[-- Attachment #2: Type: text/html, Size: 1306 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Two column output
2013-10-14 3:01 ` Mehul Sanghvi
@ 2013-10-14 5:29 ` Iannis Zannos
2013-10-14 14:00 ` Mehul Sanghvi
2013-10-14 13:32 ` Eric Schulte
1 sibling, 1 reply; 7+ messages in thread
From: Iannis Zannos @ 2013-10-14 5:29 UTC (permalink / raw)
To: Mehul Sanghvi; +Cc: Nick Dokos, ML Emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 1530 bytes --]
Hello Mehul,
for HTML you would need to find/modify/write your own css template. I find
the relatively recent Bootstrap package rather convenient for doing things
like that because it defines a grid right away out of the box and gives you
the means for defining columns and rectangular areas (boxes).
http://getbootstrap.com. See
http://getbootstrap.com/getting-started/#examples and
http://getbootstrap.com/examples/jumbotron-narrow/
There is a package integrating orgmode export with bootstrap called o-blog.
https://github.com/renard/o-blog. Here is an example of source code in a
second column next to text:
http://renard.github.io/o-blog/index.html (scroll down a little after the
large heading "Quick Start Guide").
Iannis Zannos
On Mon, Oct 14, 2013 at 6:01 AM, Mehul Sanghvi <mehul.sanghvi@gmail.com>wrote:
> On Sun, Oct 13, 2013 at 10:48 PM, Nick Dokos <ndokos@gmail.com> wrote:
>
>> Mehul Sanghvi <mehul.sanghvi@gmail.com> writes:
>>
>> > How do I get two column output with org-mode ? I'm not looking for
>> > tables but more like what you get in a newspaper article. Is that
>> > possible to do with org-mode ?
>> >
>> > For the most part this is for publishing to HTML and PDF.
>> >
>>
>> For LaTeX/PDF, this should suffice:
>>
>> #+LATEX_CLASS_OPTIONS: [twocolumn]
>>
>> For HTML, I have no idea.
>
>
>
>
> One of the things I would like to do is be able to have two side-by-side
> source code blocks so that I can do a comparison of the two.
>
>
> --
> Mehul N. Sanghvi
> email: mehul.sanghvi@gmail.com
>
[-- Attachment #2: Type: text/html, Size: 3027 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Two column output
2013-10-14 5:29 ` Iannis Zannos
@ 2013-10-14 14:00 ` Mehul Sanghvi
0 siblings, 0 replies; 7+ messages in thread
From: Mehul Sanghvi @ 2013-10-14 14:00 UTC (permalink / raw)
To: Iannis Zannos; +Cc: Nick Dokos, ML Emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 1856 bytes --]
Hi Iannis,
Thanks. This might be what I'm looking for, it certainly looks
like what I want.
cheers,
mehul
On Mon, Oct 14, 2013 at 1:29 AM, Iannis Zannos <zannos@gmail.com> wrote:
>
> Hello Mehul,
>
> for HTML you would need to find/modify/write your own css template. I find
> the relatively recent Bootstrap package rather convenient for doing things
> like that because it defines a grid right away out of the box and gives you
> the means for defining columns and rectangular areas (boxes).
> http://getbootstrap.com. See
> http://getbootstrap.com/getting-started/#examples and
> http://getbootstrap.com/examples/jumbotron-narrow/
>
> There is a package integrating orgmode export with bootstrap called
> o-blog. https://github.com/renard/o-blog. Here is an example of source
> code in a second column next to text:
> http://renard.github.io/o-blog/index.html (scroll down a little after the
> large heading "Quick Start Guide").
>
> Iannis Zannos
>
>
>
>
> On Mon, Oct 14, 2013 at 6:01 AM, Mehul Sanghvi <mehul.sanghvi@gmail.com>wrote:
>
>> On Sun, Oct 13, 2013 at 10:48 PM, Nick Dokos <ndokos@gmail.com> wrote:
>>
>>> Mehul Sanghvi <mehul.sanghvi@gmail.com> writes:
>>>
>>> > How do I get two column output with org-mode ? I'm not looking for
>>> > tables but more like what you get in a newspaper article. Is that
>>> > possible to do with org-mode ?
>>> >
>>> > For the most part this is for publishing to HTML and PDF.
>>> >
>>>
>>> For LaTeX/PDF, this should suffice:
>>>
>>> #+LATEX_CLASS_OPTIONS: [twocolumn]
>>>
>>> For HTML, I have no idea.
>>
>>
>>
>>
>> One of the things I would like to do is be able to have two side-by-side
>> source code blocks so that I can do a comparison of the two.
>>
>>
>> --
>> Mehul N. Sanghvi
>> email: mehul.sanghvi@gmail.com
>>
>
>
--
Mehul N. Sanghvi
email: mehul.sanghvi@gmail.com
[-- Attachment #2: Type: text/html, Size: 3946 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Two column output
2013-10-14 3:01 ` Mehul Sanghvi
2013-10-14 5:29 ` Iannis Zannos
@ 2013-10-14 13:32 ` Eric Schulte
2013-10-14 14:12 ` Mehul Sanghvi
1 sibling, 1 reply; 7+ messages in thread
From: Eric Schulte @ 2013-10-14 13:32 UTC (permalink / raw)
To: Mehul Sanghvi; +Cc: Nick Dokos, ML Emacs-orgmode
Mehul Sanghvi <mehul.sanghvi@gmail.com> writes:
> On Sun, Oct 13, 2013 at 10:48 PM, Nick Dokos <ndokos@gmail.com> wrote:
>
>> Mehul Sanghvi <mehul.sanghvi@gmail.com> writes:
>>
>> > How do I get two column output with org-mode ? I'm not looking for
>> > tables but more like what you get in a newspaper article. Is that
>> > possible to do with org-mode ?
>> >
>> > For the most part this is for publishing to HTML and PDF.
>> >
>>
>> For LaTeX/PDF, this should suffice:
>>
>> #+LATEX_CLASS_OPTIONS: [twocolumn]
>>
>> For HTML, I have no idea.
>
>
>
>
> One of the things I would like to do is be able to have two side-by-side
> source code blocks so that I can do a comparison of the two.
For HTML you'll want to write your own CSS. This is similar to what
you're after.
http://eschulte.github.io/org-docco/org-docco.html
--
Eric Schulte
https://cs.unm.edu/~eschulte
PGP: 0x614CA05D
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Two column output
2013-10-14 13:32 ` Eric Schulte
@ 2013-10-14 14:12 ` Mehul Sanghvi
0 siblings, 0 replies; 7+ messages in thread
From: Mehul Sanghvi @ 2013-10-14 14:12 UTC (permalink / raw)
To: Eric Schulte; +Cc: Nick Dokos, ML Emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 1237 bytes --]
This looks good as well. I'm going to play around with this and what
Iannis suggested about using Bootstrap and o-blog.
cheers,
mehul
On Mon, Oct 14, 2013 at 9:32 AM, Eric Schulte <schulte.eric@gmail.com>wrote:
> Mehul Sanghvi <mehul.sanghvi@gmail.com> writes:
>
> > On Sun, Oct 13, 2013 at 10:48 PM, Nick Dokos <ndokos@gmail.com> wrote:
> >
> >> Mehul Sanghvi <mehul.sanghvi@gmail.com> writes:
> >>
> >> > How do I get two column output with org-mode ? I'm not looking for
> >> > tables but more like what you get in a newspaper article. Is that
> >> > possible to do with org-mode ?
> >> >
> >> > For the most part this is for publishing to HTML and PDF.
> >> >
> >>
> >> For LaTeX/PDF, this should suffice:
> >>
> >> #+LATEX_CLASS_OPTIONS: [twocolumn]
> >>
> >> For HTML, I have no idea.
> >
> >
> >
> >
> > One of the things I would like to do is be able to have two side-by-side
> > source code blocks so that I can do a comparison of the two.
>
> For HTML you'll want to write your own CSS. This is similar to what
> you're after.
>
> http://eschulte.github.io/org-docco/org-docco.html
>
> --
> Eric Schulte
> https://cs.unm.edu/~eschulte
> PGP: 0x614CA05D
>
--
Mehul N. Sanghvi
email: mehul.sanghvi@gmail.com
[-- Attachment #2: Type: text/html, Size: 2353 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2013-10-14 14:12 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-14 2:15 Two column output Mehul Sanghvi
2013-10-14 2:48 ` Nick Dokos
2013-10-14 3:01 ` Mehul Sanghvi
2013-10-14 5:29 ` Iannis Zannos
2013-10-14 14:00 ` Mehul Sanghvi
2013-10-14 13:32 ` Eric Schulte
2013-10-14 14:12 ` Mehul Sanghvi
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.