Skip to content

Commit

Permalink
Add support for \import and \subimport
Browse files Browse the repository at this point in the history
Fixes #207.
  • Loading branch information
valentjn committed Feb 12, 2023
1 parent ec7f9e2 commit 220379d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions changelog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@
<action type="fix" issue="#178" due-to="Stanley F (@sfo)">
Fix plural dummy in German languages
</action>
<action type="fix" issue="#207">
Add support for `\import` and `\subimport` (LaTeX)
</action>
<action type="fix" issue="#213,#214" due-to="@casenull">
Fix Babel languages `austrian`, `naustrian`, `swissgerman`, and `nswissgerman` not recognized (LaTeX)
</action>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -651,6 +651,8 @@ object LatexAnnotatedTextBuilderDefaults {
LatexCommandSignature("\\ifcurrentfield{}"),
LatexCommandSignature("\\ifentrytype{}"),
LatexCommandSignature("\\iftoggle{}"),
LatexCommandSignature("\\import{}{}"),
LatexCommandSignature("\\import*{}{}"),
LatexCommandSignature("\\in[]", LatexCommandSignature.Action.Dummy),
LatexCommandSignature("\\include{}"),
LatexCommandSignature("\\includegraphics{}"),
Expand Down Expand Up @@ -822,6 +824,8 @@ object LatexAnnotatedTextBuilderDefaults {
LatexCommandSignature("\\smartcite[][]{}", LatexCommandSignature.Action.Dummy),
LatexCommandSignature("\\stepcounter{}"),
LatexCommandSignature("\\steradian", LatexCommandSignature.Action.Dummy),
LatexCommandSignature("\\subimport{}{}"),
LatexCommandSignature("\\subimport*{}{}"),
LatexCommandSignature("\\supercite{}", LatexCommandSignature.Action.Dummy),
LatexCommandSignature("\\tesla", LatexCommandSignature.Action.Dummy),
LatexCommandSignature("\\textcite{}", LatexCommandSignature.Action.Dummy),
Expand Down

0 comments on commit 220379d

Please sign in to comment.