I'm looking for a command in LaTeX that overwrites or removes the previous characters which were automatically created by a package I use.
I'm using the jurabib package for my citations. For example with this command:
\cite[Pages 3-5]{key}
It has an option to automatically create a comma before the page range (commabeforerest).
Which is what I need for most citations.
This would look like:
Author, Title, Pages 1-3.
There is one cite where I do not need the comma. So I want to know if there is a way to overwrite the previous two characters (the automatically created space and comma), so I could use something like this command for my special cite:
\cite[\OverwritePreviousChars{2} Pages 4-6]{key}
Which would create this:
Author, Title Pages 4-6.
