1

How do I insert a table into a circuit using CircuiTikz and using absolute coordinates?

I would like to know if there is a way to insert a table that is written with \tabular into the CircuiTikz enviroment.

The red circle is where I would like to instert the table:

enter image description here

I do not show you the code because is up to 240 lines.

ElSabio
  • 361
  • 5
    \node at (<x>,<y>) {\begin{tabular}{<cols>}<table>\end{tabular}};. – Skillmon Jan 05 '20 at 12:15
  • https://tex.stackexchange.com/questions/401264/how-to-insert-a-table-in-tikzedt-create-tikz-diagrams-with-tables-using-a-gui – js bibra Jan 05 '20 at 12:26
  • https://tex.stackexchange.com/questions/9301/nesting-a-tikz-picture-and-tabular-within-an-array-environment – js bibra Jan 05 '20 at 12:27
  • A runnable M.W.E. of a part of that picture, say "7476", would be nice ;) – cis Jan 05 '20 at 16:46
  • Why? Do you need any of that? In that case this is where I learned how to do it: https://tex.stackexchange.com/questions/521798/custom-integrated-circuits-with-circuitikz – ElSabio Jan 05 '20 at 16:48
  • 1
    A node with a tabular is a very nice solution, like @skillmon has suggested; you can also use a TikZ matrix (remember, a circuitikz environment is a tikzpicture renamed...). – Rmano Jan 05 '20 at 18:45

1 Answers1

0

The best solution so far is using the comment Skillmon sugests:

\node at (<x>,<y>) {\begin{tabular}{<cols>}<table>\end{tabular}};
ElSabio
  • 361