Tikz, subfigura y título.

Tikz, subfigura y título.

Estoy tratando de dibujar algunos nudos uno al lado del otro con tikz, etiquetarlos, pero simplemente no funciona con mi código. Yo uso el paquete: caption, subcaption, tikz (nudos).

\usepackage[utf8]{inputenc}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{tikz}
\usetikzlibrary{matrix, arrows, knots}
\usepackage{graphicx}

\begin{document}
  \begin{figure}
    \begin{subfigure}[b]{0.45\textwidth}
      \centering
        \resizebox{\linewidth}{!}{           
          \begin{tikzpicture}
            \foreach \brk in {0,1,2} {
            \begin{scope}[rotate=\brk * 120]
            \node[knot crossing, transform shape,
            inner sep=1.5pt] (k\brk) at (0,-1) {};
            \end{scope}
            }
            \foreach \brk in {0,1,2} {
            \pgfmathparse{int(Mod(\brk - 1,3))}
            \edef\brl{\pgfmathresult}
            \draw[thick,red] (k\brk) .. controls (
            k\brk.4 north west) and (k\brl.4 north east) .. (k\brl.center);
            \draw[thick,red] (k\brk.center) .. controls (k\brk.16 south west) and (k\brl.16 south east) .. (k\brl);
            }
        \end{tikzpicture}
      }
    \caption{Trefoil}
    \label{a}
   \end{subfigure}
   \begin{subfigure}[b]{0.45\textwidth}
      \centering
        \resizebox{\linewidth}{!}{ 
          \begin{tikzpicture}
            \def\foil{3}
            \foreach \brk in {1,...,\foil} {
            \begin{scope}[rotate=\brk * 360/\foil]
            \node[transform shape, knot crossing, inner sep=1.5pt] (k\brk) at (0,-1) {};
            \end{scope}
            }
            \draw[thick,red] (0,0) \foreach \brk in {1,...,\foil} {let \na=\brk, \nb={int(Mod(\brk,\foil)+1)}, \nc={int(Mod(\brk+1,\foil)+1)} in (k\na) .. controls (k\na.16 south east) and (k\nb.16 south west) .. (k\nb.center) .. controls (k\nb.4 north east) and (k\nc.4 north west) .. (k\nc)};
          \end{tikzpicture}
        }
        \caption{Cinquefoil}
        \label{b}
      \end{subfigure}
    \end{figure}
  \caption{Examples of knots} 
  \end{figure}
\end{document}

Respuesta1

Como se mencionó en los comentarios, su código tiene varios errores: no hay clase de documento, un extra \end{figure}, mal uso de la letsintaxis PGF y no incluye la calcbiblioteca que eso requiere. (Incluyes varias cosasnorequerido para compilar su ejemplo, pero omita varios que son necesarios).

Dicho esto, una vez que se corrigen esos errores, las dos figuras parecen cambiar de tamaño de manera similar. De hecho, parecen idénticos.

Mi mejor suposición es que continúas con la compilación a pesar de los errores con resultados predeciblemente no deseados. Ni siquiera las advertencias deberían ignorarse sin más. Es necesario corregir los errores. TeX le está diciendo que algo salió mal y no sabe qué hacer. Generalmente, intentará hacer algo si usted insiste, pero esto no tiene como objetivo producir el resultado previsto. Su objetivo es posiblemente proporcionar información útil para fines de depuración.

nudos

\documentclass{article}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{tikz}
\usetikzlibrary{knots,calc}
\begin{document}
\begin{figure}
  \begin{subfigure}[b]{0.45\textwidth}
    \centering
    \resizebox{\linewidth}{!}{
      \begin{tikzpicture}
        \foreach \brk in {0,1,2} {
          \begin{scope}[rotate=\brk * 120]
            \node[knot crossing, transform shape,
            inner sep=1.5pt] (k\brk) at (0,-1) {};
          \end{scope}
        }
        \foreach \brk in {0,1,2} {
          \pgfmathparse{int(Mod(\brk - 1,3))}
          \edef\brl{\pgfmathresult}
          \draw[thick,red] (k\brk) .. controls (
          k\brk.4 north west) and (k\brl.4 north east) .. (k\brl.center);
          \draw[thick,red] (k\brk.center) .. controls (k\brk.16 south west) and (k\brl.16 south east) .. (k\brl);
        }
      \end{tikzpicture}
    }
    \caption{Trefoil}
    \label{a}
  \end{subfigure}
  \begin{subfigure}[b]{0.45\textwidth}
    \centering
    \resizebox{\linewidth}{!}{
      \begin{tikzpicture}
        \def\foil{3}
        \foreach \brk in {1,...,\foil} {
          \begin{scope}[rotate=\brk * 360/\foil]
            \node[transform shape, knot crossing, inner sep=1.5pt] (k\brk) at (0,-1) {};
          \end{scope}
        }
        \draw[thick,red] (0,0) \foreach \brk in {1,...,\foil} {let \n0=\brk, \n1={int(Mod(\brk,\foil)+1)}, \n2={int(Mod(\brk+1,\foil)+1)} in (k\n0) .. controls (k\n0.16 south east) and (k\n1.16 south west) .. (k\n1.center) .. controls (k\n1.4 north east) and (k\n2.4 north west) .. (k\n2)};
      \end{tikzpicture}
    }
    \caption{Cinquefoil}
    \label{b}
  \end{subfigure}
\caption{Examples of knots}
\end{figure}
\end{document}

información relacionada