BibTeX, biblatex and biberChanges in Bibliography Style

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
marie2011
Posts: 138
Joined: Mon Feb 06, 2012 4:58 pm

Changes in Bibliography Style

Post by marie2011 »

Dear forum members,

I was wondering if you could help me trying to delete some punctuation marks.

Here is the code. When compiling the document the system says there are unsolved references. Attached you will find a picture of both references.

Code: Select all

\documentclass[
12pt,%
%  draft,%
  twoside,%
  BCOR10mm,%
%  bibtotocnumbered,% <= obsolete
toc=listof,
toc=bibliography,
numbers=noenddot
]{scrreprt}

\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english,ngerman,catalan,spanish]{babel}
\usepackage{natbib}
\usepackage{mystyle}

\begin{document}
1. Example: After (Ed.) there should not be a comma but a full stop.
\cite{Ba1996}

2. Example: Before (Eds.) there should not be a comma but no
punctuation mark at all.
\cite{Brammerts2001}

\bibliographystyle{miapalike}
 \ifpdf
 \bibliography{mybibliography}
 \else
 \fi

\end{document}

These are the references in mybibliography:

Code: Select all

@InCollection{Ba1996, 
  author = 	 {H. Brammerts}, 
  title = 	 {{T{\'a}ndem a trav{\'e}s de Internet y la Red Internacional T{\'a}ndem por correo electr{\'o}nico}}, 
  booktitle = 	 {{Gu{\'i}a para el aprendizaje de lenguas en t{\'a}ndem a trav{\'e}s de Internet}}, 
  OPTcrossref =  {}, 
  OPTkey = 	 {}, 
  pages = 	 {3-16}, 
  OPTpublisher = {{Servicio de Publicaciones, Universidad de Oviedo}}, 
  year = 	 {1996}, 
  editor = 	 {{H. Brammerts y D. Little}}, 
  OPTvolume = 	 {}, 
  OPTnumber = 	 {}, 
  OPTseries = 	 {}, 
  OPTtype = 	 {}, 
  OPTchapter = 	 {}, 
  address = 	 {Oviedo: Servicio de Publicaciones de la  Universidad de Oviedo}, 
  OPTedition = 	 {}, 
  OPTmonth = 	 {}, 
  OPTnote = 	 {}, 
  OPTannote = 	 {} 
}

@Book{Brammerts2001, 
  ALTauthor = 	 {}, 
  editor = 	 {H. Brammerts and K. Kleppin}, 
  title = 	 {{Selbstgesteuertes Sprachenlernen im Tandem. Ein Handbuch}}, 
  publisher = 	 {}, 
  year = 	 {2001}, 
  OPTkey = 	 {}, 
  OPTvolume = 	 {}, 
  OPTnumber = 	 {}, 
  OPTseries = 	 {}, 
  address = 	 {T{\"u}bingen{:} Stauffenburg}, 
  OPTedition = 	 {}, 
  OPTmonth = 	 {}, 
  OPTnote = 	 {}, 
  OPTannote = 	 {} 
}
Attached you will find the .bst file. I tried to make the changes myself but I did not manage.

I was wondering if you know how to make the changes.

Many thanks in advance.

Regards,

Marie
Attachments
miapalike.bst
(24.05 KiB) Downloaded 335 times
references.png
references.png (31.83 KiB) Viewed 2767 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

kaiserkarl13
Posts: 707
Joined: Tue Mar 25, 2008 5:02 pm

Changes in Bibliography Style

Post by kaiserkarl13 »

I get no unresolved references when I run this. I did have to comment out your \ifpdf line and your inclusion of the "mystyle" package (which I obviously don't have), but other than that it worked fine other than the unused global option warnings.

Did you remember to run BibTeX, then LaTeX again (twice)?
Post Reply