Tikz - highlighting part of image in non-minipage environment
With regards to this two questions Tikz - three pictures in two pages in landscape mode and Tikz - highlight text in an image, I struggle to put the given solutions together (which work otherwise fine for me) to highlight a part in picture A.
The context is that I have two pages (A4 in landscape mode) with three pictures on them, while one in the middle spane over both pages. Now I would like to highlight a part of the first picture, but fail to highlighted the desired part and have the rest reduced to an opaque black.
This is my code:
documentclass{article}
usepackage[margin=0cm, top=0cm, bottom=0cm, outer=0cm, inner=0cm, landscape, a4paper]{geometry}
pagestyle{empty}
usepackage{tikz}
begin{document}
begin{tikzpicture}[overlay,remember picture]
pgfmathsetmacro{mywidth}{2*paperwidth/3-1cm} % kept local
node at ([xshift=-paperwidth/6-1cm]current page.center){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-a}};
begin{scope}[x={(image.south east)},y={(image.north west)}]
fill[even odd rule,opacity=0.4]
(0.11,0.4) -- (0.37,0.404) -- (0.37,0.414) -- (0.11,0.41) -- cycle
(0,0) rectangle (1,1);
end{scope}
node at (current page.east){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-b}};
end{tikzpicture}
~
clearpage
begin{tikzpicture}[overlay,remember picture]
pgfmathsetmacro{mywidth}{2*paperwidth/3-1cm} % kept local
node (image) at ([xshift=paperwidth/6+1cm]current page.center){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-c}};
node at (current page.west){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-b}};
end{tikzpicture}
end{document}
I presume that I do not manage to highlight parts of the image as it is not in a minipage environment. What can I do?
tikz-pgf graphics includegraphics
add a comment |
With regards to this two questions Tikz - three pictures in two pages in landscape mode and Tikz - highlight text in an image, I struggle to put the given solutions together (which work otherwise fine for me) to highlight a part in picture A.
The context is that I have two pages (A4 in landscape mode) with three pictures on them, while one in the middle spane over both pages. Now I would like to highlight a part of the first picture, but fail to highlighted the desired part and have the rest reduced to an opaque black.
This is my code:
documentclass{article}
usepackage[margin=0cm, top=0cm, bottom=0cm, outer=0cm, inner=0cm, landscape, a4paper]{geometry}
pagestyle{empty}
usepackage{tikz}
begin{document}
begin{tikzpicture}[overlay,remember picture]
pgfmathsetmacro{mywidth}{2*paperwidth/3-1cm} % kept local
node at ([xshift=-paperwidth/6-1cm]current page.center){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-a}};
begin{scope}[x={(image.south east)},y={(image.north west)}]
fill[even odd rule,opacity=0.4]
(0.11,0.4) -- (0.37,0.404) -- (0.37,0.414) -- (0.11,0.41) -- cycle
(0,0) rectangle (1,1);
end{scope}
node at (current page.east){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-b}};
end{tikzpicture}
~
clearpage
begin{tikzpicture}[overlay,remember picture]
pgfmathsetmacro{mywidth}{2*paperwidth/3-1cm} % kept local
node (image) at ([xshift=paperwidth/6+1cm]current page.center){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-c}};
node at (current page.west){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-b}};
end{tikzpicture}
end{document}
I presume that I do not manage to highlight parts of the image as it is not in a minipage environment. What can I do?
tikz-pgf graphics includegraphics
Sorry, but currently I fail to compile your example. It says! Package pgf Error: No shape named image is known..
– L. F.
Feb 21 at 10:32
add a comment |
With regards to this two questions Tikz - three pictures in two pages in landscape mode and Tikz - highlight text in an image, I struggle to put the given solutions together (which work otherwise fine for me) to highlight a part in picture A.
The context is that I have two pages (A4 in landscape mode) with three pictures on them, while one in the middle spane over both pages. Now I would like to highlight a part of the first picture, but fail to highlighted the desired part and have the rest reduced to an opaque black.
This is my code:
documentclass{article}
usepackage[margin=0cm, top=0cm, bottom=0cm, outer=0cm, inner=0cm, landscape, a4paper]{geometry}
pagestyle{empty}
usepackage{tikz}
begin{document}
begin{tikzpicture}[overlay,remember picture]
pgfmathsetmacro{mywidth}{2*paperwidth/3-1cm} % kept local
node at ([xshift=-paperwidth/6-1cm]current page.center){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-a}};
begin{scope}[x={(image.south east)},y={(image.north west)}]
fill[even odd rule,opacity=0.4]
(0.11,0.4) -- (0.37,0.404) -- (0.37,0.414) -- (0.11,0.41) -- cycle
(0,0) rectangle (1,1);
end{scope}
node at (current page.east){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-b}};
end{tikzpicture}
~
clearpage
begin{tikzpicture}[overlay,remember picture]
pgfmathsetmacro{mywidth}{2*paperwidth/3-1cm} % kept local
node (image) at ([xshift=paperwidth/6+1cm]current page.center){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-c}};
node at (current page.west){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-b}};
end{tikzpicture}
end{document}
I presume that I do not manage to highlight parts of the image as it is not in a minipage environment. What can I do?
tikz-pgf graphics includegraphics
With regards to this two questions Tikz - three pictures in two pages in landscape mode and Tikz - highlight text in an image, I struggle to put the given solutions together (which work otherwise fine for me) to highlight a part in picture A.
The context is that I have two pages (A4 in landscape mode) with three pictures on them, while one in the middle spane over both pages. Now I would like to highlight a part of the first picture, but fail to highlighted the desired part and have the rest reduced to an opaque black.
This is my code:
documentclass{article}
usepackage[margin=0cm, top=0cm, bottom=0cm, outer=0cm, inner=0cm, landscape, a4paper]{geometry}
pagestyle{empty}
usepackage{tikz}
begin{document}
begin{tikzpicture}[overlay,remember picture]
pgfmathsetmacro{mywidth}{2*paperwidth/3-1cm} % kept local
node at ([xshift=-paperwidth/6-1cm]current page.center){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-a}};
begin{scope}[x={(image.south east)},y={(image.north west)}]
fill[even odd rule,opacity=0.4]
(0.11,0.4) -- (0.37,0.404) -- (0.37,0.414) -- (0.11,0.41) -- cycle
(0,0) rectangle (1,1);
end{scope}
node at (current page.east){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-b}};
end{tikzpicture}
~
clearpage
begin{tikzpicture}[overlay,remember picture]
pgfmathsetmacro{mywidth}{2*paperwidth/3-1cm} % kept local
node (image) at ([xshift=paperwidth/6+1cm]current page.center){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-c}};
node at (current page.west){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-b}};
end{tikzpicture}
end{document}
I presume that I do not manage to highlight parts of the image as it is not in a minipage environment. What can I do?
tikz-pgf graphics includegraphics
tikz-pgf graphics includegraphics
asked Feb 21 at 8:56
Til HundTil Hund
624315
624315
Sorry, but currently I fail to compile your example. It says! Package pgf Error: No shape named image is known..
– L. F.
Feb 21 at 10:32
add a comment |
Sorry, but currently I fail to compile your example. It says! Package pgf Error: No shape named image is known..
– L. F.
Feb 21 at 10:32
Sorry, but currently I fail to compile your example. It says
! Package pgf Error: No shape named image is known..– L. F.
Feb 21 at 10:32
Sorry, but currently I fail to compile your example. It says
! Package pgf Error: No shape named image is known..– L. F.
Feb 21 at 10:32
add a comment |
1 Answer
1
active
oldest
votes
If I add the missing node name (image), I get
documentclass{article}
usepackage[margin=0cm, top=0cm, bottom=0cm, outer=0cm, inner=0cm, landscape, a4paper]{geometry}
pagestyle{empty}
usepackage{tikz}
begin{document}
begin{tikzpicture}[overlay,remember picture]
pgfmathsetmacro{mywidth}{2*paperwidth/3-1cm} % kept local
node (image) at ([xshift=-paperwidth/6-1cm]current page.center){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-a}};
begin{scope}[x={(image.south east)},y={(image.north west)}]
fill[even odd rule,opacity=0.4]
(0.11,0.4) -- (0.37,0.404) -- (0.37,0.414) -- (0.11,0.41) -- cycle
(0,0) rectangle (1,1);
end{scope}
node at (current page.east){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-b}};
end{tikzpicture}
~
clearpage
begin{tikzpicture}[overlay,remember picture]
pgfmathsetmacro{mywidth}{2*paperwidth/3-1cm} % kept local
node (image) at ([xshift=paperwidth/6+1cm]current page.center){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-c}};
node at (current page.west){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-b}};
end{tikzpicture}
end{document}

As my crystal ball got stolen, I do not know if that's the part you wanted to highlight. ;-)
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f475960%2ftikz-highlighting-part-of-image-in-non-minipage-environment%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
If I add the missing node name (image), I get
documentclass{article}
usepackage[margin=0cm, top=0cm, bottom=0cm, outer=0cm, inner=0cm, landscape, a4paper]{geometry}
pagestyle{empty}
usepackage{tikz}
begin{document}
begin{tikzpicture}[overlay,remember picture]
pgfmathsetmacro{mywidth}{2*paperwidth/3-1cm} % kept local
node (image) at ([xshift=-paperwidth/6-1cm]current page.center){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-a}};
begin{scope}[x={(image.south east)},y={(image.north west)}]
fill[even odd rule,opacity=0.4]
(0.11,0.4) -- (0.37,0.404) -- (0.37,0.414) -- (0.11,0.41) -- cycle
(0,0) rectangle (1,1);
end{scope}
node at (current page.east){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-b}};
end{tikzpicture}
~
clearpage
begin{tikzpicture}[overlay,remember picture]
pgfmathsetmacro{mywidth}{2*paperwidth/3-1cm} % kept local
node (image) at ([xshift=paperwidth/6+1cm]current page.center){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-c}};
node at (current page.west){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-b}};
end{tikzpicture}
end{document}

As my crystal ball got stolen, I do not know if that's the part you wanted to highlight. ;-)
add a comment |
If I add the missing node name (image), I get
documentclass{article}
usepackage[margin=0cm, top=0cm, bottom=0cm, outer=0cm, inner=0cm, landscape, a4paper]{geometry}
pagestyle{empty}
usepackage{tikz}
begin{document}
begin{tikzpicture}[overlay,remember picture]
pgfmathsetmacro{mywidth}{2*paperwidth/3-1cm} % kept local
node (image) at ([xshift=-paperwidth/6-1cm]current page.center){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-a}};
begin{scope}[x={(image.south east)},y={(image.north west)}]
fill[even odd rule,opacity=0.4]
(0.11,0.4) -- (0.37,0.404) -- (0.37,0.414) -- (0.11,0.41) -- cycle
(0,0) rectangle (1,1);
end{scope}
node at (current page.east){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-b}};
end{tikzpicture}
~
clearpage
begin{tikzpicture}[overlay,remember picture]
pgfmathsetmacro{mywidth}{2*paperwidth/3-1cm} % kept local
node (image) at ([xshift=paperwidth/6+1cm]current page.center){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-c}};
node at (current page.west){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-b}};
end{tikzpicture}
end{document}

As my crystal ball got stolen, I do not know if that's the part you wanted to highlight. ;-)
add a comment |
If I add the missing node name (image), I get
documentclass{article}
usepackage[margin=0cm, top=0cm, bottom=0cm, outer=0cm, inner=0cm, landscape, a4paper]{geometry}
pagestyle{empty}
usepackage{tikz}
begin{document}
begin{tikzpicture}[overlay,remember picture]
pgfmathsetmacro{mywidth}{2*paperwidth/3-1cm} % kept local
node (image) at ([xshift=-paperwidth/6-1cm]current page.center){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-a}};
begin{scope}[x={(image.south east)},y={(image.north west)}]
fill[even odd rule,opacity=0.4]
(0.11,0.4) -- (0.37,0.404) -- (0.37,0.414) -- (0.11,0.41) -- cycle
(0,0) rectangle (1,1);
end{scope}
node at (current page.east){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-b}};
end{tikzpicture}
~
clearpage
begin{tikzpicture}[overlay,remember picture]
pgfmathsetmacro{mywidth}{2*paperwidth/3-1cm} % kept local
node (image) at ([xshift=paperwidth/6+1cm]current page.center){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-c}};
node at (current page.west){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-b}};
end{tikzpicture}
end{document}

As my crystal ball got stolen, I do not know if that's the part you wanted to highlight. ;-)
If I add the missing node name (image), I get
documentclass{article}
usepackage[margin=0cm, top=0cm, bottom=0cm, outer=0cm, inner=0cm, landscape, a4paper]{geometry}
pagestyle{empty}
usepackage{tikz}
begin{document}
begin{tikzpicture}[overlay,remember picture]
pgfmathsetmacro{mywidth}{2*paperwidth/3-1cm} % kept local
node (image) at ([xshift=-paperwidth/6-1cm]current page.center){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-a}};
begin{scope}[x={(image.south east)},y={(image.north west)}]
fill[even odd rule,opacity=0.4]
(0.11,0.4) -- (0.37,0.404) -- (0.37,0.414) -- (0.11,0.41) -- cycle
(0,0) rectangle (1,1);
end{scope}
node at (current page.east){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-b}};
end{tikzpicture}
~
clearpage
begin{tikzpicture}[overlay,remember picture]
pgfmathsetmacro{mywidth}{2*paperwidth/3-1cm} % kept local
node (image) at ([xshift=paperwidth/6+1cm]current page.center){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-c}};
node at (current page.west){%
includegraphics[width=mywidth pt,height=paperheight]{example-image-b}};
end{tikzpicture}
end{document}

As my crystal ball got stolen, I do not know if that's the part you wanted to highlight. ;-)
answered Feb 21 at 17:16
marmotmarmot
104k4124236
104k4124236
add a comment |
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f475960%2ftikz-highlighting-part-of-image-in-non-minipage-environment%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Sorry, but currently I fail to compile your example. It says
! Package pgf Error: No shape named image is known..– L. F.
Feb 21 at 10:32