azizever83 wrote:Hello everybody here,
I have a problem with my reference list. When I generate the output of my file the comma in the article name is inside of the quotation as shown in the attachment. Is there any way to solve this problem? Please note that I am using the "ieeetr" bibliography style.
Code: Select all
\bibliographystyle{ieeetr}
\bibliography{NbnList}
thanks in advance
Copy the file "ieeetr.bst" into your documents folder. Then rename it to "myieeetr.bst". Now find the following code in that file (simply search for tile):
Code: Select all
FUNCTION {format.title}
{ title empty$
{ "" }
{ "``" title "t" change.case$ * ",''" * }<---- edit this line
if$
}
FUNCTION {format.title.p}
{ title empty$
{ "" }
{ "``" title "t" change.case$ * ".''" * }<---- edit this line
if$
}
Change it to
Code: Select all
FUNCTION {format.title}
{ title empty$
{ "" }
{ "``" title "t" change.case$ * "''," * }
if$
}
FUNCTION {format.title.p}
{ title empty$
{ "" }
{ "``" title "t" change.case$ * "''." * }
if$
}
and it should work if you use
\bibliographystyle{myieeetr}
.