tabelle a confronto

  • Creatore
    Topic
  • #59939
    claudio
    Partecipante
      Up
      0
      Down
      ::


      avevo una tabella
      `
      \begin{table}[ht]
      \centering
      \subfloat[][AND]{%
      \begin{tabular}{ccc}
      \toprule
      A&B&$A\ B$\\
      \midrule
      0&0&0\\
      1&0&0\\
      0&1&0\\
      1&1&1\\
      \bottomrule
      \end{tabular}
      }
      \subfloat[][Porta AND]{%
      \tabincludegraphics{AND_ANSI}
      }
      \subfloat[][NAND]{%
      \begin{tabular}{ccc}
      \toprule
      A&B&$A\overline{\wedge} B$\\
      \midrule
      0&0&1\\
      1&0&1\\
      0&1&1\\
      1&1&0\\
      \bottomrule
      \end{tabular}
      }
      \subfloat[][Porta NAND]{%
      \tabincludegraphics{NAND_ANSI}
      }\quad
      \subfloat[][OR]{%
      \begin{tabular}{ccc}
      \toprule
      A&B&$A+ B$\\
      \midrule
      0&0&0\\
      1&0&1\\
      0&1&1\\
      1&1&1\\
      \bottomrule
      \end{tabular}
      }
      \subfloat[][Porta OR]{%
      \tabincludegraphics{OR_ANSI}
      }
      \subfloat[][NOR]{%
      \begin{tabular}{ccc}
      \toprule
      A&B&$A\overline{\vee} B$\\
      \midrule
      0&0&1\\
      1&0&0\\
      0&1&0\\
      1&1&0\\
      \bottomrule
      \end{tabular}
      }
      \subfloat[][Porta NOR]{%
      \tabincludegraphics{NOR_ANSI}
      }\quad
      \subfloat[][XOR]{%
      \begin{tabular}{ccc}
      \toprule
      A&B&$A\XOR B$\\
      \midrule
      0&0&0\\
      1&0&1\\
      0&1&1\\
      1&1&0\\
      \bottomrule
      \end{tabular}
      }
      \subfloat[][Porta XOR]{%
      \tabincludegraphics{XOR_ANSI}
      }
      \subfloat[][XNOR]{%
      \begin{tabular}{ccc}
      \toprule
      A&B&$A\overline{\XOR} B$\\
      \midrule
      0&0&1\\
      1&0&0\\
      0&1&0\\
      1&1&1\\
      \bottomrule
      \end{tabular}
      }
      \subfloat[][Porta XNOR]{%
      \tabincludegraphics{XNOR_ANSI}
      }\quad\quad\\\
      \subfloat[][NOT]{
      \begin{tabular}{cc}
      \toprule
      A&$\overline{A}$\\
      \midrule
      0&1\\
      1&0\\
      \bottomrule
      \end{tabular}
      }
      \subfloat[][Porta NOT]{%
      \tabincludegraphics{NOT_ANSI}
      }
      \caption{Porte logiche 0 1}%
      \label{Tab:portelogiche01}%
      \end{table}
      `
      che devo sostituire per un problema di uniformità dei disegni voglio usare circuitikz
      con la seguente
      `
      \begin{table}
      \centering
      \begin{tabular}{cccc}
      \begin{tabular}{ccc}
      \toprule
      A&B&$A\ B$\\
      \midrule
      0&0&0\\
      1&0&0\\
      0&1&0\\
      1&1&1\\
      \bottomrule %\\
      \end{tabular}
      &
      \begin{circuitikz} \draw
      (0,0) node[and port] {}
      ;\end{circuitikz}&
      \begin{tabular}{ccc}
      \toprule
      A&B&$A\overline{\wedge} B$\\
      \midrule
      0&0&1\\
      1&0&1\\
      0&1&1\\
      1&1&0\\
      \bottomrule %\\
      \end{tabular}
      &
      \begin{circuitikz} \draw
      (0,0) node[nand port] {}
      ;\end{circuitikz}\\
      \multicolumn{2}{c}{AND}&\multicolumn{2}{c}{NAND}\\
      \begin{tabular}{ccc}
      \toprule
      A&B&$A+ B$\\
      \midrule
      0&0&0\\
      1&0&1\\
      0&1&1\\
      1&1&1\\
      \bottomrule %\\
      \end{tabular}
      &
      \begin{circuitikz} \draw
      (0,0) node[or port] {}
      ;\end{circuitikz}
      &
      \begin{tabular}{ccc}
      \toprule
      A&B&$A\overline{\vee} B$\\
      \midrule
      0&0&1\\
      1&0&0\\
      0&1&0\\
      1&1&0\\
      \bottomrule %\\
      \end{tabular}
      &
      \begin{circuitikz} \draw
      (0,0) node[nor port] {}
      ;\end{circuitikz} \\
      \multicolumn{2}{c}{OR}&\multicolumn{2}{c}{NOR}\\
      \begin{tabular}{ccc}
      \toprule
      A&B&$A\XOR B$\\
      \midrule
      0&0&0\\
      1&0&1\\
      0&1&1\\
      1&1&0\\
      \bottomrule %\\
      \end{tabular}
      &
      \begin{circuitikz} \draw
      (0,0) node[xor port] {}
      ;\end{circuitikz}
      &
      \begin{tabular}{ccc}
      \toprule
      A&B&$A\overline{\XOR} B$\\
      \midrule
      0&0&1\\
      1&0&0\\
      0&1&0\\
      1&1&1\\
      \bottomrule %\\
      \end{tabular}
      &
      \begin{circuitikz} \draw
      (0,0) node[xnor port] {}
      ;\end{circuitikz}\\
      \multicolumn{2}{c}{XOR}&\multicolumn{2}{c}{XNOR}\\
      &
      \begin{tabular}{cc}
      \toprule
      A&$\overline{A}$\\
      \midrule
      0&1\\
      1&0\\
      \bottomrule %\\
      \end{tabular}
      &
      \begin{circuitikz} \draw
      (0,0) node[not port] {}
      ;\end{circuitikz}\\
      &
      \multicolumn{2}{c}{NOT}\\
      \end{tabular}
      \caption{Porte logiche}
      \end{table}
      `
      ma è decisamente più bruttina come posso migliorarla?
      Grazie
      Claudio

    Visualizzazione 8 filoni di risposte
    • Autore
      Risposte
      • #59940
        admin
        Amministratore del forum
          Up
          0
          Down
          ::


          Devi fornire un E.M.C.(*). Così nessuno potrà dirti come migliorarla.

          Ciao
          Orlando
          _________________
          (*)
          E.M.C. (esempio minimo compilabile):
          `\documentclass[color=blue][/color]{}

          \begin{document}

          \end{document}`

        • #59941
          claudio
          Partecipante
            Up
            0
            Down
            ::


            non ho problemi di compilazione..
            questa è l’intestazione..
            `

            \documentclass[a4paper,oneside]{book}

            \usepackage[T1]{fontenc}
            \usepackage[utf8]{inputenc}
            \usepackage{amsmath}
            \usepackage{amsfonts}
            \usepackage{amssymb}
            \usepackage[scaled]{uarial}
            %\renewcommand*\familydefault{\sfdefault} %% Only if the base font of the document is to be sans serif
            \usepackage[italian]{babel}
            %\usepackage{lmodern}
            \usepackage[frenchstyle]{kpfonts}

            \usepackage{microtype}
            \usepackage{bm}

            \usepackage[italian]{varioref}
            \newcommand{\nobs}{\nobreakspace}
            \usepackage{cancel}
            \usepackage[
            top=1.8cm,
            bottom=1.8cm,
            paper=a4paper,%
            pdftex,%
            ]{geometry}

            \usepackage{pgf,tikz,tkz-tab,circuitikz}
            \usetikzlibrary{calc}
            \usetikzlibrary{shapes,arrows}
            \tikzstyle{decision} = [diamond, draw, text width=4.5em, text badly centered, node distance=3cm, inner sep=0pt]
            \tikzstyle{block} = [rectangle, draw,
            text width=5em, text centered, rounded corners, minimum height=4em]
            \tikzstyle{line} = [draw, -latex]
            \pagestyle{empty}
            \usepackage{graphicx}%
            \pdfcompresslevel=9%
            \usepackage{rotating}
            \usepackage{float}
            \usepackage{booktabs} %gestione tabelle di qualit�
            \usepackage{multirow}
            \usepackage{array}
            \newcolumntype{L}{>{$\displaystyle}l<{$}} \newcolumntype{C}{>{$\displaystyle}c<{$}} \newcolumntype{R}{>{$\displaystyle}r<{$}} \newcolumntype{T}{>{\centering\arraybackslash}p{1em}}
            \newcolumntype{W}{>{\sffamily\Large $}c<{$}} \usepackage{multirow} \usepackage{subfig} \usepackage{caption} \DeclareCaptionStyle{ruled}{font=small,labelfont=bf,textfont=it}% caption caricato da subfig \usepackage{gn-logic14} \newcommand{\tabincludegraphics}[2][]{% \usepackage[np,autolanguage]{numprint} \usepackage{siunitx} \usepackage{fancyhdr} \pagestyle{fancy} \renewcommand{\chaptermark}[1]{% \markboth{\thechapter.\ #1}{\thechapter.\ #1}} \renewcommand{\sectionmark}[1]{\markright{\thesection.\ #1}} \renewcommand{\headrulewidth}{0.4pt} \renewcommand{\footrulewidth}{0pt} \lfoot{Finito di stampare il \today\ con\ \LaTeX} \cfoot{beta} \rfoot{\thepage} \renewcommand{\headrulewidth}{0.1pt} \renewcommand{\footrulewidth}{0.4pt} \addtolength{\headheight}{10.9pt} \frenchspacing% %--------- Indici localixcxddd \include{simboli_operatori} %todo inizio \usepackage[italian,colorinlistoftodos]{todonotes} \newcommand{\bassapriorita}[1]{\todo[color=green!40]{#1}} \newcommand{\mediapriorita}[1]{\todo[color=blue!40]{#1}} \newcommand{\altapriorita}[1]{\todo[color=red!40]{#1}} %todofine \usepackage{navigator} \usepackage[pdftex,hyperindex]{hyperref} \hypersetup{ pdftoolbar=true, pdfmenubar=true, pdftitle = {Tavole matematiche beta}, pdfauthor = {Claudio Duchi}, pdfcreator = {pdfLatex}, colorlinks=true, linkcolor=blue,%il colore dei link tipo gli indici citecolor=black,%il colore delle citazioni filecolor=black,%per i file presenti sul pc urlcolor=blue,%per il colore degli url urlbordercolor={1 1 1}, linkbordercolor={1 1 1} } \makeatletter \renewcommand\frontmatter{% \cleardoublepage \@mainmatterfalse \pagenumbering{arabic}} \renewcommand\mainmatter{% \cleardoublepage \@mainmattertrue} \makeatother %5subsubsectino numero e indice \setcounter{secnumdepth}{3} \setcounter{tocdepth}{3} \listfiles ` grazie

          • #59942
            Up
            0
            Down
            ::

            non ho problemi di compilazione..
            questa è l’intestazione..

            No, non lo è. La definizione di \tabincludegraphics è interrotta; c’è un file che viene incluso (e \include nel preambolo è assurdo) e non possiamo sapere che cosa ci sia dentro.

            Se vuoi che ti diamo una mano, produci un preambolo minimale per compilare la tua figura.

            Ciao
            Enrico

          • #59943
            claudio
            Partecipante
              Up
              0
              Down
              ::


              è un vecchio residuo
              me ne ero anche scordato
              scusate…
              `
              %italianizziomo gli operatori

              \DeclareMathOperator{\sen}{sen}
              \DeclareMathOperator{\tg}{tg}
              \DeclareMathOperator{\cotg}{cotg}
              \DeclareMathOperator{\arcsen}{arcsen}
              \DeclareMathOperator{\arctg}{arctg}
              \DeclareMathOperator{\arccotg}{arccotg}
              %\DeclareMathOperator{\sec}{sec}
              \DeclareMathOperator{\cosec}{cosec}
              \providecommand{\abs}[1]{\lvert#1\rvert}
              \providecommand{\norm}[1]{\lVert#1\rVert}
              %\newcommand{\gradi}{\ensuremath{^\circ}}
              %\newcommand{\gradi}{\ensuremath{\degree}}
              %\newcommand{\minuti}{\ensuremath{\arcminute}}
              \newcommand{\PA}[1]{\boldsymbol{\mathcal{#1}}}
              \newcommand{\PDA}{\PA{P}}
              \newcommand{\numberset}[1]{\boldsymbol{\mathbb{#1}}}
              \newcommand{\N}{\numberset{N}}
              \newcommand{\Nz}{\numberset{N}^{}_{0}}
              \newcommand{\Z}{\numberset{Z}}
              \newcommand{\Zn}{\numberset{Z^{-}}}
              \newcommand{\Zp}{\numberset{Z^{+}}}
              \newcommand{\Q}{\numberset{Q}}
              \newcommand{\Qp}{\numberset{Q^{+}}}
              \newcommand{\Qn}{\numberset{Q^{-}}}
              \newcommand{\R}{\numberset{R}}
              \newcommand{\Rp}{\numberset{R^{+}}}
              \newcommand{\Rn}{\numberset{R^{-}}}
              \newcommand{\nq}{\ensuremath{\mathbb{Q}}}
              \newcommand{\bld}[1]{\mbox{\boldmath $#1$}}

              \newcommand{\C}{\numberset{C}}
              %spazi fantasma
              \newcommand{\spa}{\phantom{1}}
              \let\origcleardoublepage\cleardoublepage
              \newcommand{\clearemptydoublepage}{%
              \clearpage
              {\pagestyle{empty}\origcleardoublepage}%
              }
              \let\cleardoublepage\clearemptydoublepage
              %spazio insecabile
              \newcommand{\nbs}{\nobreakspace}
              %le costanti
              \newcommand{\costante}{\textrm{costante}}
              `

            • #59944
              Up
              0
              Down
              ::

              è un vecchio residuo
              me ne ero anche scordato

              No, non ci siamo: il preambolo che hai presentato nel messaggio a cui ho risposto prima è sbagliato; inoltre non ci serve sapere tutti i pacchetti e i comandi che definisci. Per favore, solo ciò che è strettamente necessario per compilare il tuo esempio.

              Ciao
              Enrico

            • #59945
              claudio
              Partecipante
                Up
                0
                Down
                ::


                non si puo dire che non sono duro di comprendonio….
                `
                \documentclass{book}
                \usepackage{circuitikz}

                \usepackage{booktabs} %gestione tabelle di qualit�

                \usepackage{gn-logic14}
                \begin{document}
                \begin{table}
                \centering
                \begin{tabular}{cccc}
                \begin{tabular}{ccc}
                \toprule
                A&B&$A\ B$\\
                \midrule
                0&0&0\\
                1&0&0\\
                0&1&0\\
                1&1&1\\
                \bottomrule %\\
                \end{tabular}
                &
                \begin{circuitikz} \draw
                (0,0) node[and port] {}
                ;\end{circuitikz}&
                \begin{tabular}{ccc}
                \toprule
                A&B&$A\overline{\wedge} B$\\
                \midrule
                0&0&1\\
                1&0&1\\
                0&1&1\\
                1&1&0\\
                \bottomrule %\\
                \end{tabular}
                &
                \begin{circuitikz} \draw
                (0,0) node[nand port] {}
                ;\end{circuitikz}\\
                \multicolumn{2}{c}{AND}&\multicolumn{2}{c}{NAND}\\
                \begin{tabular}{ccc}
                \toprule
                A&B&$A+ B$\\
                \midrule
                0&0&0\\
                1&0&1\\
                0&1&1\\
                1&1&1\\
                \bottomrule %\\
                \end{tabular}
                &
                \begin{circuitikz} \draw
                (0,0) node[or port] {}
                ;\end{circuitikz}
                &
                \begin{tabular}{ccc}
                \toprule
                A&B&$A\overline{\vee} B$\\
                \midrule
                0&0&1\\
                1&0&0\\
                0&1&0\\
                1&1&0\\
                \bottomrule %\\
                \end{tabular}
                &
                \begin{circuitikz} \draw
                (0,0) node[nor port] {}
                ;\end{circuitikz} \\
                \multicolumn{2}{c}{OR}&\multicolumn{2}{c}{NOR}\\
                \begin{tabular}{ccc}
                \toprule
                A&B&$A\XOR B$\\
                \midrule
                0&0&0\\
                1&0&1\\
                0&1&1\\
                1&1&0\\
                \bottomrule %\\
                \end{tabular}
                &
                \begin{circuitikz} \draw
                (0,0) node[xor port] {}
                ;\end{circuitikz}
                &
                \begin{tabular}{ccc}
                \toprule
                A&B&$A\overline{\XOR} B$\\
                \midrule
                0&0&1\\
                1&0&0\\
                0&1&0\\
                1&1&1\\
                \bottomrule %\\
                \end{tabular}
                &
                \begin{circuitikz} \draw
                (0,0) node[xnor port] {}
                ;\end{circuitikz}\\
                \multicolumn{2}{c}{XOR}&\multicolumn{2}{c}{XNOR}\\
                &
                \begin{tabular}{cc}
                \toprule
                A&$\overline{A}$\\
                \midrule
                0&1\\
                1&0\\
                \bottomrule %\\
                \end{tabular}
                &
                \begin{circuitikz} \draw
                (0,0) node[not port] {}
                ;\end{circuitikz}\\
                &
                \multicolumn{2}{c}{NOT}\\
                \end{tabular}
                \caption{Porte logiche}
                \end{table}

                \end{document}
                `

              • #59946
                OldClaudio
                Partecipante
                  Up
                  0
                  Down
                  ::


                  Ho messo un po’ di pacchetti a buon senso e questo è il meglio (si fa per dire) che sono riuscito ad ottenere.
                  `
                  \documentclass{book}
                  \usepackage{tikz}
                  \usepackage{circuitikz}
                  \usepackage{subfig}
                  \usepackage{booktabs}
                  \usepackage{array}

                  \begin{document}
                  \begin{table}
                  \centering
                  \begin{tabular}{*2{m{0.30\textwidth}m{0.15\textwidth}}}
                  \begin{tabular}{ccc}
                  \toprule
                  A&B&$A\ B$\\
                  \midrule
                  0&0&0\\
                  1&0&0\\
                  0&1&0\\
                  1&1&1\\
                  \bottomrule %\\
                  \end{tabular}
                  &
                  \begin{circuitikz} \draw
                  (0,0) node[and port] {}
                  ;\end{circuitikz}
                  &
                  \begin{tabular}{ccc}
                  \toprule
                  A&B&$A\overline{\wedge} B$\\
                  \midrule
                  0&0&1\\
                  1&0&1\\
                  0&1&1\\
                  1&1&0\\
                  \bottomrule %\\
                  \end{tabular}
                  &
                  \begin{circuitikz} \draw
                  (0,0) node[nand port] {}
                  ;\end{circuitikz}
                  \\
                  & \multicolumn{1}{l}{AND}&&\multicolumn{1}{l}{NAND}
                  \\[2ex]
                  \begin{tabular}{ccc}
                  \toprule
                  A&B&$A+ B$\\
                  \midrule
                  0&0&0\\
                  1&0&1\\
                  0&1&1\\
                  1&1&1\\
                  \bottomrule %\\
                  \end{tabular}
                  &
                  \begin{circuitikz} \draw
                  (0,0) node[or port] {}
                  ;\end{circuitikz}
                  &
                  \begin{tabular}{ccc}
                  \toprule
                  A&B&$A\overline{\vee} B$\\
                  \midrule
                  0&0&1\\
                  1&0&0\\
                  0&1&0\\
                  1&1&0\\
                  \bottomrule %\\
                  \end{tabular}
                  &
                  \begin{circuitikz} \draw
                  (0,0) node[nor port] {}
                  ;\end{circuitikz}
                  \\
                  & \multicolumn{1}{l}{OR}&&\multicolumn{1}{l}{NOR}
                  \\[2ex]
                  \begin{tabular}{ccc}
                  \toprule
                  A&B&$A XOR B$\\
                  \midrule
                  0&0&0\\
                  1&0&1\\
                  0&1&1\\
                  1&1&0\\
                  \bottomrule %\\
                  \end{tabular}
                  &
                  \begin{circuitikz} \draw
                  (0,0) node[xor port] {}
                  ;\end{circuitikz}
                  &
                  \begin{tabular}{ccc}
                  \toprule
                  A&B&$A\overline{XOR} B$\\
                  \midrule
                  0&0&1\\
                  1&0&0\\
                  0&1&0\\
                  1&1&1\\
                  \bottomrule %\\
                  \end{tabular}
                  &
                  \begin{circuitikz} \draw
                  (0,0) node[xnor port] {}
                  ;\end{circuitikz}
                  \\
                  & \multicolumn{1}{l}{XOR}&&\multicolumn{1}{l}{XNOR}
                  \\[2ex]
                  \begin{tabular}{cc}
                  \toprule
                  A&$\overline{A}$\\
                  \midrule
                  0&1\\
                  1&0\\
                  \bottomrule %\\
                  \end{tabular}
                  &
                  \begin{circuitikz} \draw
                  (0,0) node[not port] {}
                  ;\end{circuitikz}
                  \\
                  & \multicolumn{1}{l}{NOT}
                  \\
                  \end{tabular}
                  \caption{Porte logiche}
                  \end{table}

                  \end{document}
                  `

                  Non sono riuscito a replicare i comandi dei segni logici, ma tu saprai certamente quali pacchetti hai usato e saprai come ripristinarli.

                  Certo che mettere sette oggetti in colonne non è facile e centrare l’ultima porta nota rispetto alle altre messe in due colonne sbilancia tutto; in ogni caso erano orrendi i nomi delle porte messi a metà tra la tabella e il disegno.

                  Il tutto resta abbastanza brutto, ma in effetti è un filino meno indecente del tuo.

                • #59947
                  Up
                  0
                  Down
                  ::

                  non si puo dire che non sono duro di comprendonio….
                  `…`

                  Questa è la mia proposta:
                  `\documentclass{book}
                  \usepackage{circuitikz}

                  \usepackage{booktabs} %gestione tabelle di qualitï¿?

                  \newenvironment{truthtable}[2][3]
                  {\begin{tabular}{*{#1}{c}}
                  \multicolumn{1}{l}{#2}\\}
                  {\end{tabular}}
                  \newcommand{\cport}[1]{%
                  \begin{circuitikz}
                  \draw (0,0) node [#1 port] {};
                  \end{circuitikz}}

                  \usepackage{gn-logic14}
                  \begin{document}

                  \begin{table}
                  \centering
                  \begin{tabular}{@{}cc@{\hspace{2cm}}cc@{}}
                  \begin{truthtable}{AND}
                  \toprule
                  $A$&$B$&$AB$\\
                  \midrule
                  0&0&0\\
                  1&0&0\\
                  0&1&0\\
                  1&1&1\\
                  \bottomrule
                  \end{truthtable}
                  & \cport{and} &
                  \begin{truthtable}{NAND}
                  \toprule
                  $A$&$B$&$A\mathbin{\overline{\wedge}}B$\\
                  \midrule
                  0&0&1\\
                  1&0&1\\
                  0&1&1\\
                  1&1&0\\
                  \bottomrule
                  \end{truthtable}
                  & \cport{nand} \\
                  \addlinespace[3ex]
                  \begin{truthtable}{OR}
                  \toprule
                  $A$&$B$&$A+B$\\
                  \midrule
                  0&0&0\\
                  1&0&1\\
                  0&1&1\\
                  1&1&1\\
                  \bottomrule
                  \end{truthtable}
                  & \cport{or} &
                  \begin{truthtable}{NOR}
                  \toprule
                  $A$&$B$&$A\mathbin{\overline{\vee}}B$\\
                  \midrule
                  0&0&1\\
                  1&0&0\\
                  0&1&0\\
                  1&1&0\\
                  \bottomrule
                  \end{truthtable}
                  & \cport{nor} \\
                  \addlinespace[3ex]
                  \begin{truthtable}{XOR}
                  \toprule
                  $A$&$B$&$A\XOR B$\\
                  \midrule
                  0&0&0\\
                  1&0&1\\
                  0&1&1\\
                  1&1&0\\
                  \bottomrule
                  \end{truthtable}
                  & \cport{xor} &
                  \begin{truthtable}{XNOR}
                  \toprule
                  $A$&$B$&$A\mathbin{\overline{\XOR}}B$\\
                  \midrule
                  0&0&1\\
                  1&0&0\\
                  0&1&0\\
                  1&1&1\\
                  \bottomrule
                  \end{truthtable}
                  & \cport{xnor} \\
                  \addlinespace[3ex]
                  \multicolumn{4}{c}{%
                  \begin{tabular}{@{}cc@{}}
                  \begin{truthtable}[2]{NOT}
                  \toprule
                  $A$&$\overline{A}$\\
                  \midrule
                  0&1\\
                  1&0\\
                  \bottomrule
                  \end{truthtable}
                  & \cport{not}
                  \end{tabular}}
                  \end{tabular}
                  \caption{Porte logiche}
                  \end{table}

                  \end{document} `
                  Ciao
                  Enrico

                • #59948
                  claudio
                  Partecipante
                    Up
                    0
                    Down
                    ::


                    grazie per la pazienza
                    Claudio

                Visualizzazione 8 filoni di risposte
                • Devi essere connesso per rispondere a questo topic.

                Go to top