forked from brucemiller/LaTeXML
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
xparse fixes for older texlives (brucemiller#1204)
* avoid spacing issues from texlive 2018 * xparse test for texlive > 2018 * robust when tex missing * skip marker * refactor to local rules
- Loading branch information
1 parent
8870c75
commit a11b274
Showing
6 changed files
with
57 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
\documentclass{article} | ||
\usepackage{xparse} | ||
\begin{document} | ||
% example from documentation at: https://mirror.las.iastate.edu/tex-archive/macros/latex/contrib/l3packages/xparse.pdf | ||
\NewDocumentCommand {\conjugate} { m O{#1ed} O{#2} } {(#1,#2,#3)} | ||
\begin{document} | ||
\conjugate {walk} % => (walk,walked,walked) | ||
|
||
\conjugate {find} [found] % => (find,found,found) | ||
|
||
\conjugate {do} [did] [done] % => (do,did,done) | ||
\end{document} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters