how to put suspension points on a tikz figure
up vote
4
down vote
favorite
I'm want to put suspension points as in the picture above. What should I add to the code below?
documentclass[12pt]{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}[roundnode/.style={circle, fill=black!70, inner sep=0pt, minimum size=1.5mm}]
node[roundnode,label=right:{$u^{}_1$}] at (1,0) (u1) {};
node[roundnode,label=above right:{$u^{}_2$}] at (0.78539816339,0.70710678118) (u2) {};
node[roundnode,label=:{$u^{}_3$}] at (0,1) (u3) {};
node[roundnode,label=above left:{$u^{}_4$}] at (-0.78539816339,0.70710678118) (u4) {};
node[roundnode,label=left:{$u^{}_5$}] at (-1,0) (u5) {};
node[roundnode,label=left:{$u^{}_6$}] at (-0.78539816339,-0.70710678118) (u6) {};
node[roundnode,label=below:{$u^{}_7$}] at (0,-1) (u7) {};
node[roundnode,label=below right:{$u^{}_n$}] at (0.78539816339,-0.70710678118) (un) {};
draw[-] (un) -- (u1) -- (u2) -- (u3) -- (u4) -- (u5) -- (u6) -- (u7);
end{tikzpicture}
end{document}
tikz-pgf
add a comment |
up vote
4
down vote
favorite
I'm want to put suspension points as in the picture above. What should I add to the code below?
documentclass[12pt]{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}[roundnode/.style={circle, fill=black!70, inner sep=0pt, minimum size=1.5mm}]
node[roundnode,label=right:{$u^{}_1$}] at (1,0) (u1) {};
node[roundnode,label=above right:{$u^{}_2$}] at (0.78539816339,0.70710678118) (u2) {};
node[roundnode,label=:{$u^{}_3$}] at (0,1) (u3) {};
node[roundnode,label=above left:{$u^{}_4$}] at (-0.78539816339,0.70710678118) (u4) {};
node[roundnode,label=left:{$u^{}_5$}] at (-1,0) (u5) {};
node[roundnode,label=left:{$u^{}_6$}] at (-0.78539816339,-0.70710678118) (u6) {};
node[roundnode,label=below:{$u^{}_7$}] at (0,-1) (u7) {};
node[roundnode,label=below right:{$u^{}_n$}] at (0.78539816339,-0.70710678118) (un) {};
draw[-] (un) -- (u1) -- (u2) -- (u3) -- (u4) -- (u5) -- (u6) -- (u7);
end{tikzpicture}
end{document}
tikz-pgf
1
Welcome to TeX - LaTeX! By "suspension points" do you mean the dotted line? If so thendraw[dotted]
ordraw[loosely dotted]
is probably what you are looking for. You can addthick
or similar to get larger dots.
– Andrew Swann
Dec 9 at 17:12
@AndrewSwann Excuse me. But I remember that this question is old.
– Sebastiano
Dec 9 at 17:15
add a comment |
up vote
4
down vote
favorite
up vote
4
down vote
favorite
I'm want to put suspension points as in the picture above. What should I add to the code below?
documentclass[12pt]{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}[roundnode/.style={circle, fill=black!70, inner sep=0pt, minimum size=1.5mm}]
node[roundnode,label=right:{$u^{}_1$}] at (1,0) (u1) {};
node[roundnode,label=above right:{$u^{}_2$}] at (0.78539816339,0.70710678118) (u2) {};
node[roundnode,label=:{$u^{}_3$}] at (0,1) (u3) {};
node[roundnode,label=above left:{$u^{}_4$}] at (-0.78539816339,0.70710678118) (u4) {};
node[roundnode,label=left:{$u^{}_5$}] at (-1,0) (u5) {};
node[roundnode,label=left:{$u^{}_6$}] at (-0.78539816339,-0.70710678118) (u6) {};
node[roundnode,label=below:{$u^{}_7$}] at (0,-1) (u7) {};
node[roundnode,label=below right:{$u^{}_n$}] at (0.78539816339,-0.70710678118) (un) {};
draw[-] (un) -- (u1) -- (u2) -- (u3) -- (u4) -- (u5) -- (u6) -- (u7);
end{tikzpicture}
end{document}
tikz-pgf
I'm want to put suspension points as in the picture above. What should I add to the code below?
documentclass[12pt]{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}[roundnode/.style={circle, fill=black!70, inner sep=0pt, minimum size=1.5mm}]
node[roundnode,label=right:{$u^{}_1$}] at (1,0) (u1) {};
node[roundnode,label=above right:{$u^{}_2$}] at (0.78539816339,0.70710678118) (u2) {};
node[roundnode,label=:{$u^{}_3$}] at (0,1) (u3) {};
node[roundnode,label=above left:{$u^{}_4$}] at (-0.78539816339,0.70710678118) (u4) {};
node[roundnode,label=left:{$u^{}_5$}] at (-1,0) (u5) {};
node[roundnode,label=left:{$u^{}_6$}] at (-0.78539816339,-0.70710678118) (u6) {};
node[roundnode,label=below:{$u^{}_7$}] at (0,-1) (u7) {};
node[roundnode,label=below right:{$u^{}_n$}] at (0.78539816339,-0.70710678118) (un) {};
draw[-] (un) -- (u1) -- (u2) -- (u3) -- (u4) -- (u5) -- (u6) -- (u7);
end{tikzpicture}
end{document}
tikz-pgf
tikz-pgf
asked Dec 9 at 17:08
Ali Khan
212
212
1
Welcome to TeX - LaTeX! By "suspension points" do you mean the dotted line? If so thendraw[dotted]
ordraw[loosely dotted]
is probably what you are looking for. You can addthick
or similar to get larger dots.
– Andrew Swann
Dec 9 at 17:12
@AndrewSwann Excuse me. But I remember that this question is old.
– Sebastiano
Dec 9 at 17:15
add a comment |
1
Welcome to TeX - LaTeX! By "suspension points" do you mean the dotted line? If so thendraw[dotted]
ordraw[loosely dotted]
is probably what you are looking for. You can addthick
or similar to get larger dots.
– Andrew Swann
Dec 9 at 17:12
@AndrewSwann Excuse me. But I remember that this question is old.
– Sebastiano
Dec 9 at 17:15
1
1
Welcome to TeX - LaTeX! By "suspension points" do you mean the dotted line? If so then
draw[dotted]
or draw[loosely dotted]
is probably what you are looking for. You can add thick
or similar to get larger dots.– Andrew Swann
Dec 9 at 17:12
Welcome to TeX - LaTeX! By "suspension points" do you mean the dotted line? If so then
draw[dotted]
or draw[loosely dotted]
is probably what you are looking for. You can add thick
or similar to get larger dots.– Andrew Swann
Dec 9 at 17:12
@AndrewSwann Excuse me. But I remember that this question is old.
– Sebastiano
Dec 9 at 17:15
@AndrewSwann Excuse me. But I remember that this question is old.
– Sebastiano
Dec 9 at 17:15
add a comment |
2 Answers
2
active
oldest
votes
up vote
5
down vote
Slightly more complicated than nidhin's solution, add usetikzlibrary{calc}
and use
foreach i in {0.25,0.5,0.75}
fill ($(un)!i!(u7)$) circle[radius=1pt];
documentclass[12pt]{article}
usepackage{tikz}
usetikzlibrary{calc}
begin{document}
begin{tikzpicture}[roundnode/.style={circle, fill=black!70, inner sep=0pt, minimum size=1.5mm}]
node[roundnode,label=right:{$u^{}_1$}] at (1,0) (u1) {};
node[roundnode,label=above right:{$u^{}_2$}] at (0.78539816339,0.70710678118) (u2) {};
node[roundnode,label=:{$u^{}_3$}] at (0,1) (u3) {};
node[roundnode,label=above left:{$u^{}_4$}] at (-0.78539816339,0.70710678118) (u4) {};
node[roundnode,label=left:{$u^{}_5$}] at (-1,0) (u5) {};
node[roundnode,label=left:{$u^{}_6$}] at (-0.78539816339,-0.70710678118) (u6) {};
node[roundnode,label=below:{$u^{}_7$}] at (0,-1) (u7) {};
node[roundnode,label=below right:{$u^{}_n$}] at (0.78539816339,-0.70710678118) (un) {};
draw[-] (un) -- (u1) -- (u2) -- (u3) -- (u4) -- (u5) -- (u6) -- (u7);
foreach i in {0.25,0.5,0.75}
fill ($(un)!i!(u7)$) circle[radius=1pt];
end{tikzpicture}
end{document}
add a comment |
up vote
4
down vote
Drawing dotted
lines is one way to produce this picture. (mentioned is comments by Andrew Swann also.). IS this okay for you?
documentclass[12pt]{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}[roundnode/.style={circle, fill=black!70, inner sep=0pt, minimum size=1.5mm}]
node[roundnode,label=right:{$u^{}_1$}] at (1,0) (u1) {};
node[roundnode,label=above right:{$u^{}_2$}] at (0.78539816339,0.70710678118) (u2) {};
node[roundnode,label=:{$u^{}_3$}] at (0,1) (u3) {};
node[roundnode,label=above left:{$u^{}_4$}] at (-0.78539816339,0.70710678118) (u4) {};
node[roundnode,label=left:{$u^{}_5$}] at (-1,0) (u5) {};
node[roundnode,label=left:{$u^{}_6$}] at (-0.78539816339,-0.70710678118) (u6) {};
node[roundnode,label=below:{$u^{}_7$}] at (0,-1) (u7) {};
node[roundnode,label=below right:{$u^{}_n$}] at (0.78539816339,-0.70710678118) (un) {};
draw[-] (un) -- (u1) -- (u2) -- (u3) -- (u4) -- (u5) -- (u6) -- (u7);
draw[loosely dotted,thick] (un)--(u7);
end{tikzpicture}
end{document}
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',
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%2f463986%2fhow-to-put-suspension-points-on-a-tikz-figure%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
5
down vote
Slightly more complicated than nidhin's solution, add usetikzlibrary{calc}
and use
foreach i in {0.25,0.5,0.75}
fill ($(un)!i!(u7)$) circle[radius=1pt];
documentclass[12pt]{article}
usepackage{tikz}
usetikzlibrary{calc}
begin{document}
begin{tikzpicture}[roundnode/.style={circle, fill=black!70, inner sep=0pt, minimum size=1.5mm}]
node[roundnode,label=right:{$u^{}_1$}] at (1,0) (u1) {};
node[roundnode,label=above right:{$u^{}_2$}] at (0.78539816339,0.70710678118) (u2) {};
node[roundnode,label=:{$u^{}_3$}] at (0,1) (u3) {};
node[roundnode,label=above left:{$u^{}_4$}] at (-0.78539816339,0.70710678118) (u4) {};
node[roundnode,label=left:{$u^{}_5$}] at (-1,0) (u5) {};
node[roundnode,label=left:{$u^{}_6$}] at (-0.78539816339,-0.70710678118) (u6) {};
node[roundnode,label=below:{$u^{}_7$}] at (0,-1) (u7) {};
node[roundnode,label=below right:{$u^{}_n$}] at (0.78539816339,-0.70710678118) (un) {};
draw[-] (un) -- (u1) -- (u2) -- (u3) -- (u4) -- (u5) -- (u6) -- (u7);
foreach i in {0.25,0.5,0.75}
fill ($(un)!i!(u7)$) circle[radius=1pt];
end{tikzpicture}
end{document}
add a comment |
up vote
5
down vote
Slightly more complicated than nidhin's solution, add usetikzlibrary{calc}
and use
foreach i in {0.25,0.5,0.75}
fill ($(un)!i!(u7)$) circle[radius=1pt];
documentclass[12pt]{article}
usepackage{tikz}
usetikzlibrary{calc}
begin{document}
begin{tikzpicture}[roundnode/.style={circle, fill=black!70, inner sep=0pt, minimum size=1.5mm}]
node[roundnode,label=right:{$u^{}_1$}] at (1,0) (u1) {};
node[roundnode,label=above right:{$u^{}_2$}] at (0.78539816339,0.70710678118) (u2) {};
node[roundnode,label=:{$u^{}_3$}] at (0,1) (u3) {};
node[roundnode,label=above left:{$u^{}_4$}] at (-0.78539816339,0.70710678118) (u4) {};
node[roundnode,label=left:{$u^{}_5$}] at (-1,0) (u5) {};
node[roundnode,label=left:{$u^{}_6$}] at (-0.78539816339,-0.70710678118) (u6) {};
node[roundnode,label=below:{$u^{}_7$}] at (0,-1) (u7) {};
node[roundnode,label=below right:{$u^{}_n$}] at (0.78539816339,-0.70710678118) (un) {};
draw[-] (un) -- (u1) -- (u2) -- (u3) -- (u4) -- (u5) -- (u6) -- (u7);
foreach i in {0.25,0.5,0.75}
fill ($(un)!i!(u7)$) circle[radius=1pt];
end{tikzpicture}
end{document}
add a comment |
up vote
5
down vote
up vote
5
down vote
Slightly more complicated than nidhin's solution, add usetikzlibrary{calc}
and use
foreach i in {0.25,0.5,0.75}
fill ($(un)!i!(u7)$) circle[radius=1pt];
documentclass[12pt]{article}
usepackage{tikz}
usetikzlibrary{calc}
begin{document}
begin{tikzpicture}[roundnode/.style={circle, fill=black!70, inner sep=0pt, minimum size=1.5mm}]
node[roundnode,label=right:{$u^{}_1$}] at (1,0) (u1) {};
node[roundnode,label=above right:{$u^{}_2$}] at (0.78539816339,0.70710678118) (u2) {};
node[roundnode,label=:{$u^{}_3$}] at (0,1) (u3) {};
node[roundnode,label=above left:{$u^{}_4$}] at (-0.78539816339,0.70710678118) (u4) {};
node[roundnode,label=left:{$u^{}_5$}] at (-1,0) (u5) {};
node[roundnode,label=left:{$u^{}_6$}] at (-0.78539816339,-0.70710678118) (u6) {};
node[roundnode,label=below:{$u^{}_7$}] at (0,-1) (u7) {};
node[roundnode,label=below right:{$u^{}_n$}] at (0.78539816339,-0.70710678118) (un) {};
draw[-] (un) -- (u1) -- (u2) -- (u3) -- (u4) -- (u5) -- (u6) -- (u7);
foreach i in {0.25,0.5,0.75}
fill ($(un)!i!(u7)$) circle[radius=1pt];
end{tikzpicture}
end{document}
Slightly more complicated than nidhin's solution, add usetikzlibrary{calc}
and use
foreach i in {0.25,0.5,0.75}
fill ($(un)!i!(u7)$) circle[radius=1pt];
documentclass[12pt]{article}
usepackage{tikz}
usetikzlibrary{calc}
begin{document}
begin{tikzpicture}[roundnode/.style={circle, fill=black!70, inner sep=0pt, minimum size=1.5mm}]
node[roundnode,label=right:{$u^{}_1$}] at (1,0) (u1) {};
node[roundnode,label=above right:{$u^{}_2$}] at (0.78539816339,0.70710678118) (u2) {};
node[roundnode,label=:{$u^{}_3$}] at (0,1) (u3) {};
node[roundnode,label=above left:{$u^{}_4$}] at (-0.78539816339,0.70710678118) (u4) {};
node[roundnode,label=left:{$u^{}_5$}] at (-1,0) (u5) {};
node[roundnode,label=left:{$u^{}_6$}] at (-0.78539816339,-0.70710678118) (u6) {};
node[roundnode,label=below:{$u^{}_7$}] at (0,-1) (u7) {};
node[roundnode,label=below right:{$u^{}_n$}] at (0.78539816339,-0.70710678118) (un) {};
draw[-] (un) -- (u1) -- (u2) -- (u3) -- (u4) -- (u5) -- (u6) -- (u7);
foreach i in {0.25,0.5,0.75}
fill ($(un)!i!(u7)$) circle[radius=1pt];
end{tikzpicture}
end{document}
answered Dec 9 at 17:15
Torbjørn T.
154k13245434
154k13245434
add a comment |
add a comment |
up vote
4
down vote
Drawing dotted
lines is one way to produce this picture. (mentioned is comments by Andrew Swann also.). IS this okay for you?
documentclass[12pt]{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}[roundnode/.style={circle, fill=black!70, inner sep=0pt, minimum size=1.5mm}]
node[roundnode,label=right:{$u^{}_1$}] at (1,0) (u1) {};
node[roundnode,label=above right:{$u^{}_2$}] at (0.78539816339,0.70710678118) (u2) {};
node[roundnode,label=:{$u^{}_3$}] at (0,1) (u3) {};
node[roundnode,label=above left:{$u^{}_4$}] at (-0.78539816339,0.70710678118) (u4) {};
node[roundnode,label=left:{$u^{}_5$}] at (-1,0) (u5) {};
node[roundnode,label=left:{$u^{}_6$}] at (-0.78539816339,-0.70710678118) (u6) {};
node[roundnode,label=below:{$u^{}_7$}] at (0,-1) (u7) {};
node[roundnode,label=below right:{$u^{}_n$}] at (0.78539816339,-0.70710678118) (un) {};
draw[-] (un) -- (u1) -- (u2) -- (u3) -- (u4) -- (u5) -- (u6) -- (u7);
draw[loosely dotted,thick] (un)--(u7);
end{tikzpicture}
end{document}
add a comment |
up vote
4
down vote
Drawing dotted
lines is one way to produce this picture. (mentioned is comments by Andrew Swann also.). IS this okay for you?
documentclass[12pt]{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}[roundnode/.style={circle, fill=black!70, inner sep=0pt, minimum size=1.5mm}]
node[roundnode,label=right:{$u^{}_1$}] at (1,0) (u1) {};
node[roundnode,label=above right:{$u^{}_2$}] at (0.78539816339,0.70710678118) (u2) {};
node[roundnode,label=:{$u^{}_3$}] at (0,1) (u3) {};
node[roundnode,label=above left:{$u^{}_4$}] at (-0.78539816339,0.70710678118) (u4) {};
node[roundnode,label=left:{$u^{}_5$}] at (-1,0) (u5) {};
node[roundnode,label=left:{$u^{}_6$}] at (-0.78539816339,-0.70710678118) (u6) {};
node[roundnode,label=below:{$u^{}_7$}] at (0,-1) (u7) {};
node[roundnode,label=below right:{$u^{}_n$}] at (0.78539816339,-0.70710678118) (un) {};
draw[-] (un) -- (u1) -- (u2) -- (u3) -- (u4) -- (u5) -- (u6) -- (u7);
draw[loosely dotted,thick] (un)--(u7);
end{tikzpicture}
end{document}
add a comment |
up vote
4
down vote
up vote
4
down vote
Drawing dotted
lines is one way to produce this picture. (mentioned is comments by Andrew Swann also.). IS this okay for you?
documentclass[12pt]{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}[roundnode/.style={circle, fill=black!70, inner sep=0pt, minimum size=1.5mm}]
node[roundnode,label=right:{$u^{}_1$}] at (1,0) (u1) {};
node[roundnode,label=above right:{$u^{}_2$}] at (0.78539816339,0.70710678118) (u2) {};
node[roundnode,label=:{$u^{}_3$}] at (0,1) (u3) {};
node[roundnode,label=above left:{$u^{}_4$}] at (-0.78539816339,0.70710678118) (u4) {};
node[roundnode,label=left:{$u^{}_5$}] at (-1,0) (u5) {};
node[roundnode,label=left:{$u^{}_6$}] at (-0.78539816339,-0.70710678118) (u6) {};
node[roundnode,label=below:{$u^{}_7$}] at (0,-1) (u7) {};
node[roundnode,label=below right:{$u^{}_n$}] at (0.78539816339,-0.70710678118) (un) {};
draw[-] (un) -- (u1) -- (u2) -- (u3) -- (u4) -- (u5) -- (u6) -- (u7);
draw[loosely dotted,thick] (un)--(u7);
end{tikzpicture}
end{document}
Drawing dotted
lines is one way to produce this picture. (mentioned is comments by Andrew Swann also.). IS this okay for you?
documentclass[12pt]{article}
usepackage{tikz}
begin{document}
begin{tikzpicture}[roundnode/.style={circle, fill=black!70, inner sep=0pt, minimum size=1.5mm}]
node[roundnode,label=right:{$u^{}_1$}] at (1,0) (u1) {};
node[roundnode,label=above right:{$u^{}_2$}] at (0.78539816339,0.70710678118) (u2) {};
node[roundnode,label=:{$u^{}_3$}] at (0,1) (u3) {};
node[roundnode,label=above left:{$u^{}_4$}] at (-0.78539816339,0.70710678118) (u4) {};
node[roundnode,label=left:{$u^{}_5$}] at (-1,0) (u5) {};
node[roundnode,label=left:{$u^{}_6$}] at (-0.78539816339,-0.70710678118) (u6) {};
node[roundnode,label=below:{$u^{}_7$}] at (0,-1) (u7) {};
node[roundnode,label=below right:{$u^{}_n$}] at (0.78539816339,-0.70710678118) (un) {};
draw[-] (un) -- (u1) -- (u2) -- (u3) -- (u4) -- (u5) -- (u6) -- (u7);
draw[loosely dotted,thick] (un)--(u7);
end{tikzpicture}
end{document}
answered Dec 9 at 17:13
nidhin
3,324927
3,324927
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f463986%2fhow-to-put-suspension-points-on-a-tikz-figure%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
1
Welcome to TeX - LaTeX! By "suspension points" do you mean the dotted line? If so then
draw[dotted]
ordraw[loosely dotted]
is probably what you are looking for. You can addthick
or similar to get larger dots.– Andrew Swann
Dec 9 at 17:12
@AndrewSwann Excuse me. But I remember that this question is old.
– Sebastiano
Dec 9 at 17:15