diff options
author | Karl Berry <karl@freefriends.org> | 2018-12-20 23:38:12 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2018-12-20 23:38:12 +0000 |
commit | c2a784141573aa4fca549b380a8f07c682ac7b2e (patch) | |
tree | 1217e1d58e37d3fa83ec2003b9f13dd5ebdcda0f /Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography | |
parent | 0d829fbbe1e39d04cd4ceef43f58b0a52f4d6e03 (diff) |
iodhbwm (20dec18)
git-svn-id: svn://tug.org/texlive/trunk@49463 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography')
8 files changed, 127 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-custom-option.pdf b/Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-custom-option.pdf Binary files differnew file mode 100644 index 00000000000..59fd79c5538 --- /dev/null +++ b/Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-custom-option.pdf diff --git a/Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-custom-option.tex b/Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-custom-option.tex new file mode 100644 index 00000000000..e6fcfb5cdba --- /dev/null +++ b/Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-custom-option.tex @@ -0,0 +1,39 @@ +% --------------------------------------------------- +% Date: 12.11.2018 +% Version: v0.1 +% Autor: Felix Faltin <ffaltin91[at]gmail.com> +% Repository: https://github.com/faltfe/iodhbwm +% --------------------------------------------------- +% --- --- --- --- -- Class options -- --- --- --- --- +% --------------------------------------------------- +\documentclass[ + add-bibliography, % Include bibliography (needs biber run) + bib-file = biblatex-examples.bib, % Set bibliography file + language = ngerman, % Set main document language + debug % Provide \lipsum, \blindtext +]{iodhbwm} +\usepackage[T1]{fontenc} +%\usepackage[utf8]{inputenc} % UTF-8 is default at the latest release + +% --------------------------------------------------- +% --- --- - Change default biblatex options - --- --- +% --------------------------------------------------- +% You can almost change every option with this command. There are +% only some exception like the backend and the style. +% If you want to change the citeystyle have a look at the custom +% cite style example or see the documentation for biblatex/citestyle +% option. +% --------------------------------------------------- +% Change the sorting and supress the DOI output +\ExecuteBibliographyOptions{sorting=none, doi=false} + +% --------------------------------------------------- +% --- --- --- --- Begin actual content -- --- --- --- +% --------------------------------------------------- +\begin{document} + \Blinddocument % Dummy content + + \nocite{*} % Cite every entry from the passed file + + % --------------------------------------------------- +\end{document} diff --git a/Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-footcite.pdf b/Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-footcite.pdf Binary files differnew file mode 100644 index 00000000000..5998d0cf89b --- /dev/null +++ b/Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-footcite.pdf diff --git a/Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-footcite.tex b/Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-footcite.tex new file mode 100644 index 00000000000..788fd222bec --- /dev/null +++ b/Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-footcite.tex @@ -0,0 +1,26 @@ +% --------------------------------------------------- +% Date: 12.12.2018 +% Version: v0.1 +% Autor: Felix Faltin <ffaltin91[at]gmail.com> +% Repository: https://github.com/faltfe/iodhbwm +% --------------------------------------------------- +% --- --- --- --- -- Class options -- --- --- --- --- +% --------------------------------------------------- +\documentclass[ + add-bibliography-, % Include bibliography (needs biber run) wihout a bibliography + bib-file = biblatex-examples.bib, % Set bibliography file + biblatex/style = authoryear, % Change used biblatex style + language = ngerman, % Set main language + debug % Provide \lipsum, \blindtext +]{iodhbwm} +\usepackage[T1]{fontenc} + +% --------------------------------------------------- +% --- --- --- --- Begin actual content -- --- --- --- +% --------------------------------------------------- +\begin{document} + \chapter{Zitat als Fußnote} + \blindtext \footcite{doody} + + \blindtext \footfullcite{doody} +\end{document} diff --git a/Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-rename-heading.pdf b/Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-rename-heading.pdf Binary files differnew file mode 100644 index 00000000000..5d0227d166c --- /dev/null +++ b/Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-rename-heading.pdf diff --git a/Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-rename-heading.tex b/Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-rename-heading.tex new file mode 100644 index 00000000000..bea0468d3d3 --- /dev/null +++ b/Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-rename-heading.tex @@ -0,0 +1,31 @@ +% --------------------------------------------------- +% Date: 12.12.2018 +% Version: v0.1 +% Autor: Felix Faltin <ffaltin91[at]gmail.com> +% Repository: https://github.com/faltfe/iodhbwm +% --------------------------------------------------- +% --- --- --- --- -- Class options -- --- --- --- --- +% --------------------------------------------------- +\documentclass[ + add-bibliography, % Include bibliography (needs biber run) + bib-file = biblatex-examples.bib, % Set bibliography file + language = ngerman, % Set main language + debug % Provide \lipsum, \blindtext +]{iodhbwm} +\usepackage[T1]{fontenc} + +% Rename bibliography heading depending +% on selected language +\DefineBibliographyStrings{ngerman}{% + bibliography = {Literaturverzeichnis}, + references = {Literaturverzeichnis}, +} + +% --------------------------------------------------- +% --- --- --- --- Begin actual content -- --- --- --- +% --------------------------------------------------- +\begin{document} + \chapter{Einfaches Zitat} + \blindtext \cite{bertram} + +\end{document} diff --git a/Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-style-option.pdf b/Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-style-option.pdf Binary files differnew file mode 100644 index 00000000000..3cf196ddc32 --- /dev/null +++ b/Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-style-option.pdf diff --git a/Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-style-option.tex b/Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-style-option.tex new file mode 100644 index 00000000000..6fd6547da3c --- /dev/null +++ b/Master/texmf-dist/doc/latex/iodhbwm/examples/bibliography/iodhbwm-biblatex-style-option.tex @@ -0,0 +1,31 @@ +% --------------------------------------------------- +% Date: 12.11.2018 +% Version: v0.1 +% Autor: Felix Faltin <ffaltin91[at]gmail.com> +% Repository: https://github.com/faltfe/iodhbwm +% --------------------------------------------------- +% --- --- --- --- -- Class options -- --- --- --- --- +% --------------------------------------------------- +\documentclass[ + add-bibliography, % Include bibliography (needs biber run) + bib-file = biblatex-examples.bib, % Set bibliography file + biblatex/style = alphabetic, % Change citestyle and biblatex to alphabetic +% biblatex/citestyle = alphabetic, +% biblatex/bibstyle = alphabetic, + language = ngerman, % Set main document language + debug % Provide \lipsum, \blindtext +]{iodhbwm} +\usepackage[T1]{fontenc} +%\usepackage[utf8]{inputenc} % UTF-8 is default at the latest release + +\begin{document} + + % --------------------------------------------------- + % --- --- --- --- Begin actual content -- --- --- --- + % --------------------------------------------------- + \Blinddocument % Dummy content + + \nocite{*} % Cite every entry from the passed file + + % --------------------------------------------------- +\end{document} |