-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
LaTeX reader: support (ignore) stackengine #6898
New issue
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
base: main
Are you sure you want to change the base?
Conversation
We support commands from some more common packages, but it would be madness to try to support every package. I've never heard for stackengine. What does it do? Why do you need to ignore this? Won't it be parsed as raw tex, which will be ignored anyway in most formats? |
It turned out to be the simplest way to adjust (vertically) table cells in some cases. But since pandoc doesn't understand it, the content of the cells is lost in translation 😏 So the stackengine is a means to make an original document neat and this PR fixes translation to other forms. Original: :) LaTeX: \begin{tabularx}{\textwidth}{X|r|r}
\hline\hline
& \multicolumn{2}{c}{От атомизатора}\\
\cline{2-3}
& 4 фута & \addstackgap{$5\frac12$ футов} \\
%... |
Could you work around this by giving a definition of the macro in your document:
or something like that? |
I tried this ( |
Maybe try with |
I've just pushed a fix so that |
@@ -0,0 +1,18 @@ | |||
# stackengine |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be renamed test/command/6898.md
-- that makes it easier for us to locate the issue to which a test corresponds.
No description provided.