ייחוס – יש לתת ייחוס הולם, לתת קישור לרישיון, ולציין אם נעשו שינויים. אפשר לעשות את זה בכל צורה סבירה, אבל לא בשום צורה שמשתמע ממנה שמעניק הרישיון תומך בך או בשימוש שלך.
שיתוף זהה – יצירת רמיקס, שינוי או בנייה על סמך החומר הזה, תטיל עליך חובה להפיץ את התרומות שלך לפי תנאי רישיון זהה או תואם למקור.
מוענקת בכך הרשות להעתיק, להפיץ או לשנות את המסמך הזה, לפי תנאי הרישיון לשימוש חופשי במסמכים של גנו, גרסה 1.2 או כל גרסה מאוחרת יותר שתפורסם על־ידי המוסד לתוכנה חופשית; ללא פרקים קבועים, ללא טקסט עטיפה קדמית וללא טקסט עטיפה אחורית. עותק של הרישיון כלול בפרק שכותרתו הרישיון לשימוש חופשי במסמכים של גנו.http://www.gnu.org/copyleft/fdl.htmlGFDLGNU Free Documentation Licensetruetrue
אפשר לבחור את הרישיון שמתאים לך.
(In short, this means that you can copy and modify the image freely as long as you provide attribution; preferably in the form of a link back to this page.)
# Set square 1000×1000 SVG output and filename
# The font size (fsize) sets the size for the circles, too.
set terminal svg enhanced size 1000 1000 fname "Times" fsize 36
set output "floor.svg"
# Set the text value for missing entries in the data file, so we can plot a [[w:discontinuous function|discontinuous function]]
set datafile missing "Skip"
# Set y axis limits so the plot doesn't go right to the edges of the graph
set yrange [-3.5:3.5]
# Set x axis limits so the first and last points are hidden
set xrange [-3.5:3.5]
# No legend needed
set nokey
# Add lightly-colored axis lines
set yzeroaxis
set xzeroaxis
# Plot as lines and also points (circles)
plot "floor.dat" with lines
plot "floor.dat" with points 1 6
# Close the file (so I don't have to close gnuplot to view it)
set output
Then I opened the resulting SVG file in Inkscape, changed the fill style for the circles (either blue or white fill), brought the plot lines to the top, and then brought the circles to the top (over the lines).