* #+begin_landscape#+end_landscape
@ 2013-03-26 21:32 Luke Crook
2013-03-26 21:41 ` #+begin_landscape#+end_landscape John Hendy
2013-03-26 23:36 ` #+begin_landscape#+end_landscape Charles Berry
0 siblings, 2 replies; 7+ messages in thread
From: Luke Crook @ 2013-03-26 21:32 UTC (permalink / raw)
To: emacs-orgmode
When exporting to Latex, the system used to change the paper orientation to
landscape for tables between the #+begin_landscape #+end_landscape tags.
I noticed that v7.9.3f no longer does this. Were the
#+begin_landscape/#+end_landscape tags deprecated?
Thanks,
-Luke
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: #+begin_landscape#+end_landscape
2013-03-26 21:32 #+begin_landscape#+end_landscape Luke Crook
@ 2013-03-26 21:41 ` John Hendy
2013-03-27 0:56 ` #+begin_landscape#+end_landscape Luke Crook
2013-03-26 23:36 ` #+begin_landscape#+end_landscape Charles Berry
1 sibling, 1 reply; 7+ messages in thread
From: John Hendy @ 2013-03-26 21:41 UTC (permalink / raw)
To: Luke Crook; +Cc: emacs-orgmode
On Tue, Mar 26, 2013 at 4:32 PM, Luke Crook <luke@balooga.com> wrote:
> When exporting to Latex, the system used to change the paper orientation to
> landscape for tables between the #+begin_landscape #+end_landscape tags.
>
> I noticed that v7.9.3f no longer does this. Were the
> #+begin_landscape/#+end_landscape tags deprecated?
Not sure on the exact question; in the mean time, could you use?
#+latex: \begin{landscape}
#+latex: \end{landscape}
John
>
> Thanks,
> -Luke
>
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: #+begin_landscape#+end_landscape
2013-03-26 21:32 #+begin_landscape#+end_landscape Luke Crook
2013-03-26 21:41 ` #+begin_landscape#+end_landscape John Hendy
@ 2013-03-26 23:36 ` Charles Berry
2013-03-27 1:03 ` #+begin_landscape#+end_landscape Luke Crook
2013-06-11 22:34 ` #+begin_landscape#+end_landscape Luke Crook
1 sibling, 2 replies; 7+ messages in thread
From: Charles Berry @ 2013-03-26 23:36 UTC (permalink / raw)
To: emacs-orgmode
Luke Crook <luke <at> balooga.com> writes:
>
> When exporting to Latex, the system used to change the paper orientation to
> landscape for tables between the #+begin_landscape #+end_landscape tags.
>
> I noticed that v7.9.3f no longer does this. Were the
> #+begin_landscape/#+end_landscape tags deprecated?
>
> Thanks,
> -Luke
>
>
Did you include the landscape package??
This
,----
| #+LATEX_HEADER: \usepackage{lscape}
|
| before
|
| #+begin_landscape
|
| here is some text
|
| #+end_landscape
|
| after
`----
gives me three pages using the new exporter. 'before' and 'after' in portrait
and "here is some text" in landscape.
HTH,
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: #+begin_landscape#+end_landscape
2013-03-26 21:41 ` #+begin_landscape#+end_landscape John Hendy
@ 2013-03-27 0:56 ` Luke Crook
0 siblings, 0 replies; 7+ messages in thread
From: Luke Crook @ 2013-03-27 0:56 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 917 bytes --]
This actually works. In fact, this is how I used to control table
landscape mode before changing to #+begin_landscape/#+end_landscape.
Sorry, I should have been more clear that I use the \usepackage{pdflscape}
package that actually rotates the orientation of the page to be more easily
readable in a pdf viewer.
On Tue, Mar 26, 2013 at 2:41 PM, John Hendy <jw.hendy@gmail.com> wrote:
> On Tue, Mar 26, 2013 at 4:32 PM, Luke Crook <luke@balooga.com> wrote:
> > When exporting to Latex, the system used to change the paper orientation
> to
> > landscape for tables between the #+begin_landscape #+end_landscape tags.
> >
> > I noticed that v7.9.3f no longer does this. Were the
> > #+begin_landscape/#+end_landscape tags deprecated?
>
> Not sure on the exact question; in the mean time, could you use?
>
> #+latex: \begin{landscape}
>
> #+latex: \end{landscape}
>
>
> John
>
> >
> > Thanks,
> > -Luke
> >
> >
>
[-- Attachment #2: Type: text/html, Size: 1525 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: #+begin_landscape#+end_landscape
2013-03-26 23:36 ` #+begin_landscape#+end_landscape Charles Berry
@ 2013-03-27 1:03 ` Luke Crook
2013-03-27 1:07 ` #+begin_landscape#+end_landscape Luke Crook
2013-06-11 22:34 ` #+begin_landscape#+end_landscape Luke Crook
1 sibling, 1 reply; 7+ messages in thread
From: Luke Crook @ 2013-03-27 1:03 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 1117 bytes --]
Yes, I have. In fact, lscape is what I am using.
I haven't changed the document at all, all I have done is upgrade Emacs
which comes with org-mode v7.9.3f.
In fact, I just exported the document in on a different machine that has
org-mode 7.8.11 installed, and #+begin_landscape/#+end_landscape works as
expected.
On Tue, Mar 26, 2013 at 4:36 PM, Charles Berry <ccberry@ucsd.edu> wrote:
> Luke Crook <luke <at> balooga.com> writes:
>
> >
> > When exporting to Latex, the system used to change the paper orientation
> to
> > landscape for tables between the #+begin_landscape #+end_landscape tags.
> >
> > I noticed that v7.9.3f no longer does this. Were the
> > #+begin_landscape/#+end_landscape tags deprecated?
> >
> > Thanks,
> > -Luke
> >
> >
>
> Did you include the landscape package??
>
> This
>
> ,----
> | #+LATEX_HEADER: \usepackage{lscape}
> |
> | before
> |
> | #+begin_landscape
> |
> | here is some text
> |
> | #+end_landscape
> |
> | after
> `----
>
>
> gives me three pages using the new exporter. 'before' and 'after' in
> portrait
> and "here is some text" in landscape.
>
> HTH,
>
>
>
>
>
>
[-- Attachment #2: Type: text/html, Size: 2110 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: #+begin_landscape#+end_landscape
2013-03-27 1:03 ` #+begin_landscape#+end_landscape Luke Crook
@ 2013-03-27 1:07 ` Luke Crook
0 siblings, 0 replies; 7+ messages in thread
From: Luke Crook @ 2013-03-27 1:07 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 1402 bytes --]
Sorry, pdfscape is what I am using. But I have used lscape in other docs
and #+begin_landscape/#+end_landscape does basically the same thing.
On Tue, Mar 26, 2013 at 6:03 PM, Luke Crook <luke@balooga.com> wrote:
> Yes, I have. In fact, lscape is what I am using.
>
> I haven't changed the document at all, all I have done is upgrade Emacs
> which comes with org-mode v7.9.3f.
>
> In fact, I just exported the document in on a different machine that has
> org-mode 7.8.11 installed, and #+begin_landscape/#+end_landscape works as
> expected.
>
>
>
> On Tue, Mar 26, 2013 at 4:36 PM, Charles Berry <ccberry@ucsd.edu> wrote:
>
>> Luke Crook <luke <at> balooga.com> writes:
>>
>> >
>> > When exporting to Latex, the system used to change the paper
>> orientation to
>> > landscape for tables between the #+begin_landscape #+end_landscape tags.
>> >
>> > I noticed that v7.9.3f no longer does this. Were the
>> > #+begin_landscape/#+end_landscape tags deprecated?
>> >
>> > Thanks,
>> > -Luke
>> >
>> >
>>
>> Did you include the landscape package??
>>
>> This
>>
>> ,----
>> | #+LATEX_HEADER: \usepackage{lscape}
>> |
>> | before
>> |
>> | #+begin_landscape
>> |
>> | here is some text
>> |
>> | #+end_landscape
>> |
>> | after
>> `----
>>
>>
>> gives me three pages using the new exporter. 'before' and 'after' in
>> portrait
>> and "here is some text" in landscape.
>>
>> HTH,
>>
>>
>>
>>
>>
>>
>
[-- Attachment #2: Type: text/html, Size: 2942 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: #+begin_landscape#+end_landscape
2013-03-26 23:36 ` #+begin_landscape#+end_landscape Charles Berry
2013-03-27 1:03 ` #+begin_landscape#+end_landscape Luke Crook
@ 2013-06-11 22:34 ` Luke Crook
1 sibling, 0 replies; 7+ messages in thread
From: Luke Crook @ 2013-06-11 22:34 UTC (permalink / raw)
To: emacs-orgmode
> Luke Crook <luke <at> balooga.com> writes:
>
> >
> > When exporting to Latex, the system used to change the paper orientation
to
> > landscape for tables between the #+begin_landscape #+end_landscape tags.
> >
> > I noticed that v7.9.3f no longer does this. Were the
> > #+begin_landscape/#+end_landscape tags deprecated?
Just reporting back. #+begin_landscape/#+end_landscape now work correctly in
org-mode 8.0.3.
Thank you.
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2013-06-11 22:35 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-26 21:32 #+begin_landscape#+end_landscape Luke Crook
2013-03-26 21:41 ` #+begin_landscape#+end_landscape John Hendy
2013-03-27 0:56 ` #+begin_landscape#+end_landscape Luke Crook
2013-03-26 23:36 ` #+begin_landscape#+end_landscape Charles Berry
2013-03-27 1:03 ` #+begin_landscape#+end_landscape Luke Crook
2013-03-27 1:07 ` #+begin_landscape#+end_landscape Luke Crook
2013-06-11 22:34 ` #+begin_landscape#+end_landscape Luke Crook
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).