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
*~
*.glsdefs
Session.tks

Binary file not shown.

View file

@ -124,13 +124,20 @@
\begin{table}[h]
\centering
\label{länge}
\begin{tabular}{c|c}
Teil & Zeichen \\
\begin{tabular}{c|c|c|c}
Teil & \LaTeX-Code & \LaTeX\ ohne Befehle (detex) & PDF \\
\hline\hline
Einleitung & \\\hline
Hardware & \\\hline
Software & \\ \hline\hline
Gesamt &
Einleitung & 1446 & 1311 & 1155\\\hline
Hardware & 11066 & 8445 & 6793\\\hline
Software & 14957 & 12615 & 14493 \\ \hline
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{table}
\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
echo "aus pdf:"
echo $(pdftotext main.pdf -enc UTF-8 - | wc -m)
pdftotext main.pdf -enc UTF-8 - | wc -m
echo ""
echo "mit detex:"
echo ""
echo "hardware.tex"
echo $(detex hardware.tex | wc -m)
detex hardware.tex | wc -m
echo ""
echo "software.tex"
echo $(detex software.tex | wc -m)
detex software.tex | wc -m
echo ""
echo "einleitung.tex"
echo $(detex einleitung.tex | wc -m)
detex einleitung.tex | wc -m
echo ""
echo "weitere_informationen.tex"
echo $(detex weitere_informationen.tex | wc -m)
detex weitere_informationen.tex | wc -m
echo ""
echo "main.tex"
echo $(detex main.tex | wc -m)
detex main.tex | wc -m
echo ""
echo ""
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 "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