BibTeX, biblatex and biberHow to customize the bib items with BibLaTeX?

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
CMP
Posts: 13
Joined: Thu Aug 22, 2019 8:33 pm

How to customize the bib items with BibLaTeX?

Post by CMP »

Hi Everyone,

I am here again with one more question.

I recently decided to switch with BibLaTeX from natbib reference management.
Therefore, I am a beginner learner with BibTe.
But as always I need some customization on the existing options. :)

I have attached an MWE herewith along with my concern at the end.

Code: Select all

Code, edit and compile here:
\documentclass[12pt]{article}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{enumerate}
\usepackage{enumitem}
\usepackage[
style=numeric,
url=false,
doi=false,
isbn=false
]{biblatex}
\usepackage{hyperref,url}
\usepackage{color}
\usepackage[autostyle, english = american]{csquotes}
\addbibresource{BibRef.bib}
\newcommand{\red}{\color[rgb]{1,0,0}}
\hypersetup{,colorlinks=true,allcolors=red}
\begin{document}
\begin{center}
{\LARGE
Solving NP-hard Problems
}
\vspace{15mm}
{\large\sc
Author\footnote[1]{
Author, is an Assistant Professor in the Department of XYZ,
XYZ University.
~~ {\em e-mail\/}: ~{\tt xyz@university.edu}}}
\vspace{1mm}
{\large\em XYZ University}
\vspace{15mm}
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
The corresponding .bib file is as below:

Code: Select all

@book {MR1810041,
AUTHOR = {Ash, Robert B.},
TITLE = {Probability and Measure Theory},
EDITION = {Second},
PUBLISHER = {Academic Press, Burlington, MA},
YEAR = {2000},
PAGES = {xii+516},
ISBN = {0-12-065202-1},
MRCLASS = {28-01 (60-01)},
MRNUMBER = {1810041},
}
@article{ae05,
AUTHOR = {Albert Einstein},
TITLE = {On the electrodynamics of moving bodies},
JOURNAL = {Annalen der Physik},
VOLUME = {322},
NUMBER = {10},
PAGES = {891--921},
YEAR = {1905},
DOI = {http://dx.doi.org/10.1002/andp.19053221004},
keywords = {physics},
}
@article {MR1034353,
AUTHOR = {Hungerford, Thomas W.},
TITLE = {A counterexample in {G}alois theory},
JOURNAL = {Amer. Math. Monthly},
FJOURNAL = {American Mathematical Monthly},
VOLUME = {97},
YEAR = {1990},
NUMBER = {1},
PAGES = {54--57},
ISSN = {0002-9890},
MRCLASS = {12F10},
MRNUMBER = {1034353},
URL = {https://doi.org/10.2307/2324007},
}
@book {n97,
AUTHOR = {Norris, J. R.},
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
Then we get the following Reference listing which I do not want.

[img]
UnWantedRef.png
UnWantedRef.png (44.13 KiB) Viewed 6411 times
[/img]

But what I wanted is the following.

[img]
WantedRef.png
WantedRef.png (59.02 KiB) Viewed 6411 times
[/img]

Any help would greatly be appreciated.

Recommended reading 2024:

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

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

Bartman
Posts: 369
Joined: Fri Jan 03, 2020 2:39 pm

How to customize the bib items with BibLaTeX?

Post by Bartman »

From your description it is relatively clear what you have and what you want. Thanks for that.

Since i am not a biblatex professional, i wanted to wait and see if someone has a solution for you. Maybe my suggestion can help you, if you have not yet been able to develop a solution.

Code: Select all

Code, edit and compile here:
\begin{filecontents}{\jobname.bib}
@book {MR1810041,
AUTHOR = {Ash, Robert B.},
TITLE = {Probability and Measure Theory},
EDITION = {2},
PUBLISHER = {Academic Press, Burlington, MA},
DATE = {2000},
PAGES = {xii+516},
ISBN = {0-12-065202-1},
MRCLASS = {28-01 (60-01)},
MRNUMBER = {1810041},
}
@article{ae05,
AUTHOR = {Albert Einstein},
TITLE = {On the electrodynamics of moving bodies},
JOURNALTITLE = {Annalen der Physik},
VOLUME = {322},
NUMBER = {10},
PAGES = {891--921},
DATE = {1905},
DOI = {http://dx.doi.org/10.1002/andp.19053221004},
keywords = {physics},
}
@article {MR1034353,
AUTHOR = {Hungerford, Thomas W.},
TITLE = {A counterexample in {G}alois theory},
JOURNALTITLE = {Amer. Math. Monthly},
FJOURNAL = {American Mathematical Monthly},
VOLUME = {97},
DATE = {1990},
NUMBER = {1},
PAGES = {54--57},
ISSN = {0002-9890},
MRCLASS = {12F10},
MRNUMBER = {1034353},
URL = {https://doi.org/10.2307/2324007},
}
@book{n97,
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
CMP
Posts: 13
Joined: Thu Aug 22, 2019 8:33 pm

How to customize the bib items with BibLaTeX?

Post by CMP »

Thank you Bartman!

That helps a lot!
Post Reply