-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
CriticMarkup LaTeX output uses \sout and \underline #121
Comments
Do you have a good example where things are broken? |
It looks like the \input{mmd6-article-leader}
\def\mytitle{Test}
\input{mmd6-article-begin}
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \underline{nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur}. Excepteur sint \sout{occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit }anim id est laborum.
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis \ul{nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur}. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
\input{mmd6-article-footer}
\end{document} |
fletcher
added a commit
that referenced
this issue
May 14, 2018
Will stick with default Thanks! |
Sounds like a good solution to me.
|
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
Since you are using the soul package, it would be a better idea to use its
\ul{...}
command for addition marking instead of\underline{...}
, as the latter does not flow text well, putting the underlined text into a float. Additionally you are using the\sout{...}
command, which doesn't work with soul, the\st{...}
command should be used instead.The text was updated successfully, but these errors were encountered: