* #+include vs. resizing & centrering
@ 2022-03-30 9:07 Guillaume MULLER
2022-03-30 9:26 ` #+include vs. resizing & centrering [SOLUTION] Guillaume MULLER
0 siblings, 1 reply; 2+ messages in thread
From: Guillaume MULLER @ 2022-03-30 9:07 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1.1: Type: text/plain, Size: 1320 bytes --]
Dear all,
Thanks for org-mode, it is so perfect :)
I'm currently fighting with a problem that I cannot find a solution to (either on my own or with help on the web). If someone could help me, I would be very thankful.
I have an org-mode file that "includes" ane xternally generated image, like so:
#+INCLUDE: ./test.dot src dot :file test.png
The thing is the resulting image is too big. So I want to resize it.
I've tried several things that did not work:
- add #+ATTR_LATEX: :width xxx before the #+INCLUDE
- add :width xxx or :scale xxx on the #+INCLUDE line itself
- ...
Thus I resolved to use plain LaTeX code with something like:
#+LATEX: \center \scalebox{.85}{%
#+INCLUDE: ./test.dot src dot :file test.png
#+LATEX: }
Then the problem is that #+INCLUDE adds a \begin{center}\end{center} around the image inclusion, and \scalebox{} does not like that, making the resulting .tex file not compile ("perhaps missing \item").
Again, I've tried several unsuccessful things :
- add #+ATTR_LATEX: :center nil before the #+INCLUDE
- add :center nil on the #+INCLUDE line itself
- ...
If anyone has an idea how a can solve the problem of resizing a #+INCLUDE'd image, either in plain org or with a LaTeX "warkaround", I would be very grateful.
Thanks !
Guillaume MULLER, PhD
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 236 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: #+include vs. resizing & centrering [SOLUTION]
2022-03-30 9:07 #+include vs. resizing & centrering Guillaume MULLER
@ 2022-03-30 9:26 ` Guillaume MULLER
0 siblings, 0 replies; 2+ messages in thread
From: Guillaume MULLER @ 2022-03-30 9:26 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1.1: Type: text/plain, Size: 1827 bytes --]
Sorry, I finally found a solution by myself :)
Using a minipage instead of a scalebox tolerates the \begin{center} that is automatically inserted:
#+LATEX: \center \begin{minipage}[c]{.85\textwidth}
#+INCLUDE: ./test.dot src dot :file test.png
#+LATEX: \end{minipage}
However, if someone has a pure/clean org-mode solution, I would love to learn it :)
On 3/30/22 11:07, Guillaume MULLER wrote:
> Dear all,
>
> Thanks for org-mode, it is so perfect :)
>
> I'm currently fighting with a problem that I cannot find a solution to (either on my own or with help on the web). If someone could help me, I would be very thankful.
>
> I have an org-mode file that "includes" ane xternally generated image, like so:
>
> #+INCLUDE: ./test.dot src dot :file test.png
>
> The thing is the resulting image is too big. So I want to resize it.
>
> I've tried several things that did not work:
> - add #+ATTR_LATEX: :width xxx before the #+INCLUDE
> - add :width xxx or :scale xxx on the #+INCLUDE line itself
> - ...
>
> Thus I resolved to use plain LaTeX code with something like:
> #+LATEX: \center \scalebox{.85}{%
> #+INCLUDE: ./test.dot src dot :file test.png
> #+LATEX: }
>
> Then the problem is that #+INCLUDE adds a \begin{center}\end{center} around the image inclusion, and \scalebox{} does not like that, making the resulting .tex file not compile ("perhaps missing \item").
>
> Again, I've tried several unsuccessful things :
> - add #+ATTR_LATEX: :center nil before the #+INCLUDE
> - add :center nil on the #+INCLUDE line itself
> - ...
>
> If anyone has an idea how a can solve the problem of resizing a #+INCLUDE'd image, either in plain org or with a LaTeX "warkaround", I would be very grateful.
>
> Thanks !
>
> Guillaume MULLER, PhD
--
Guillaume MULLER, PhD
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 236 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-03-30 9:28 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-30 9:07 #+include vs. resizing & centrering Guillaume MULLER
2022-03-30 9:26 ` #+include vs. resizing & centrering [SOLUTION] Guillaume MULLER
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).