The following are the standard anchors available in TikZ (to the best of my knowledge):
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{positioning}
\tikzset{dot/.style = {
shape = circle,
draw = black,
fill = black,
minimum size = 0.2cm
}}
\tikzset{squarenode/.style = {
shape = rectangle,
draw = black,
minimum height = 10cm,
minimum width = 10cm
}}
\begin{document}
\begin{tikzpicture}[node distance=2cm]
\node (a) at (0,0) [squarenode] {};
\node[label=a.center] at (a.center) [dot] {};
\node[label=a.north] at (a.north) [dot] {};
\node[label=a.south] at (a.south) [dot] {};
\node[label=a.east] at (a.east) [dot] {};
\node[label=a.west] at (a.west) [dot] {};
\node[label=a.north east] at (a.north east) [dot] {};
\node[label=a.north west] at (a.north west) [dot] {};
\node[label=a.south east] at (a.south east) [dot] {};
\node[label=a.south west] at (a.south west) [dot] {};
\end{tikzpicture}
\end{document}
Now, how do I locate the following points:
- Point between a.south and a.south west (midpoint and normal point - any point on the line)
- Point between a.south west and a.center (midpoint and normal point - any point on the line)



.base,.base east,.base westand all the.<angle>for the standard rectangle shape. – Kpym Mar 29 '19 at 10:17