Archived
1
0
Fork 0

Begleitprotokoll Zeichenanzahl

This commit is contained in:
Findus23 2015-02-03 20:40:48 +01:00
parent 2b733c83f2
commit 3c9fa79f36
6 changed files with 22 additions and 14 deletions

1
.gitignore vendored
View file

@ -92,3 +92,4 @@ sympy-plots-for-*.tex/
*.bak *.bak
*~ *~
*.glsdefs *.glsdefs
Session.tks

Binary file not shown.

View file

@ -124,13 +124,20 @@
\begin{table}[h] \begin{table}[h]
\centering \centering
\label{länge} \label{länge}
\begin{tabular}{c|c} \begin{tabular}{c|c|c|c}
Teil & Zeichen \\ Teil & \LaTeX-Code & \LaTeX\ ohne Befehle (detex) & PDF \\
\hline\hline \hline\hline
Einleitung & \\\hline Einleitung & 1446 & 1311 & 1155\\\hline
Hardware & \\\hline Hardware & 11066 & 8445 & 6793\\\hline
Software & \\ \hline\hline Software & 14957 & 12615 & 14493 \\ \hline
Gesamt & Fazit & 2255 & 2077 & 1898 \\ \hline
Auswertung & 4017 & 3214 & 2314 \\ \hline\hline
Gesamt & 33741 & 27662 & 26653 \\ \hline\hline
Weitere Informationen & 1190 & 1020 & 812 \\ \hline
Präsentationen & 2243 & 1940 & 1019 \\ \hline
Literaturverzeichnis & --- & --- & 5151 \\\hline
Glosar & 5483 & 4290 & 3336 \\ \hline \hline
komplette PDF & --- & --- & 49496 \\
\end{tabular} \end{tabular}
\end{table} \end{table}
\end{document} \end{document}

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

BIN
main.pdf

Binary file not shown.

View file

@ -1,27 +1,27 @@
#!/bin/bash #!/bin/bash
echo "aus pdf:" echo "aus pdf:"
echo $(pdftotext main.pdf -enc UTF-8 - | wc -m) pdftotext main.pdf -enc UTF-8 - | wc -m
echo "" echo ""
echo "mit detex:" echo "mit detex:"
echo "" echo ""
echo "hardware.tex" echo "hardware.tex"
echo $(detex hardware.tex | wc -m) detex hardware.tex | wc -m
echo "" echo ""
echo "software.tex" echo "software.tex"
echo $(detex software.tex | wc -m) detex software.tex | wc -m
echo "" echo ""
echo "einleitung.tex" echo "einleitung.tex"
echo $(detex einleitung.tex | wc -m) detex einleitung.tex | wc -m
echo "" echo ""
echo "weitere_informationen.tex" echo "weitere_informationen.tex"
echo $(detex weitere_informationen.tex | wc -m) detex weitere_informationen.tex | wc -m
echo "" echo ""
echo "main.tex" echo "main.tex"
echo $(detex main.tex | wc -m) detex main.tex | wc -m
echo "" echo ""
echo "" echo ""
echo "gesamt" echo "gesamt"
echo $(detex einleitung.tex software.tex hardware.tex weitere_informationen.tex| wc -m) detex einleitung.tex software.tex hardware.tex weitere_informationen.tex| wc -m
echo "" echo ""
echo "gesamt mit main.tex" echo "gesamt mit main.tex"
echo $(detex einleitung.tex software.tex hardware.tex weitere_informationen.tex main.tex| wc -m) detex einleitung.tex software.tex hardware.tex weitere_informationen.tex main.tex| wc -m