[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[O] [beamer] Code blocks in lists?
From: |
Sebastien Vauban |
Subject: |
[O] [beamer] Code blocks in lists? |
Date: |
Mon, 06 Feb 2012 13:58:49 +0100 |
User-agent: |
Gnus/5.130002 (Ma Gnus v0.2) Emacs/24.0.92 (windows-nt) |
Hello,
I've identified a couple of troubles related to code blocks inside lists (in
Beamer):
- code blocks break the list
- "relative" indentation of the code inside its frame is wrong except when
code begins at column 0: is this a requirement?
- sometimes, "ORG-LIST-END-MARKER" is exported in PDF and in HTML.
Here is an ECM to show all of the above.
For the impatient, see 2 screenshots at http://i.imgur.com/2iiWq.png.
Best regards,
Seb
--8<---------------cut here---------------start------------->8---
#+TITLE: Code blocks in lists
#+DATE: 2012-02-06
#+LANGUAGE: en
#+OPTIONS: H:3 num:t toc:nil
#+startup: beamer
#+LaTeX_CLASS: beamer
#+LaTeX_CLASS_OPTIONS: [presentation,t]
#+BEAMER_HEADER_EXTRA: \usetheme{Madrid}\usecolortheme{default}
#+BEAMER_FRAME_LEVEL: 1
#+COLUMNS: %40ITEM %10BEAMER_env(Env) %10BEAMER_envargs(Env Args)
%4BEAMER_col(Col) %8BEAMER_extra(Extra)
#+begin_latex
\definecolor{keywords}{HTML}{0000FF}
\definecolor{back}{HTML}{EFEFEF}
\definecolor{frame}{HTML}{DDDDDD}
\lstset{
basicstyle=\ttfamily\scriptsize,
keywordstyle=\color{keywords},
backgroundcolor=\color{back},
frame=single,
rulecolor=\color{frame}
}
#+end_latex
* Code in lists \\ Correct Org syntax
- This is an item
This is some text to show how it's aligned...
This is some extra text...
- This code block is properly indented in Org
#+begin_src java
if (test)
{
doit
}
#+end_src
but *no correct relative indentation* in both PDF and HTML: see the code
within its frame. There is a /left margin/ appended, not intended. Do I have
to begin *all code blocks in column 0*?
- @Without this line@, there is a @bug@: output of =ORG-LIST-END-MARKER=.
* Code in lists \\ Workarounds?
- Weird indentation in Org
#+begin_src java
if (test)
{
doit
}
#+end_src
But *correct relative indentation* of the code (in PDF and HTML) in its frame.
- Wrong indentation in Org
#+begin_src java
if (test) {doit}
#+end_src
Same (good) results regarding the relative indentation...
- In all cases, @putting code blocks seems to put an end to the list@
--8<---------------cut here---------------end--------------->8---
--
Sebastien Vauban
- [O] [beamer] Code blocks in lists?,
Sebastien Vauban <=