ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Karnaugh Maps
@ 2011-12-22 20:13 James 'Twey' Kay
  2011-12-22 22:13 ` luigi scarso
  0 siblings, 1 reply; 3+ messages in thread
From: James 'Twey' Kay @ 2011-12-22 20:13 UTC (permalink / raw)
  To: ntg-context

What would the list recommend for drawing (annotated) Karnaugh maps in 
ConTeXt?  I see there is a LaTeX package, but I think I would rather 
draw them myself.

   — Twey
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Karnaugh Maps
  2011-12-22 20:13 Karnaugh Maps James 'Twey' Kay
@ 2011-12-22 22:13 ` luigi scarso
  2011-12-23  0:45   ` Philipp A.
  0 siblings, 1 reply; 3+ messages in thread
From: luigi scarso @ 2011-12-22 22:13 UTC (permalink / raw)
  To: mailing list for ConTeXt users

On Thu, Dec 22, 2011 at 9:13 PM, James 'Twey' Kay <twey@twey.co.uk> wrote:
> What would the list recommend for drawing (annotated) Karnaugh maps in
> ConTeXt?  I see there is a LaTeX package, but I think I would rather draw
> them myself.
mkiv or mkii ?
Anyway, metapost --- have you seen metafun ?


-- 
luigi
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Karnaugh Maps
  2011-12-22 22:13 ` luigi scarso
@ 2011-12-23  0:45   ` Philipp A.
  0 siblings, 0 replies; 3+ messages in thread
From: Philipp A. @ 2011-12-23  0:45 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 724 bytes --]

2011/12/22 luigi scarso <luigi.scarso@gmail.com>

> mkiv or mkii ?
> Anyway, metapost --- have you seen metafun ?
>

metafun or tikz is the answer. your request is pretty special, so you’ll
have to do the majority of the work yourself (in contrast to using
something like the circuit library for tikz)

i tikz, you’d do sth like:

\usetikzlibrary[matrix,fit]
\starttikzpicture
\matrix[
    matrix of nodes,
    ampersand replacement=\&
] (m) {
    0 \& 0 \& 1\& \1 \\
    0 \& 0 \& 1\& \1 \\
    0 \& 0 \& 0\& \1 \\
    0 \& 1 \& 1\& \1 \\
}

\node[red, fit = (m-1-3) (m-2-4)] {};
\node[green, fit = (m-1-4) (m-4-4)] {};
\node[green, fit = (m-4-2) (m-4-3)] {};
\stoptikzpicture

(untested)

[-- Attachment #1.2: Type: text/html, Size: 1089 bytes --]

[-- Attachment #2: Type: text/plain, Size: 485 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-12-23  0:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-12-22 20:13 Karnaugh Maps James 'Twey' Kay
2011-12-22 22:13 ` luigi scarso
2011-12-23  0:45   ` Philipp A.

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).