emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* how to change the resizebox for a generated tikz diagram?
@ 2016-02-23 10:37 Alan Schmitt
  2016-02-24  7:51 ` Alan Schmitt
  0 siblings, 1 reply; 2+ messages in thread
From: Alan Schmitt @ 2016-02-23 10:37 UTC (permalink / raw)
  To: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 1358 bytes --]

Hello,

When exporting this source block to beamer

#+header: :file (by-backend (beamer "foldleft.tikz") (t "foldleft.png"))
#+header: :imagemagick yes :iminoptions -density 600 :imoutoptions -geometry 800
#+header: :results file raw
#+header: :headers '("\\usepackage{tikz}")
#+begin_src latex
\usetikzlibrary{matrix,arrows}
\begin{tikzpicture}[scale=2, every node/.style={transform shape}]
\matrix (m) [matrix of nodes, row sep=2em, column sep=3em]
{ & $[x_1;$ & $x_2;$ & $\ldots;$ & $x_n]$ & \\
  $acc$ & \node (f1) [circle, draw] {$f$}; & \node (f2) [circle,draw] {$f$}; & & \node (fn) [circle,draw] {$f$}; & \texttt{fold\_left } $f$ \; $acc$ \; $[x_1; x_2; \ldots; x_n]$\\
};
\draw (m-2-1) edge[->,thick] (f1);
\draw (f1) edge[->,thick] (f2);
\draw (f2) edge[->,thick,dotted] (fn);
\draw (fn) edge[->,thick] (m-2-6);
\draw (m-1-2) edge[->,thick] (f1);
\draw (m-1-3) edge[->,thick] (f2);
\draw (m-1-5) edge[->,thick] (fn);
\end{tikzpicture}
#+end_src

I get the following

 \resizebox{.9\linewidth}{!}{\input{foldleft.tikz}}

How can I change the parameter of the resizebox command? I tried adding
a line
#+attr_latex :width \linewidth
as I usually do for images, but it is not taken into account.

Thanks,

Alan

-- 
OpenPGP Key ID : 040D0A3B4ED2E5C7
Monthly Athmospheric CO₂ (2016-01, Mauna Loa Obs.): 402.52

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 472 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: how to change the resizebox for a generated tikz diagram?
  2016-02-23 10:37 how to change the resizebox for a generated tikz diagram? Alan Schmitt
@ 2016-02-24  7:51 ` Alan Schmitt
  0 siblings, 0 replies; 2+ messages in thread
From: Alan Schmitt @ 2016-02-24  7:51 UTC (permalink / raw)
  To: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 1682 bytes --]

Hello,

On 2016-02-23 11:37, Alan Schmitt <alan.schmitt@polytechnique.org> writes:

> When exporting this source block to beamer
>
> #+header: :file (by-backend (beamer "foldleft.tikz") (t "foldleft.png"))
> #+header: :imagemagick yes :iminoptions -density 600 :imoutoptions -geometry 800
> #+header: :results file raw
> #+header: :headers '("\\usepackage{tikz}")
> #+begin_src latex
> \usetikzlibrary{matrix,arrows}
> \begin{tikzpicture}[scale=2, every node/.style={transform shape}]
> \matrix (m) [matrix of nodes, row sep=2em, column sep=3em]
> { & $[x_1;$ & $x_2;$ & $\ldots;$ & $x_n]$ & \\
>   $acc$ & \node (f1) [circle, draw] {$f$}; & \node (f2) [circle,draw] {$f$}; & & \node (fn) [circle,draw] {$f$}; & \texttt{fold\_left } $f$ \; $acc$ \; $[x_1; x_2; \ldots; x_n]$\\
> };
> \draw (m-2-1) edge[->,thick] (f1);
> \draw (f1) edge[->,thick] (f2);
> \draw (f2) edge[->,thick,dotted] (fn);
> \draw (fn) edge[->,thick] (m-2-6);
> \draw (m-1-2) edge[->,thick] (f1);
> \draw (m-1-3) edge[->,thick] (f2);
> \draw (m-1-5) edge[->,thick] (fn);
> \end{tikzpicture}
> #+end_src
>
> I get the following
>
>  \resizebox{.9\linewidth}{!}{\input{foldleft.tikz}}
>
> How can I change the parameter of the resizebox command? I tried adding
> a line
> #+attr_latex :width \linewidth
> as I usually do for images, but it is not taken into account.

I've found a workaround: I add

#+name: foldleft

before the block, and then I can put the attr_latex before an explicit
result block:

#+attr_latex: :width \linewidth
#+results: foldleft

Alan

-- 
OpenPGP Key ID : 040D0A3B4ED2E5C7
Monthly Athmospheric CO₂ (2016-01, Mauna Loa Obs.): 402.52

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 472 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-02-24  7:51 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-23 10:37 how to change the resizebox for a generated tikz diagram? Alan Schmitt
2016-02-24  7:51 ` Alan Schmitt

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).