As I write my Bachelor thesis at the moment I tried to teach myself how to use Latex. But I am struggling a lot with my bibliography as I can not find a way to program it the way I want to:
Surname, N. und Surname, N. (year), Titel, .... other informarion
(The german word 'und' between the authornames is extremly important)
Sadly I could not find how to do that on the Internet or in other questions.
I recently tried alphadin and apalike. But with alphadin I get only Errors: (Package natbib Error: Bibliography not compatible with author-year citations.) and with apalike, with which i can compile my document, it does not look as I want it to. Besides that I always get that and between names, which is not that practical as I write my text in german.
I put all my literature into JabRef.
my Code looks as following:
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage[usenames]{color}
\usepackage{graphicx}
\usepackage{graphicx,caption}
\usepackage{tabularx}
\usepackage{amsmath}
\usepackage{ulem}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{mathptmx}
\usepackage{fancyhdr}
\usepackage{a4}
\usepackage{acronym}
%\usepackage{epic}
\usepackage{eepic}
\usepackage{parskip}
\usepackage{eurosym}
\usepackage{array}
\usepackage{pdfpages}
%\usepackage{glossaries}
\usepackage[authoryear]{natbib}
%\usepackage{bibgerm}
\usepackage[flushmargin, hang]{footmisc}
\begin{document}
....
%-Literaturverzeichnis--------------------------------------------
%\nocite{*}
%die Verwendung von bibtex ist Pflicht!!!
\newpage
\addcontentsline{toc}{section}{Literaturverzeichnis}
\bibliography{Literatur} #so heißt mein JabRef File
%\nocite{*}
%\bibliographystyle{alphadidiEN}
%bzw. unsrtdin, alphadin, abbrvdin
\bibliographystyle{alphadin}
%\bibliographystyle{apalike}
%plainnat statt plain
%unsrtnat statt unsrt
%abbrvnat statt abbrv
%alphadidiEN statt alpha,
\newpage
\end{document}
Most of the things with the % were given in the orientation file from my university.
I hope you can help me (and sorry for the trouble with the wrong language at first :) )
apalikebibliography style that is usesandinstead ofundas the conjunction. Please advise. And please state which document class you employ. – Mico Sep 15 '18 at 19:18andinstead ofundand I don´t like, that it underlines the titles. My document class is\documentclass[12pt,twoside,a4paper,titlepage]{article}– Lisa Sep 15 '18 at 19:31apalikebibliography style directly. Instead, it comes from the preamble instruction\usepackage{ulem}, which changes the method of emphasis from italicizing to underlining. (I suppose that "ulem" is short for "underline for emphasis"...) If you don't want this behavior, either don't load theulempackage at all or, alternatively, load it with the optionnormalem, i.e., write\usepackage[normalem]{ulem}. – Mico Sep 15 '18 at 19:35apalikebibliography style. All you'll need to change in the instructions provided in the main part of the accepted answer is to use" and "instead of" i "as the replacement text string. Oh, and do call the modified bibliography style file something likeapalike-und.bst, notapalike-catalan.bst. – Mico Sep 15 '18 at 19:38apalike-german.bst; see https://www.ctan.org/tex-archive/biblio/bibtex/contrib/apalike-german. If your TeX distribution is up to date, it's probably already installed on your system. Do give\bibliographystyle{apalike-german}. a try. As always after changing the argument of\bibliographystyle, it's necessary to run LaTeX, BibTeX, and LaTeX twice more to fully propagate all changes. – Mico Sep 16 '18 at 07:25apalike-german.tpm. (It doesn't seem to be installed on my system.) My hunch is that files with exteniontpmare not closely associated with files with extensionbst. – Mico Sep 16 '18 at 07:50apalike-german.tpmis a MikTeX file that contains information about the MikTeX packageapalike-german. It would surprise me greatly if you could just rename that file to.bstand could use it. Just use the MikTeX Console to install the package. – moewe Sep 16 '18 at 13:36