Skip to content

Commit

Permalink
add additional lines to compile embedded LaTeX files
Browse files Browse the repository at this point in the history
  • Loading branch information
Fiete Winter committed Nov 12, 2019
1 parent e641169 commit f009382
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 1 deletion.
2 changes: 2 additions & 0 deletions 04_aliasing/fig09/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@ Algorithm to determine aliasing frequency for single position in WFS

This is an embedded LaTeX file. Please include it into your own document together with
```LaTeX
\usepackage{soundfield}
\usepackage{algpseudocode}
\algnewcommand\Continue{\textbf{continue}}
```
2 changes: 2 additions & 0 deletions 04_aliasing/fig11/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@ Algorithm to determine aliasing frequency for extended area in WFS

This is an embedded LaTeX file. Please include it into your own document together with
```LaTeX
\usepackage{soundfield}
\usepackage{algpseudocode}
\algnewcommand\Continue{\textbf{continue}}
```
2 changes: 2 additions & 0 deletions 04_aliasing/fig13/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@ Algorithm to min. and max. tangential component of the local wavenumber vector

This is an embedded LaTeX file. Please include it into your own document together with
```LaTeX
\usepackage{soundfield}
\usepackage{algpseudocode}
\algnewcommand\Continue{\textbf{continue}}
```
2 changes: 2 additions & 0 deletions 04_aliasing/fig21/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@ Algorithm to determine aliasing frequency for extended area in NFCHOA

This is an embedded LaTeX file. Please include it into your own document together with
```LaTeX
\usepackage{soundfield}
\usepackage{algpseudocode}
\algnewcommand\Continue{\textbf{continue}}
```
2 changes: 2 additions & 0 deletions 04_aliasing/fig23/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@ Algorithm to determine aliasing frequency for extended area in LWFS-SBL

This is an embedded LaTeX file. Please include it into your own document together with
```LaTeX
\usepackage{soundfield}
\usepackage{algpseudocode}
\algnewcommand\Continue{\textbf{continue}}
```
2 changes: 2 additions & 0 deletions 04_aliasing/fig28/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@ Algorithm to determine aliasing frequency for extended area in LWFS-VSS

This is an embedded LaTeX file. Please include it into your own document together with
```LaTeX
\usepackage{soundfield}
\usepackage{algpseudocode}
\algnewcommand\Continue{\textbf{continue}}
```
7 changes: 6 additions & 1 deletion bash/create_figure_readmes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,12 @@ find $1 -iname "fig*" -type d | sort -n | while read -r directory ; do
then
printf "\nBash:\n\`\`\`Bash\n$ pdflatex $texfilelocal\n\`\`\`\n" >> $directory/README.md
else
printf '\nThis is an embedded LaTeX file. Please include it into your own document together with\n```LaTeX\n\\usepackage{algpseudocode}\n```\n' >> $directory/README.md
printf '\nThis is an embedded LaTeX file. Please include it into your own document together with\n' >> $directory/README.md
printf '```LaTeX\n' >> $directory/README.md
printf '\\usepackage{soundfield}\n' >> $directory/README.md
printf '\\usepackage{algpseudocode}\n' >> $directory/README.md
printf '\\algnewcommand\\Continue{\\textbf{continue}}\n' >> $directory/README.md
printf '```\n' >> $directory/README.md
fi
done

Expand Down

0 comments on commit f009382

Please sign in to comment.