Texmaker and TeXstudioBiblatex Referencing

Information and discussion about Texmaker, an integrated LaTeX environment for several platforms, and the related TeXstudio
Post Reply
flin
Posts: 1
Joined: Wed May 15, 2013 9:06 am

Biblatex Referencing

Post by flin »

Hi folks,
i'm trying to reference my paper(harvard style), but the code I've been using isn't working for me, and I don't know why.
Whenever I'm trying to do the "quick build" run on my TexMaker, it'll tell me that it can't find 'etoolbox.sty', and that my pdf will display question marks.

I don't understand why I'll need the 'etoolbox.sty'. Help! this is driving me nuts. Am I doing something wrong here? Do I need an auxiliary file? I'm seriously confused. Would appreciate an ASAP reply.
Cheers
p.s. I'm using miktex
===============================.tex file=========

Code: Select all

\documentclass[11pt]{article} %Page Settings
\usepackage[top=20mm, right=20mm, left=30mm, bottom=20mm]{geometry}
 \usepackage[style=authoryear]{biblatex}
	  \addbibresourse{bibliography.bib}
			
\begin{document}%

\begin{titlepage}%
....
\printbibliography
\end{document}
=========================.bib file====using biblatex====

Code: Select all

@inproceedings{Arens,
author = {Edward Arens, Donald Ballanti},
editor = {Heisler, Gordon M.; Herrington, Lee P., eds},
title = {Outdoor Comfort of Pedestrians in Cities},
booktitle = {Proceedings of the conference on metropolitan physical environment},
year = {1997},
OPTorganization = {U.S. Department of Agriculture},
OPTpages = {115-129},
OPTurl = {http://www.nrs.fs.fed.us/pubs/gtr/gtr_ne25/gtr_ne25.pdf},
}

@article{Chen2011,
author = {Liang Chen, Edward Ng},
title = {Outdoor thermal comfort and outdoor activities: A review of research in the past decade},
journaltitle = {ELSEVIER},
year = {2011},
OPTvolume = {29},
OPTnumber = {2},
OPTpages = {118-125},
}
Last edited by cgnieder on Wed May 15, 2013 11:14 am, edited 2 times in total.

Recommended reading 2024:

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

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

User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Biblatex Referencing

Post by Johannes_B »

Hi,

etoolbox is a package like bilatex or mathtools and needed by many packages. You can install it with your MikTeX package manager.
Furthermore, please use the code button to highlight your code.

LaTeX creates some files while compiling your project, and all are needed. Do not delete them. If you want to know, what's in there, open them with an editor or try a short google search.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
User avatar
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

Biblatex Referencing

Post by cgnieder »

Hi flin,

Welcome to the LaTeX community!

As Johannes said: etoolbox is used by lots of packages as it provides a range of handy tools for LaTeX programming. In particular biblatex uses etoolbox a lot. Both packages happen to be from the same author, Philipp Lehman, although biblatex is maintained by other people nowadays.

You do not need an extra auxiliary file but should install the missing package via the package manager. Auxiliary files are files created during compilation, most notably the one with the extension aux. They are needed to save data that can be used on a subsequent compilation run, such as labels and references. Usually you do not need to care about them at all. Most can also be deleted without harm but that would ruin references and similar stuff and you need to start a whole compilation circle again. The most interesting file is the log file as it contains information about the compilation, about included files and packages and their versions, it contains all errors and warnings produced during the compilation.

Regards
site moderator & package author
Post Reply