I found no \citation commands

Fragen und Probleme, die nicht den obigen Kategorien zugeordnet werden können


Guban
Forum-Anfänger
Forum-Anfänger
Beiträge: 49
Registriert: Di 1. Dez 2015, 14:37

I found no \citation commands

Beitrag von Guban »

This is BibTeX, Version 0.99d (MiKTeX 2.9) The top-level auxiliary file: Tabellenzelle_trennen.aux I found no \citation commands---while reading file Tabellenzelle_trennen.aux I found no \bibdata command---while reading file Tabellenzelle_trennen.aux I found no \bibstyle command---while reading file Tabellenzelle_trennen.aux (There were 3 error messages)

Process exited with error(s)

Ich habe eine Beispieltabelle aus einem anderen Forum kopiert und es ist dasselbe passiert wie mit einem meiner eigenen Dokumente, bei denen ich keine Literaturliste oder Verweise im Text gesetzt habe. Plötzlich gingen solche Minimalbeispiele nicht mehr zu kompilieren. Hat jemand eine Idee, was da falsch ist?
\documentclass{article}
\pagestyle{empty}% for cropping
\usepackage{array}
\usepackage{makecell}
\newcolumntype{x}[1]{>{\centering\arraybackslash}p{#1}}

\usepackage{tikz}
\usetikzlibrary{calc}
\usepackage{zref-savepos}

\newcounter{DiagonalizedEntry}
\renewcommand*{\theDiagonalizedEntry}{NTE-\the\value{DiagonalizedEntry}}

\newcommand*{\diagonalize}[2]{%
  \multicolumn{1}{@{}c@{}|}{%
    \stepcounter{DiagonalizedEntry}%
    \vadjust pre{\zsavepos{\theDiagonalizedEntry t}}% top
    \vadjust{\zsavepos{\theDiagonalizedEntry b}}% bottom
    \zsavepos{\theDiagonalizedEntry l}% left
    \hspace{0pt plus 1filll}%
    \zsavepos{\theDiagonalizedEntry r}% right
    \tikz[overlay]{%
      \draw[red]
        let
          \n{llx}={\zposx{\theDiagonalizedEntry l}sp-\zposx{\theDiagonalizedEntry r}sp}, % x left
          \n{urx}={0}, % x right
          \n{lly}={\zposy{\theDiagonalizedEntry b}sp-\zposy{\theDiagonalizedEntry r}sp}, % y bottom
          \n{ury}={\zposy{\theDiagonalizedEntry t}sp-\zposy{\theDiagonalizedEntry r}sp} %  y top
    in
        (\n{llx}, \n{ury}) -- (\n{urx}, \n{lly})
    node[anchor=south west] at (\n{llx}, \n{lly}) {#1}
    node[anchor=north east] at (\n{urx}, \n{ury}) {#2}
    ;
    }% 
  }%
}

\begin{document}
\renewcommand{\arraystretch}{2}
\renewcommand\tabcolsep{10pt}
\begin{tabular}{|x{0.5cm}|x{0.5cm}|x{0.5cm}|x{0.5cm}|x{0.5cm}|}\hline
&&&&20\\ \hline
&&&&30\\ \hline
&&&&45\\ \hline
15&12&18&50&\diagonalize{$a_i$}{$b_j$} \\ \hline
\end{tabular}
\end{document}

Benutzeravatar
u_fischer
Forum-Meister
Forum-Meister
Beiträge: 4300
Registriert: Do 22. Nov 2012, 11:09
Kontaktdaten:

Beitrag von u_fischer »

Nun, du hast ja auch keine Zitate in dem Dokument. Warum also rufst du bibtex überhaupt auf?

Antworten