-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deactivate underscores when expanding natbib \bibitem optional labels
- Loading branch information
Showing
5 changed files
with
73 additions
and
2 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
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
\documentclass{article} | ||
\usepackage{natbib} | ||
\begin{document} | ||
% These could cause problems if used with \cite, but are OK standalone in {thebibliography}. | ||
\begin{thebibliography}{} | ||
|
||
\bibitem[_xy(1899)]{_xyz_1899} | ||
A name of something. (accessed Nov 01, 1899). | ||
|
||
\bibitem[Ex$\ddot{a}$mple(1899)]{mathy} | ||
Another name. | ||
|
||
\end{thebibliography} | ||
\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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<?latexml class="article"?> | ||
<?latexml package="natbib"?> | ||
<?latexml RelaxNGSchema="LaTeXML"?> | ||
<document xmlns="http://dlmf.nist.gov/LaTeXML"> | ||
<resource src="LaTeXML.css" type="text/css"/> | ||
<resource src="ltx-article.css" type="text/css"/> | ||
<bibliography xml:id="bib"> | ||
<title>References</title> | ||
<biblist> | ||
<bibitem key="_xyz_1899" xml:id="bib.bib1"> | ||
<tags> | ||
<tag role="number">1</tag> | ||
<tag role="year">1899</tag> | ||
<tag role="authors">˙xy</tag> | ||
<tag role="refnum">˙xy (1899)</tag> | ||
<tag role="key">_xyz_1899</tag> | ||
</tags> | ||
<bibblock> | ||
A name of something. (accessed Nov 01, 1899). | ||
</bibblock> | ||
</bibitem> | ||
<bibitem key="mathy" xml:id="bib.bib2"> | ||
<tags> | ||
<tag role="number">2</tag> | ||
<tag role="year">1899</tag> | ||
<tag role="authors">Ex<Math mode="inline" tex="\ddot{a}" text="ddot@(a)" xml:id="bib.bib2.m1"> | ||
<XMath> | ||
<XMApp> | ||
<XMTok name="ddot" role="OVERACCENT">¨</XMTok> | ||
<XMTok font="italic" role="UNKNOWN">a</XMTok> | ||
</XMApp> | ||
</XMath> | ||
</Math>mple</tag> | ||
<tag role="refnum">Ex<Math mode="inline" tex="\ddot{a}" text="ddot@(a)" xml:id="bib.bib2.m2"> | ||
<XMath> | ||
<XMApp> | ||
<XMTok name="ddot" role="OVERACCENT">¨</XMTok> | ||
<XMTok font="italic" role="UNKNOWN">a</XMTok> | ||
</XMApp> | ||
</XMath> | ||
</Math>mple (1899)</tag> | ||
<tag role="key">mathy</tag> | ||
</tags> | ||
<bibblock> | ||
Another name. | ||
</bibblock> | ||
</bibitem> | ||
</biblist> | ||
</bibliography> | ||
</document> |