I need explicit entrys in my (german) normed bibliography. After a lot of work i have settled with apacite, because it sounded like it could do the stuff i need. So far i am able to change: Title, Year, Publisher, Adress by \renewcommand'ing commands out of the apacite.sty.
Author is missing and i have not found any relation to the edition in the file. I tried to change practically everything that had anything to do with ed. or edition.
Can someone tell me which functions change the author and edition brackets?
It would also be nice if someone knows how to change the order of the outcome in the bibliography. I haven't gotten into it yet.
Here 2 examples of what is happening. First is the one I get, the second is the one i need.
Bocuse, P. 1977. Die neue Küche (1. translated ed.). Düsseldorf: Econ.
Bocuse 1977
Bocuse, Paul: Die Neue Küche.
1. translated edition. Düsseldorf: Econ, 1977.
Edit:
I hoped code wouldn't be necessary since nothing actually has to do with the implementation, that's as far as i know. I included all my usepackages, maybe they are needed too.
\documentclass[12pt]{scrbook}
\usepackage[a4paper]{geometry}
%~~~~~~~~~~~~~~~~~~~~~~~~~
% Norm von A4 Buchform
%~~~~~~~~~~~~~~~~~~~~~~~~~
\geometry{top=25mm,bottom=25mm,footskip=20mm,headsep=15mm}
\renewcommand{\baselinestretch}{1.0}
\usepackage{times}
\usepackage[ngerman]{babel}
\usepackage [utf8]{inputenc}
\usepackage [T1]{fontenc}
\usepackage [pdftex]{graphicx}
\usepackage{verbatim}
\usepackage{array}
\usepackage{booktabs}
\usepackage{dcolumn}
\usepackage{units}
\usepackage{rotating}
\usepackage[pdftex]{color}
\usepackage{listings}
\usepackage{tabularx}
\usepackage{longtable}
%~~~~~~~~~~~~~~~~~~~~~~~~~
% Citing and Bibliography
%~~~~~~~~~~~~~~~~~~~~~~~~~
\usepackage{apacite}
% Testing area
% This actually changes "something" with the author(s),
% it makes the title go into a new line
\renewenvironment{APACrefauthors}{%
\begingroup \APACrefauthstyle
}{\endgroup }
% Title
\renewcommand{\APACrefbtitle}[2]{\Bem{#2}}
% Year
\renewcommand{\APACrefYear}[1]{%
{#1}%
}
% Adress and Publisher
\renewcommand{\APACaddressPublisher}[2]{%
\ifx\@empty#1\@empty
\ifx\@empty#2\@empty
\else
{#2}% publisher
\fi
\else
{#1}% address
\ifx\@empty#2\@empty
\else
\unskip: {#2}% publisher
\fi
\fi
}
% Doesn't do anything with my citing
\renewcommand{\BVOL}{Vol.\hbox{}} % volume (of a multi-volume book)
\renewcommand{\BVOLS}{Vols.\hbox{}} % volumes
\renewcommand{\BEd}{ed.\hbox{}} % edition
\renewcommand{\APACrefatitle}[2]{#2}
\renewcommand{\APACrefaetitle}[2]{[#2]}
\renewcommand{\APACrefbetitle}[2]{[#2]}
\renewcommand{\BVOLS}{Vols.\hbox{}} % volumes
\renewcommand{\APACjournalVolNumPages}[4]{%
\Bem{#1}% journal
\ifx\@empty#2\@empty
\else
\unskip, \Bem{#2}% volume
\fi
\ifx\@empty#3\@empty
\else
\unskip({#3})% issue number
\fi
\ifx\@empty#4\@empty
\else
\unskip, {#4}% pages
\fi
}
\renewcommand{\APACaddressPublisher}[2]{%
\ifx\@empty#1\@empty
\ifx\@empty#2\@empty
\else
{#2}% publisher
\fi
\else
{#1}% address
\ifx\@empty#2\@empty
\else
\unskip: {#2}% publisher
\fi
\fi
}
\begin{document}
\citeauthor{bocuse} \citeyear{bocuse}
\bibliographystyle{apacite}
\bibliography{Literaturverzeichnis}
\listoffigures
\newpage
\listoftables
\newpage
\end{document}
Literaturverzeichnis.bib contains:
@book{bocuse,
address ={Düsseldorf},
author ={Bocuse, Paul},
edition ={1. übersetzte},
title ={Die Neue Küche},
publisher={Econ,},
year ={1977}
}
I think thats it.
\documentclass{...}and ending with\end{document}. – egreg Feb 8 at 18:59