19 | | The bibfile must be prepared for importing. First make sure only |
20 | | ASCII characters are used. Every `\` must be replaced by `\\\` (note: |
21 | | three backslashes). Remove all empty lines at the end of the file. |
22 | | |
23 | | Copy all pdf files that must be attached to the `/var/www/media/papers/` |
24 | | directory. Check if all filenames match the citekeys in the bibfile |
25 | | (be aware of Capitals). Also make sure all files have `.pdf` as extension |
26 | | and not `.PDF`. |
| 19 | * prepare the bibfile for importing |
| 20 | * make sure only ASCII characters are used: {{{recode -d u8..latex < in.bib > out.bib}}} |
| 21 | * Note: make sure the in.bib file only contains utf-8 without BOM (header?). This can be done in Notepad++ |
| 22 | * every `\` must be replaced by `\\\` (note: three back slashes) |
| 23 | * remove all empty lines at the end of the file. |
| 24 | * check if all filenames match the citekeys in the bibfile (be aware of Capitals): {{{> LANG=C; ls}}} |
| 25 | * also make sure all files have `.pdf` as extension and not `.PDF`: {{{> ls | grep -v pdf}}} |
| 26 | * copy all pdf files that must be attached to the `/var/www/media/papers/` directory. |