I am trying to include an odd sized graph in between to pages as a graph however, the graph is automatically sized on an A4 page. My graph has a different background color, so ideally I would like to have only my graph with its odd size and not my graph printed on a white A4 page and autosized.
Asked
Active
Viewed 56 times
1 Answers
0
In cases, when a some page in text should have completely different layout, seems to be the best way to make this page separately (for example by help of document class standalone or extracting content with preview package) and than include it as pdf page:
\includepdf[<options>]{file.pdf}
In your case (as you said in your comment):
\includepdf[fitpaper]{table.pdf}
Zarko
- 296,517
code is : \includepdf[pages={1}]{src/img/branding/table.pdf}
the table has a rectangular form, slimmer than an A4 in width. I don't know what else to tell you about it.
– latexguy May 17 '16 at 03:12I am sorry if I am not expressing myself properly. Does anybody know how I can do this?
– latexguy May 17 '16 at 04:17\includepdf[<options>]{file.pdf}and table make for example withstandalonewith desired size. – Zarko May 17 '16 at 05:12Thanks a lot everyone!
– latexguy May 17 '16 at 05:48