三段論法
例えば、
故に
code:d3.js
const graph = `
graph g {
A -- B ;
A -- C ;
B -- C ;
{rank = same; B; C}
}
`
『オルガノン』
『分析論後書』
Argumentation theory
Buddhist logic
Enthymeme
Other types of syllogism:
Disjunctive syllogism
Hypothetical syllogism
Polysyllogism
Prosleptic syllogism
Quasi-syllogism
Statistical syllogism
Syllogistic fallacy
The False Subtlety of the Four Syllogistic Figures
Venn diagram
code:d3.js
d3.select("#graph").graphviz()
.fade(false)
.renderDot(graph);
code:vizScript.js
const graph = `
graph g {
A -- B ;
A -- C ;
B -- C ;
{rank = same; B; C}
}
`;
const viz = new Viz();
viz.renderSVGElement(graph)
.then(function(element) {
const editor = document.getElementById('editor');
editor.appendChild(element);
});
viz-script-button.icon (実行ボタン)