2024-11-16 15:50:33 -06:00
|
|
|
module Debate.Arguments.Template exposing (..)
|
|
|
|
|
|
|
|
import Debate.Types exposing (..)
|
|
|
|
|
|
|
|
|
|
|
|
argumentTemplate : Argument
|
|
|
|
argumentTemplate =
|
|
|
|
{ argumentTitle = "Title"
|
|
|
|
, propositionTitle = "Proposition"
|
|
|
|
, propositionSummary = "Summary"
|
2024-11-16 17:28:46 -06:00
|
|
|
, proofLink = ""
|
2024-11-16 15:50:33 -06:00
|
|
|
, definitionTable =
|
|
|
|
[ { definiendum = ""
|
|
|
|
, definiens = "prop 1"
|
|
|
|
}
|
|
|
|
, { definiendum = ""
|
|
|
|
, definiens = "prop 2"
|
|
|
|
}
|
|
|
|
, { definiendum = ""
|
|
|
|
, definiens = "prop 3"
|
|
|
|
}
|
|
|
|
, { definiendum = ""
|
|
|
|
, definiens = "prop 4"
|
|
|
|
}
|
|
|
|
, { definiendum = ""
|
|
|
|
, definiens = "prop 5"
|
|
|
|
}
|
|
|
|
, { definiendum = ""
|
|
|
|
, definiens = "variable 1"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
, argumentFormalization =
|
|
|
|
[ { premises =
|
|
|
|
[ { premise = "premise 1"
|
|
|
|
, notation = ""
|
|
|
|
}
|
|
|
|
, { premise = "premise 2"
|
|
|
|
, notation = ""
|
|
|
|
}
|
|
|
|
, { premise = "premise 3"
|
|
|
|
, notation = ""
|
|
|
|
}
|
|
|
|
, { premise = "premise 4"
|
|
|
|
, notation = ""
|
|
|
|
}
|
|
|
|
, { premise = "premise 5"
|
|
|
|
, notation = ""
|
|
|
|
}
|
|
|
|
]
|
|
|
|
, conclusion = "conclusion"
|
|
|
|
, conclusionNotation = "(∴)"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|