BibTeX, biblatex and biber ⇒ A different type of reference
A different type of reference
1. We must point a reference to certain pages in a book/article/etc. This can be either "(45" or (45-47"
2. We also need to write the last name of the author and the year the book was published. It looks like this: "name-of-author:year)"
So all in all, it has to look like this: (PAGES AUTHOR:YEAR). This has to be in the actual text in the report/article/etc. that we're writing. It would kinda look like this:
yada yada yada yada (PAGES AUTHOR:YEAR). Yada yada yada yada
How can I do this? I've searched on google, but I couldn't find anything.
Any help would be appreciated. Thanks
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
A different type of reference
I haven' tried myself but I think you should be able to do this by declaring new commands. Something like
Code: Select all
\newcommand{\diffref}[1]{#1}
Code: Select all
@preamble{"\def\diffref#1{}"}
Code: Select all
\diffref{PAGES AUTHOR:YEAR}
Re: A different type of reference
