Wednesday 25 January 2012

Internetressourcen zum Schreiben wissenschaftlicher Arbeiten

Grundlegendes zum Schreiben von Hausarbeiten und anderen wissenschaftlichen Arbeiten
http://www.sai.uni-heidelberg.de/abt/IND/studium/referate.php

Kanon indologischer Literatur zur Lektüre im Grundstudium am Südasieninstitut der Universität Heidelberg
http://www.sai.uni-heidelberg.de/abt/IND/publikation/bib/bibstudium.php



Nützliche Linksammlungen

Indology: recources of indological scholarship
http://indology.info

Südasieninstitut Heidelberg
http://www.sai.uni-heidelberg.de/abt/IND/links/links.php

Indogermaisches Seminar der Universität Zürich
http://www.indologie.uzh.ch/links.html



Allgemeine Literatursuche

Karlsruher Virtueller Katalog (KVK) http://www.ubka.uni-karlsruhe.de/kvk.html

Google Scholar http://scholar.google.at/

South Asia Union Catalogue http://sauc.uchicago.edu/

South Asia Research Documentation Service (SARDS 3) http://www.sards.uni-halle.de/

JSTOR http://www.jstor.org/

Springerlink http://www.springerlink.com/

SaFiFaDok Publikationsplattform für die Südasienwissenschaften
http://archiv.ub.uni-heidelberg.de/savifadok/

Epic and Puranic Bibliography on-line
http://www.indologie.uni-goettingen.de/cgi-bin/read/bin/webconnector.pl


Weitere elektronische Ressourcen

Columbia University, New York
http://www.columbia.edu/cu/lweb/indiv/southasia/cuvl/BIBS.html

Universtiy of Chicago Library
http://www.lib.uchicago.edu/e/su/southasia/eresources.html

Wednesday 11 January 2012

Managing bibliographies and references
  • The problem: one source, many uses.  Journal style requirements.
  • Software: a database
  • Integration with your writing system
  • Importing PDF and PDF metadata
  • Different bibliography styles
  • Reference Management Software
Examples

Free
Free-ish

Commercial
Different idea, but very useful
Comparison of features
LaTeX and BibTeX

  • the BibTeX database format:

    @article{wuja-note,
    author="Dominik Wujastyk",
    title = "The Paper I Wrote",
    journal = "Journal of Daft Ideas",
    year = "2012",
    volume= 33,
    part ="2",
    pages = "99-199"
    }
Old: BibTeX (bibtex program)

  • \documentclass{article}
    \usepackage{natbib}
    \begin{document}
    This is the case \citep{wuja-note}
    \bibliographystyle{JRAS}
    \bibliography{biblio-file}
    \end{document}

    >

    This is the case (Wujastyk 2012).

    References

    Wujastyk 2012. "The Paper I Wrote," Journal of Daft Ideas 33(2): 99-199.
  • New: BibLaTeX (biber program)

    \documentclass{article}
    \usepackage{biblatex}
    \usepackage[style=authoryear,
      language=auto,
      backend=biber,
      natbib=true]{biblatex}
    \addbibresource[datatype=bibtex]{biblio-file.bib}
    \begin{document}
    This is the case \citep{wuja-note}.
    \printbibliography
    \end{document}

    >

    This is the case (Wujastyk 2012).

    References

    Wujastyk 2012. "The Paper I Wrote," Journal of Daft Ideas 33(2): 99-199.

TeX and LaTeX

Don Knuth
 Some background








Leslie Lamport
  • Document formatting v. Word Processing
  • Markup languages
  • Goldfarb's GML amd SGML (ISO 8879 in 1986)
  • Brian Reid's Scribe
  • Leslie Lamport's LaTeX
  • The LaTeX Document Processing System






Getting started
Editing v. word processing
More complex examples

See: http://cikitsa.blogspot.com and click "XeTeX".