Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 1.54 KB | None | 0 0
  1. \begin{table}[h]
  2. \begin{center}
  3. \catcode`\-=12
  4. \begin{tabular}{|c|c|}
  5. \hline
  6. $A$ & $\neg A$\\ \hline
  7. \textbf{P} & N \\ \hline
  8. \textbf{O} & O \\ \hline
  9. \textbf{X} & X \\ \hline
  10. \textbf{N} & P \\ \hline
  11. \end{tabular}
  12.  
  13. \begin{tabular}{|c|c|c|c|c|c|}
  14. \hline
  15. \multicolumn{2}{|c|}{\multirow{2}{*}{$A \wedge B$}} &
  16. \multicolumn{4}{|c|}{$B$} \\ \cline{3-6}
  17. \multicolumn{2}{|c|}{}
  18. & \textbf{P} & \textbf{O} & \textbf{X} & \textbf{N} \\ \hline
  19. \multirow{4}{*}{A}
  20. & \textbf{P} & P & O & X & N \\ \cline{2-6}
  21. & \textbf{O} & O & O & N & N \\ \cline{2-6}
  22. & \textbf{X} & X & N & X & N \\ \cline{2-6}
  23. & \textbf{N} & N & N & N & N \\ \hline
  24. \end{tabular}
  25.  
  26. \begin{tabular}{|c|c|c|c|c|c|}
  27. \hline
  28. \multicolumn{2}{|c|}{\multirow{2}{*}{$A \vee B$}} &
  29. \multicolumn{4}{|c|}{$B$} \\ \cline{3-6}
  30. \multicolumn{2}{|c|}{}
  31. & \textbf{P} & \textbf{O} & \textbf{X} & \textbf{N} \\ \hline
  32. \multirow{4}{*}{A}
  33. & \textbf{P} & P & P & P & P \\ \cline{2-6}
  34. & \textbf{O} & P & O & P & O \\ \cline{2-6}
  35. & \textbf{X} & P & P & X & X \\ \cline{2-6}
  36. & \textbf{N} & P & O & X & N \\ \hline
  37. \end{tabular}
  38.  
  39. \begin{tabular}{|c|c|c|c|c|c|}
  40. \hline
  41. \multicolumn{2}{|c|}{\multirow{2}{*}{$A \rightarrow B$}} &
  42. \multicolumn{4}{|c|}{$B$} \\ \cline{3-6}
  43. \multicolumn{2}{|c|}{}
  44. & \textbf{P} & \textbf{O} & \textbf{X} & \textbf{N} \\ \hline
  45. \multirow{4}{*}{A}
  46. & \textbf{P} & P & O & X & N \\ \cline{2-6}
  47. & \textbf{O} & P & O & P & O \\ \cline{2-6}
  48. & \textbf{X} & P & P & X & X \\ \cline{2-6}
  49. & \textbf{N} & P & P & P & P \\ \hline
  50. \end{tabular}
  51. \end{center}
  52. \end{table}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement