website/frontend/src/Config/Pages/Debate/Arguments/Inferences/Template.elm

58 lines
1.4 KiB
Elm
Raw Normal View History

2024-12-09 19:53:09 -06:00
module Config.Pages.Debate.Arguments.Inferences.Template exposing (..)
2024-11-16 15:50:33 -06:00
2024-12-09 19:53:09 -06:00
import Config.Pages.Debate.Arguments.Types exposing (..)
2024-11-16 15:50:33 -06:00
2024-11-16 17:48:59 -06:00
argument : Argument
argument =
2024-11-22 15:10:32 -06:00
{ argumentTitle = ""
, propositionTitle = ""
, propositionReductio = ""
2024-11-22 15:10:32 -06:00
, propositionSummary = ""
2024-11-16 17:28:46 -06:00
, proofLink = ""
2024-11-25 18:50:12 -06:00
, argumentCertainty = 1
2024-11-26 04:32:11 -06:00
, argumentImage = ""
2024-11-16 15:50:33 -06:00
, definitionTable =
[ { definiendum = ""
2024-11-16 18:34:05 -06:00
, definiens = ""
2024-11-16 15:50:33 -06:00
}
, { definiendum = ""
2024-11-16 18:34:05 -06:00
, definiens = ""
2024-11-16 15:50:33 -06:00
}
, { definiendum = ""
2024-11-16 18:34:05 -06:00
, definiens = ""
2024-11-16 15:50:33 -06:00
}
, { definiendum = ""
2024-11-16 18:34:05 -06:00
, definiens = ""
2024-11-16 15:50:33 -06:00
}
, { definiendum = ""
2024-11-16 18:34:05 -06:00
, definiens = ""
2024-11-16 15:50:33 -06:00
}
, { definiendum = ""
2024-11-16 18:34:05 -06:00
, definiens = ""
2024-11-16 15:50:33 -06:00
}
]
, argumentFormalization =
[ { premises =
2024-11-16 18:34:05 -06:00
[ { premise = ""
2024-11-16 15:50:33 -06:00
, notation = ""
}
2024-11-16 18:34:05 -06:00
, { premise = ""
2024-11-16 15:50:33 -06:00
, notation = ""
}
2024-11-16 18:34:05 -06:00
, { premise = ""
2024-11-16 15:50:33 -06:00
, notation = ""
}
2024-11-16 18:34:05 -06:00
, { premise = ""
2024-11-16 15:50:33 -06:00
, notation = ""
}
2024-11-16 18:34:05 -06:00
, { premise = ""
2024-11-16 15:50:33 -06:00
, notation = ""
}
]
2024-11-16 18:34:05 -06:00
, conclusion = ""
2024-11-22 15:10:32 -06:00
, conclusionNotation = ""
2024-11-16 15:50:33 -06:00
}
]
}