You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consider the following
{{#system}}
system of linear equations.
{{/system}}
{{#vec_eq}}
vector equation.
{{/vec_eq}}
<me>
{{system}}
{{vec_eq}}
</me>
If system or vec_eq is not defined (which should always happen here), this inserts a blank line before the vector equation, which causes an error in compiling LaTeX. This can probably be fixed by the user here by
<me>
{{system}} {{vec_eq}}
</me>
but it would be ideal for Checkit to, whenever it encounters <me>, gobble up any blank lines.
The text was updated successfully, but these errors were encountered:
LaTeX does not allow blank lines in displaymath. However, if one is not careful, the template can generate this. Example: https://github.com/StevenClontz/checkit-tbil-la-2021-dev/blob/65dc25b4f6c45a4d0992aa8701b984a19665e614/outcomes/LE4.xml#L12
Code:
If system or vec_eq is not defined (which should always happen here), this inserts a blank line before the vector equation, which causes an error in compiling LaTeX. This can probably be fixed by the user here by
but it would be ideal for Checkit to, whenever it encounters
<me>
, gobble up any blank lines.The text was updated successfully, but these errors were encountered: