General ⇒ humannat and webpages/url and custom bibdesk types
humannat and webpages/url and custom bibdesk types
Is there a way to modify the style so it will display it correctly?
Also: I tried creating a custom type in bibdesk called 'newsarticle' for newspaper-article, with the fields author, year, month, day, title and newspaper. Is there a way to modify humannat to use this as well?
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
humannat and webpages/url and custom bibdesk types
Code: Select all
$ ./urlbst --doi --hyperref humannat.bst humannaturl.bst
I cannot help you with your second question.
- Attachments
-
- humannaturl.bst.tex
- (34.38 KiB) Downloaded 320 times
humannat and webpages/url and custom bibdesk types
Code: Select all
\documentclass{article}
\usepackage{palatino}
\usepackage{paralist}
\usepackage{natbib}
\usepackage[margin=3cm]{geometry}
\citestyle{chicago}
\usepackage{palatcm}
\bibpunct[: ]{(}{)}{;}{a}{}{,}
\begin{document}
\title{\textbf{title}}
\author{john}
\date{\today}
\maketitle
\cite{South-Africa:hl}
\bibliographystyle{humannaturl}
\bibliography{../../../tex/Bibliografie}
\end{document}
Package natbib Warning: Citation `South-Africa:hl' on page 2 undefined on input
line 34.
(./test.bbl
! Undefined control sequence.
l.7 \url
{http://www.pptpilot.org.za/Alexandra_Township.pdf} [cited 13 sept...
Re: humannat and webpages/url and custom bibdesk types
humannat and webpages/url and custom bibdesk types
the output is now:
Code: Select all
Pro Poor Tourism Pilots
. Alexandra township, johannesburg, south africa [online]. (2008). Available from: http:
//www.pptpilot.org.za/Alexandra_Township.pdf [cited 13 september 2008].
Code: Select all
Pro Poor Tourism Pilots
2008. Alexandra township, johannesburg, south africa. Available from: http:
//www.pptpilot.org.za/Alexandra_Township.pdf (cited 13 september 2008).
- (/) instead of [/]
Re: humannat and webpages/url and custom bibdesk types
- Attachments
-
- humannaturl.bst.tex
- (37.16 KiB) Downloaded 290 times
Re: humannat and webpages/url and custom bibdesk types
