We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@\qquad}
The following code produces a warning (and fails to convert the LaTeX array):
--- format: docx --- $$ \begin{array}{l@{\qquad}l} \text{Infection/colonization episode} & \text{Waning immunity episode}\\ b^{\prime}(t) = \mu_{0}b(t) - cy(t) & b(t) = 0 \\ y^{\prime}(t) = \mu y(t) & y^{\prime}(t) = -\alpha y(t)^r \end{array} $$
[WARNING] Could not convert TeX math \begin{array}{l@{\qquad}l} \text{Infection/colonization episode} & \text{Waning immunity episode}\\ b^{\prime}(t) = \mu_{0}b(t) - cy(t) & b(t) = 0 \\ y^{\prime}(t) = \mu y(t) & y^{\prime}(t) = -\alpha y(t)^r \end{array} , rendering as TeX:
Without @{\qquad} the array works:
@{\qquad}
--- format: docx --- $$ \begin{array}{ll} \text{Infection/colonization episode} & \text{Waning immunity episode}\\ b^{\prime}(t) = \mu_{0}b(t) - cy(t) & b(t) = 0 \\ y^{\prime}(t) = \mu y(t) & y^{\prime}(t) = -\alpha y(t)^r \end{array} $$
The text was updated successfully, but these errors were encountered:
Here's an explanation of what @{...} and !{} do in this context. https://tex.stackexchange.com/a/207463 We should probably skip both.
@{...}
!{}
Sorry, something went wrong.
d47229b
No branches or pull requests
Discussed in jgm/pandoc#10221
The following code produces a warning (and fails to convert the LaTeX array):
Without
@{\qquad}
the array works:The text was updated successfully, but these errors were encountered: