diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/biblatex-ms/examples/82-style-debug-ms.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/biblatex-ms/examples/82-style-debug-ms.tex | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/biblatex-ms/examples/82-style-debug-ms.tex b/Master/texmf-dist/doc/latex/biblatex-ms/examples/82-style-debug-ms.tex new file mode 100644 index 00000000000..f1ff8ca28a0 --- /dev/null +++ b/Master/texmf-dist/doc/latex/biblatex-ms/examples/82-style-debug-ms.tex @@ -0,0 +1,35 @@ +% +% This file presents the 'debug' style +% +\documentclass[a4paper]{article} +\usepackage[T1]{fontenc} +\usepackage[utf8]{inputenc} +\usepackage[american]{babel} +\usepackage{csquotes} +\usepackage[style=debug,backend=biber]{biblatex-ms} +\usepackage{hyperref} +\addbibresource{biblatex-examples.bib} +% Some generic settings: +\newcommand{\cmd}[1]{\texttt{\textbackslash #1}} +\setlength{\parindent}{0pt} +\begin{document} + +\section*{The \texttt{debug} style} + +This style is intended for debugging only. The citations are printed as a list of all arguments passed to the citation command. The bibliography lists all bibliographic data in tabular format. + +\subsection*{Citation examples} + +\cite{companion} + +\parencite[30]{companion} + +\footcite[see][]{companion} + +\cite[see][30]{companion} + +\cites(see)()[30]{companion} + +\printbibliography + +\end{document} |