From: "Sebastien Vauban" <wxhgmqzgwmuf-geNee64TY+gS+FvcfC7Uqw@public.gmane.org>
To: emacs-orgmode-mXXj517/zsQ@public.gmane.org
Subject: Re: Question on LaTeX scaling of images
Date: Thu, 05 Jan 2012 09:08:34 +0100 [thread overview]
Message-ID: <80aa62mv0d.fsf@somewhere.org> (raw)
In-Reply-To: 21185.1325722786@alphaville.americas.hpqcorp.net
Hi Nick and François,
Nick Dokos wrote:
> François Pinard <pinard-CRDzTM1onBSWkKpYnGOUKg@public.gmane.org> wrote:
>> The bottom of the image is lined up with the baseline of the text (at first
>> glance at least) in the produced PDF, while in the Emacs buffer, the center
>> of the image is, which looks a bit nicer. Do we have some control over
>> this?
>
> You can do something like this:
>
> ## +BIND: org-export-latex-image-default-option ""
> #+LaTeX_HEADER: \usepackage{calc}
>
> * foo
>
> This is an inline image:
> #+LaTeX: \raisebox{-\height / 2}{\includegraphics{scomp3.png}}
> . It should not be scaled.
>
> Of course that's hardly a satisfactory state of affairs. The obvious
> way of doing it however does not work:
>
> ,----
> | #+LaTeX: \raisebox{-\height / 2}{
> | [[./scomp3.png]]
> | #+LaTeX: }
> `----
>
> The latex exporter mangles it to:
>
> ,----
> | This is an inline image:
> | \raisebox{-\height / 2}{%
> | [[./scomp3.png][./scomp3.png]]
> | }%
> | . It should not be scaled.
> `----
Using this:
#+begin_src org
## +BIND: org-export-latex-image-default-option ""
#+LaTeX_HEADER: \usepackage{calc}
* foo
This is an inline image:
#+LaTeX: \raisebox{-\height / 2}{\includegraphics{scomp3.png}}
. It should not be scaled.
#+end_src
produces that for me:
#+begin_src latex
This is an inline image:
\raisebox{-\height / 2}{\includegraphics{scomp3.png}}
. It should not be scaled.
#+end_src
So, it worked out-of-the-box.
> and I don't know any way to convince it to do it "right". Unless somebody
> can come up with such a way, the only possibility that remains is to hack
> org-latex.el.
You can try the dirty trick given by Carsten: adding `{}' in front of your
environment -- as "environments are only detected if they are the first thing
in a new line":
#+LaTeX: {}\raisebox{-\height / 2}{
See http://comments.gmane.org/gmane.emacs.orgmode/21183.
Best regards,
Seb
--
Sebastien Vauban
next prev parent reply other threads:[~2012-01-05 8:08 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-04 20:57 Question on LaTeX scaling of images François Pinard
2012-01-04 21:17 ` Nick Dokos
2012-01-04 23:18 ` François Pinard
2012-01-05 0:19 ` Nick Dokos
2012-01-05 8:08 ` Sebastien Vauban [this message]
2012-01-05 19:35 ` Nick Dokos
2012-01-05 22:04 ` Sebastien Vauban
2012-01-05 23:04 ` Nick Dokos
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=80aa62mv0d.fsf@somewhere.org \
--to=wxhgmqzgwmuf-genee64ty+gs+fvcfc7uqw@public.gmane.org \
--cc=emacs-orgmode-mXXj517/zsQ@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.