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, 25 January 2012
Wednesday, 11 January 2012
Managing bibliographies and references
Free
Commercial
Different idea, but very useful
LaTeX and BibTeX
- 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
Free
- JabRef - works with LaTeX, LibreOffice and OpenOffice. JSTOR lookup.
- Many others (see Comparison below), and
- gPapers
- I Librarian (x-platform)
- Referencer
Commercial
Different idea, but very useful
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"
}
\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 |
- Don Knuth and the origin of TeX. The Art of Computer Programming.
- How I got interested in typesetting
- Why TeX is free
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
- TUG - the Mother Ship: http://tug.org
- CTAN - everything everywhere: ftp://ftp.univie.ac.at/packages/tex/
- TeXLive for Linux, Unix and Windows
- MikTeX for MS Windows
- MacTeX for the Mac
More complex examples
See: http://cikitsa.blogspot.com and click "XeTeX".
Subscribe to:
Posts (Atom)