Trying to draw a picture w/ this code on tikz but keep getting an undefined control sequence error at the start of the 'node' line? Anyone know why?Increase the thickness of node border in TikZHow to define the default vertical distance between nodes?Keep getting an error with the code for this equation!Numerical conditional within tikz keys?TikZ: Drawing an arc from an intersection to an intersectionprint double sided playing cardsLine up nested tikz enviroments or how to get rid of themWhy am I getting an undefined control sequence error in this line?Why does this error keep popping up? Undefined control sequence. endframeUndefined control sequence in equation - error message but code works
Echo with obfuscation
Has the laser at Magurele, Romania reached a tenth of the Sun's power?
Animation: customize bounce interpolation
Why would five hundred and five be same as one?
Did I make a mistake by ccing email to boss to others?
Why is participating in the European Parliamentary elections used as a threat?
Can I run 125khz RF circuit on a breadboard?
El Dorado Word Puzzle II: Videogame Edition
Can I cause damage to electrical appliances by unplugging them when they are turned on?
How do I fix the group tension caused by my character stealing and possibly killing without provocation?
How can I, as DM, avoid the Conga Line of Death occurring when implementing some form of flanking rule?
How to understand "he realized a split second too late was also a mistake"
Make a border of symbols in Gimp
Why can't the Brexit deadlock in the UK parliament be solved with a plurality vote?
Identifying "long and narrow" polygons in with Postgis
Why didn’t Eve recognize the little cockroach as a living organism?
If A is dense in Q, then it must be dense in R.
I'm just a whisper. Who am I?
What is this high flying aircraft over Pennsylvania?
Why does the Persian emissary display a string of crowned skulls?
Is stochastic gradient descent pseudo-stochastic?
Unable to disable Microsoft Store in domain environment
Do people actually use the word "kaputt" in conversation?
Why is the sun approximated as a black body at ~ 5800 K?
Trying to draw a picture w/ this code on tikz but keep getting an undefined control sequence error at the start of the 'node' line? Anyone know why?
Increase the thickness of node border in TikZHow to define the default vertical distance between nodes?Keep getting an error with the code for this equation!Numerical conditional within tikz keys?TikZ: Drawing an arc from an intersection to an intersectionprint double sided playing cardsLine up nested tikz enviroments or how to get rid of themWhy am I getting an undefined control sequence error in this line?Why does this error keep popping up? Undefined control sequence. endframeUndefined control sequence in equation - error message but code works
I have tikz loaded in the preamble with these libraries
usetikzlibraryautomata, positioning, arrows, positioning, calc
begintikzpicture
tikzsetlevel distance=15pt
foreach r in 0.5,1,1.5,2
draw (0,0) circle (r cm);
draw[thick] (0,0)node[](A)footnotesize$w$ circle(1cm)node[yshift=0.8cm,inner sep=0pt,outer sep=0pt](B);
node at (105:2.25cm)$svphi$;draw[very thick, dashed] (85:2.5cm) edge[out=-100, in=-20, looseness=2] ([yshift=1cm]165:1.5cm);
draw[] (0,0)node[](A) circle(1.5cm)node[yshift=-.25cm, xshift=1cm, inner sep=0pt,outer sep=0pt](D);
endtikzpicture
tikz-pgf errors
welcome to tex.se! please extend your code snippet to complete small document with your image. help us to help you!
– Zarko
Feb 18 at 17:37
add a comment |
I have tikz loaded in the preamble with these libraries
usetikzlibraryautomata, positioning, arrows, positioning, calc
begintikzpicture
tikzsetlevel distance=15pt
foreach r in 0.5,1,1.5,2
draw (0,0) circle (r cm);
draw[thick] (0,0)node[](A)footnotesize$w$ circle(1cm)node[yshift=0.8cm,inner sep=0pt,outer sep=0pt](B);
node at (105:2.25cm)$svphi$;draw[very thick, dashed] (85:2.5cm) edge[out=-100, in=-20, looseness=2] ([yshift=1cm]165:1.5cm);
draw[] (0,0)node[](A) circle(1.5cm)node[yshift=-.25cm, xshift=1cm, inner sep=0pt,outer sep=0pt](D);
endtikzpicture
tikz-pgf errors
welcome to tex.se! please extend your code snippet to complete small document with your image. help us to help you!
– Zarko
Feb 18 at 17:37
add a comment |
I have tikz loaded in the preamble with these libraries
usetikzlibraryautomata, positioning, arrows, positioning, calc
begintikzpicture
tikzsetlevel distance=15pt
foreach r in 0.5,1,1.5,2
draw (0,0) circle (r cm);
draw[thick] (0,0)node[](A)improve this question
I have tikz loaded in the preamble with these libraries
usetikzlibraryautomata, positioning, arrows, positioning, calc
begintikzpicture
tikzsetlevel distance=15pt
foreach r in 0.5,1,1.5,2
draw (0,0) circle (r cm);
draw[thick] (0,0)node[](A)improve this question
welcome to tex.se! please extend your code snippet to complete small document with your image. help us to help you!
– Zarko
Feb 18 at 17:37
add a comment after
footnotesize$w$. After that I get an error because the sv command isn't defined.– Phelype Oleinik
Feb 18 at 14:40
welcome to tex.se! please extend your code snippet to complete small document with your image. help us to help you!
– Zarko
Feb 18 at 17:37
3
3
You have a missing
} after footnotesize$w$. After that I get an error because the sv command isn't defined.– Phelype Oleinik
Feb 18 at 14:40
You have a missing
} after footnotesize$w$. After that I get an error because the sv command isn't defined.– Phelype Oleinik
Feb 18 at 14:40
welcome to tex.se! please extend your code snippet to complete small document with your image. help us to help you!
– Zarko
Feb 18 at 17:37
welcome to tex.se! please extend your code snippet to complete small document with your image. help us to help you!
– Zarko
Feb 18 at 17:37
add a comment |
1 Answer
1
active
oldest
votes
it is not clear what you like to draw. from provided code i guess that you looking for something like this (but i may be wrong):

which is generated with:
documentclass[tikz, margin=3mm]standalone
begindocument
begintikzpicture[every node/.style = font=footnotesize]
node (A) $w$;
draw[thick] (A) circle(1cm);
foreach r in 0.5,1.5,2draw (A) circle (r);
%
node at (110:2.2)$phi$;
draw[very thick, densely dashed]
(85:2.4) edge[out=-100, in=-20, looseness=2] ([yshift=1cm]165:1.5);
endtikzpicture
enddocument
Thank you! It's supposed to represent a "system of spheres" which is a figure commonly used in intensional logics
– Andrew Rubner
Feb 18 at 20:01
@AndrewRubner, i'm more interested, if i correct guess what you like to draw.
– Zarko
Feb 18 at 20:04
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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%2f475502%2ftrying-to-draw-a-picture-w-this-code-on-tikz-but-keep-getting-an-undefined-cont%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
it is not clear what you like to draw. from provided code i guess that you looking for something like this (but i may be wrong):

which is generated with:
documentclass[tikz, margin=3mm]standalone
begindocument
begintikzpicture[every node/.style = font=footnotesize]
node (A) $w$;
draw[thick] (A) circle(1cm);
foreach r in 0.5,1.5,2draw (A) circle (r);
%
node at (110:2.2)$phi$;
draw[very thick, densely dashed]
(85:2.4) edge[out=-100, in=-20, looseness=2] ([yshift=1cm]165:1.5);
endtikzpicture
enddocument
Thank you! It's supposed to represent a "system of spheres" which is a figure commonly used in intensional logics
– Andrew Rubner
Feb 18 at 20:01
@AndrewRubner, i'm more interested, if i correct guess what you like to draw.
– Zarko
Feb 18 at 20:04
add a comment |
it is not clear what you like to draw. from provided code i guess that you looking for something like this (but i may be wrong):

which is generated with:
documentclass[tikz, margin=3mm]standalone
begindocument
begintikzpicture[every node/.style = font=footnotesize]
node (A) $w$;
draw[thick] (A) circle(1cm);
foreach r in 0.5,1.5,2draw (A) circle (r);
%
node at (110:2.2)$phi$;
draw[very thick, densely dashed]
(85:2.4) edge[out=-100, in=-20, looseness=2] ([yshift=1cm]165:1.5);
endtikzpicture
enddocument
Thank you! It's supposed to represent a "system of spheres" which is a figure commonly used in intensional logics
– Andrew Rubner
Feb 18 at 20:01
@AndrewRubner, i'm more interested, if i correct guess what you like to draw.
– Zarko
Feb 18 at 20:04
add a comment |
it is not clear what you like to draw. from provided code i guess that you looking for something like this (but i may be wrong):

which is generated with:
documentclass[tikz, margin=3mm]standalone
begindocument
begintikzpicture[every node/.style = font=footnotesize]
node (A) $w$;
draw[thick] (A) circle(1cm);
foreach r in 0.5,1.5,2draw (A) circle (r);
%
node at (110:2.2)$phi$;
draw[very thick, densely dashed]
(85:2.4) edge[out=-100, in=-20, looseness=2] ([yshift=1cm]165:1.5);
endtikzpicture
enddocument
it is not clear what you like to draw. from provided code i guess that you looking for something like this (but i may be wrong):

which is generated with:
documentclass[tikz, margin=3mm]standalone
begindocument
begintikzpicture[every node/.style = font=footnotesize]
node (A) $w$;
draw[thick] (A) circle(1cm);
foreach r in 0.5,1.5,2draw (A) circle (r);
%
node at (110:2.2)$phi$;
draw[very thick, densely dashed]
(85:2.4) edge[out=-100, in=-20, looseness=2] ([yshift=1cm]165:1.5);
endtikzpicture
enddocument
answered Feb 18 at 19:14
ZarkoZarko
127k868167
127k868167
Thank you! It's supposed to represent a "system of spheres" which is a figure commonly used in intensional logics
– Andrew Rubner
Feb 18 at 20:01
@AndrewRubner, i'm more interested, if i correct guess what you like to draw.
– Zarko
Feb 18 at 20:04
add a comment |
Thank you! It's supposed to represent a "system of spheres" which is a figure commonly used in intensional logics
– Andrew Rubner
Feb 18 at 20:01
@AndrewRubner, i'm more interested, if i correct guess what you like to draw.
– Zarko
Feb 18 at 20:04
Thank you! It's supposed to represent a "system of spheres" which is a figure commonly used in intensional logics
– Andrew Rubner
Feb 18 at 20:01
Thank you! It's supposed to represent a "system of spheres" which is a figure commonly used in intensional logics
– Andrew Rubner
Feb 18 at 20:01
@AndrewRubner, i'm more interested, if i correct guess what you like to draw.
– Zarko
Feb 18 at 20:04
@AndrewRubner, i'm more interested, if i correct guess what you like to draw.
– Zarko
Feb 18 at 20:04
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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%2f475502%2ftrying-to-draw-a-picture-w-this-code-on-tikz-but-keep-getting-an-undefined-cont%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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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