1
0
Fork 0

Bibliografii nyní sázíme bibTeXem

master
Martin Mares 9 years ago
parent 2eac11db3f
commit 40bb7c7433

@ -1,10 +1,12 @@
all: prace.pdf all: prace.pdf
# LaTeX je potreba spustit dvakrat, aby spravne spocital odkazy # LaTeX je potreba spustit nekolikrat, aby spravne spocital odkazy
prace.pdf: prace.tex $(wildcard *.tex) prace.pdf: prace.tex $(wildcard *.tex) literatura.bib
pdflatex $<
bibtex prace
pdflatex $< pdflatex $<
pdflatex $< pdflatex $<
clean: clean:
rm -f *.log *.dvi *.aux *.toc *.lof *.lot *.out rm -f *.log *.dvi *.aux *.toc *.lof *.lot *.out *.bbl *.blg
rm -f prace.pdf rm -f prace.pdf

File diff suppressed because it is too large Load Diff

@ -0,0 +1,95 @@
%
% Vzor bibliografické databáze pro automatickou tvorbu seznamu referencí
% pomocí BibTeXu
%
% Doporučený software pro správu databáze literatury formátu *.bib:
% JabRef, http://jabref.sourceforge.net/
%
% POZOR!
% 1. Písmena v názvech publikací, jež je třeba tisknout vždy velká, se musejí psát
% do složených závorek ({T}hailand, {HIV})
% 2. Po každé změně citací v dokumentu a po každé změně v databázi *.bib je třeba
% dokument zkompilovat posloupností příkazů latex+bibtex+latex+latex
%
% ===========================================================================
@BOOK{Andel07,
title = {Základy matematické statistiky},
publisher = {Matfyzpress},
year = {2007},
author = {Anděl, J.},
address = {Praha},
series = {Druhé opravené vydání},
isbn = {80-7378-001-1}
}
@BOOK{Andel98,
title = {Statistické metody},
publisher = {Matfyzpress},
year = {1998},
author = {Anděl, J.},
address = {Praha},
series = {Druhé přepracované vydání},
isbn = {80-85863-27-8}
}
@ARTICLE{Cox72,
author = {Cox, D. R.},
title = {Regression models and life-tables (with {D}iscussion)},
journal = {Journal of the Royal Statistical Society, Series B},
year = {1972},
volume = {34},
pages = {187-220},
number = {2}
}
@ARTICLE{DempsterLairdRubin77,
author = {Dempster, A. P. and Laird, N. M. and Rubin, D. B.},
title = {Maximum likelihood from incomplete data via the {EM} algorithm},
journal = {Journal of the Royal Statistical Society, Series B},
year = {1977},
volume = {39},
pages = {1-38},
number = {1}
}
@ARTICLE{Genberget08,
author = {Genberg, B. L. and Kulich, M. and Kawichai, S. and Modiba, P. and
Chingono, A. and Kilonzo, G. P. and Richter, L. and Pettifor, A.
and Sweat, M. and Celentano, D. D.},
title = {{HIV} risk behaviors in Sub-{S}aharan {A}frica and {N}orthern {T}hailand:
{B}aseline behavioral data from project {A}ccept},
journal = {Journal of Acquired Immune Deficiency Syndrome},
year = {2008},
volume = {49},
pages = {309-319}
}
@ARTICLE{KaplanMeier58,
author = {Kaplan, E. L. and Meier, P.},
title = {Nonparametric estimation from incomplete observations},
journal = {Journal of the American Statistical Association},
year = {1958},
volume = {53},
pages = {457-481},
number = {282}
}
@BOOK{LehmannCasella98,
title = {Theory of Point Estimation},
publisher = {Springer-Verlag},
year = {1998},
author = {Lehmann, E. L. and Casella, G.},
address = {New York},
series = {{S}econd {E}dition},
isbn = {0-387-98502-6}
}
@ARTICLE{Student08,
author = {Student},
title = {On the probable error of the mean},
journal = {Biometrika},
year = {1908},
volume = {6},
pages = {1-25}
}

@ -1,15 +1,34 @@
%%% Seznam použité literatury je zpracován podle platných standardů. Povinnou citační %%% Seznam použité literatury (bibliografie)
%%% normou pro bakalářskou práci je ISO 690. Jména časopisů lze uvádět zkráceně, ale jen %%%
%%% v kodifikované podobě. Všechny použité zdroje a prameny musí být řádně citovány. %%% Pro vytváření bibliografie používáme bibTeX. Ten zpracovává
%%% citace v textu (např. makro \cite{...}) a vyhledává k nim literaturu
%%% v souboru literatura.bib.
%%%
%%% Příkaz \bibliographystyle určuje, jakým stylem budou citovány odkazy
%%% v textu. V závorce je název zvoleného souboru .bst. Styly plainnat
%%% a unsrt jsou standardní součástí latexových distribucí. Styl czplainnat
%%% je dodáván s touto šablonou a bibTeX ho hledá v aktuálním adresáři.
\def\bibname{Seznam použité literatury} \bibliographystyle{czplainnat} %% Autor (rok) s českými spojkami
\begin{thebibliography}{99} % \bibliographystyle{plainnat} %% Autor (rok) s anglickými spojkami
% \bibliographystyle{unsrt} %% [číslo]
%\bibitem{lamport94} \renewcommand{\bibname}{Seznam použité literatury}
%%% Vytvoření seznamu literatury. Pozor, pokud jste necitovali ani jednu
%%% položku, seznam se automaticky vynechá.
\bibliography{literatura}
%%% Kdybyste chtěli bibliografii vytvářet ručně (bez bibTeXu), lze to následovně:
% \begin{thebibliography}{99}
%
% \bibitem{lamport94}
% {\sc Lamport,} Leslie. % {\sc Lamport,} Leslie.
% \emph{\LaTeX: A Document Preparation System}. % \emph{\LaTeX: A Document Preparation System}.
% 2. vydání. % 2. vydání.
% Massachusetts: Addison Wesley, 1994. % Massachusetts: Addison Wesley, 1994.
% ISBN 0-201-52983-1. % ISBN 0-201-52983-1.
%
\end{thebibliography} % \end{thebibliography}

Loading…
Cancel
Save