diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6998545..174f232 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,11 +3,7 @@ name: Build on: workflow_call: push: - branches: - - main pull_request: - branches: - - main jobs: build-english: @@ -23,30 +19,30 @@ jobs: run: | python -m pip install -r requirements.txt - name: Create build and output folder - working-directory: ./english + working-directory: ./src run: | mkdir -p build output - name: Upload data as artifact uses: actions/upload-artifact@v4 with: name: english-data - path: english/data + path: src/data/english - name: Create format files with Python - working-directory: ./english + working-directory: ./src run: | - python format.py oxford_3000 - python format.py oxford_5000 - python format.py oxford_5000_exclusive + python format_english.py oxford_3000 + python format_english.py oxford_5000 + python format_english.py oxford_5000_exclusive - name: Upload html as artifact uses: actions/upload-artifact@v4 with: name: english-output-html - path: english/output/*.html + path: src/output/jxford_*.html - name: Install wkthtmltopdf run: | sudo apt-get update && sudo apt-get install -y wkhtmltopdf - name: Convert html to pdf with wkhtmltopdf - working-directory: ./english + working-directory: ./src run: | wkhtmltopdf --user-style-sheet format/table.css output/oxford_3000_alphabetical.html output/oxford_3000_alphabetical.pdf wkhtmltopdf --user-style-sheet format/table.css output/oxford_3000_by_cefr_shuffle.html output/oxford_3000_by_cefr_shuffle.pdf @@ -67,11 +63,11 @@ jobs: uses: actions/upload-artifact@v4 with: name: english-output-pdf-from-html - path: english/output/*.pdf + path: src/output/oxford*.pdf - name: Create pdf with Latex uses: xu-cheng/latex-action@v3 with: - working_directory: english/format + working_directory: src/format/english latexmk_use_xelatex: true root_file: | *.tex @@ -79,7 +75,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: english-output-pdf-from-tex - path: english/format/*.pdf + path: src/format/english/*.pdf build-spanish: runs-on: ubuntu-22.04 steps: @@ -93,29 +89,29 @@ jobs: run: | python -m pip install -r requirements.txt - name: Create build and output folder - working-directory: ./spanish + working-directory: ./src run: | mkdir -p build output - name: Upload data as artifact uses: actions/upload-artifact@v4 with: name: spanish-data - path: spanish/data + path: data/spanish - name: Create format files with Python - working-directory: ./spanish + working-directory: ./src run: | - python format.py spanish_3000 - python format.py spanish_5000 + python format_spanish.py spanish_3000 + python format_spanish.py spanish_5000 - name: Upload html as artifact uses: actions/upload-artifact@v4 with: name: spanish-output-html - path: spanish/output/*.html + path: src/output/spanish*.html - name: Install wkthtmltopdf run: | sudo apt-get update && sudo apt-get install -y wkhtmltopdf - name: Convert html to pdf with wkhtmltopdf - working-directory: ./spanish + working-directory: ./src run: | wkhtmltopdf --user-style-sheet format/table.css output/spanish_3000_alphabetical.html output/spanish_3000_alphabetical.pdf wkhtmltopdf --user-style-sheet format/table.css output/spanish_3000_shuffled.html output/spanish_3000_shuffled.pdf @@ -133,11 +129,11 @@ jobs: uses: actions/upload-artifact@v4 with: name: spanish-output-pdf-from-html - path: spanish/output/*.pdf + path: src/output/spanish*.pdf - name: Create pdf with Latex uses: xu-cheng/latex-action@v3 with: - working_directory: spanish/format + working_directory: src/format/spanish latexmk_use_xelatex: true root_file: | *.tex @@ -145,4 +141,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: spanish-output-pdf-from-tex - path: spanish/format/*.pdf \ No newline at end of file + path: src/format/spanish/*.pdf \ No newline at end of file diff --git a/.gitignore b/.gitignore index 7051f7d..aea49b6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,21 +1,14 @@ -# wip - -english/build/ -english/upload/ -english/audio/* -#english/data/* -english/output/* -english/format/* -!english/format/*.tex -!english/format/*.css -resources/* +src/build/* +src/output/* +src/audio/* +!src/format/**/*.tex +!src/format/**/*.css + +resources/ +src/data/**/*xhtml + *.zip -spanish/data/*xhtml -spanish/output/* -spanish/format/* -!spanish/format/*.tex -!spanish/format/*.css # Created by https://www.toptal.com/developers/gitignore/api/latex,visualstudiocode,python,jupyternotebooks # Edit at https://www.toptal.com/developers/gitignore?templates=latex,visualstudiocode,python,jupyternotebooks diff --git a/english/README.md b/english/README.md deleted file mode 100644 index b6bf309..0000000 --- a/english/README.md +++ /dev/null @@ -1,80 +0,0 @@ -# Spanish vocabulary + definition + examples translation - -``` -latexmk -pdfxe -cd format/spanish_5000_two_column_alphabetical_by_rank_with_example.tex -outdir=../output -``` - - -This project aims to provide easy-to-read and printable vocabulary list of the -most common words of the English language with their meaning. - -The lists are mostly based on data gathered from the oxford 3000, 5000 and 5000 exclusive lists. - -The word lists contain the following points of data -* Spelling (text) -* Lexical spelling (text) -* Meaning (text) -* Example (text) -* Example translation (text) - -This project contains scripts to extract data and formatting. - -## Requirements -see `scraping` below -see `formatting` below - -## Data - - -## Sample outputs - -To be updated - -1. grouped by CEFR alphabetical order -![by_cefr_img_sample](./img/oxford_5000_exclusive_by_cefr_sample.jpg) -[by_cefr_pdf_sample](./img/oxford_5000_exclusive_by_cefr_sample.pdf) - -2. grouped by CEFR two columns word/type/definition -![by_cefr_two_column_by_cefr_shuffle_img_sample](./img/oxford_5000_exclusive_two_column_by_cefr_shuffle_sample.jpg) -[by_cefr_two_column_by_cefr_shuffle_pdf_sample](./img/oxford_5000_exclusive_two_column_by_cefr_shuffle_sample.pdf) - -## Folder structure -``` -├── data -│   ├── df.pkl -├── output -│   └── *pdf / *html -├── format.ipynb -└── scrape.ipynb - -``` -## Scraping -beautifulsoup4, requests, pandas - - -``` -See `scrape.ipynb` - -## Formatting -pip: -* jinja2 -* pandas - -ubuntu packages: -* pandoc -* texlive -* texlive-fonts-extra -* latexmk -* [hwkhtmltopdf](ttps://wkhtmltopdf.org/downloads.html) - - -Complicated phonetic pronunciation (e.g. `/ˈeɪbl/`) won't work well. So instead we convert to HTML -```mermaid -flowchart LR - df--pandas-->tex--LaTeX-->pdf; - df--pandas-->HTML--pandoc-->pdf; -``` - -See `format.ipynb` - -## Resources and credit diff --git a/english/format.ipynb b/english/format.ipynb deleted file mode 100644 index 2dcc167..0000000 --- a/english/format.ipynb +++ /dev/null @@ -1,10505 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Format 3000,5000,5000 exclusive data to word lists\n", - "format 3000,5000,5000_exclusve in the following formats:\n", - "\n", - "* all data text british: word, type, definition, example, phonetics, cefr\n", - "* all data text usa: word, type, definition, example, phonetics, cefr\n", - "* all data + pronunciation: same as above with clickable HTML\n", - "* 2 column: word, type, definiton\n", - "\n", - "All of the above grouped by cefr" - ] - }, - { - "cell_type": "code", - "execution_count": 17, - "metadata": {}, - "outputs": [], - "source": [ - "import pandas as pd\n", - "import os \n", - "import re" - ] - }, - { - "cell_type": "code", - "execution_count": 18, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
wordtypecefrphon_brphon_n_amdefinitionexampleukus
0aindefinite articlea1/ə//ə/used before countable or singular nouns referr...a man/horse/unita_uk.mp3a_us.mp3
1abandonverbb2/əˈbændən//əˈbændən/to leave somebody, especially somebody you are...abandon somebody, The baby had been abandoned ...abandon_uk.mp3abandon_us.mp3
2abilitynouna2/əˈbɪləti//əˈbɪləti/the fact that somebody/something is able to do...People with the disease may lose their ability...ability_uk.mp3ability_us.mp3
3ableadjectivea2/ˈeɪbl//ˈeɪbl/to have the skill, intelligence, opportunity, ...You must be able to speak French for this job.able_uk.mp3able_us.mp3
4abolishverbc1/əˈbɒlɪʃ//əˈbɑːlɪʃ/to officially end a law, a system or an instit...This tax should be abolished.abolish_uk.mp3abolish_us.mp3
\n", - "
" - ], - "text/plain": [ - " word type cefr phon_br phon_n_am \\\n", - "0 a indefinite article a1 /ə/ /ə/ \n", - "1 abandon verb b2 /əˈbændən/ /əˈbændən/ \n", - "2 ability noun a2 /əˈbɪləti/ /əˈbɪləti/ \n", - "3 able adjective a2 /ˈeɪbl/ /ˈeɪbl/ \n", - "4 abolish verb c1 /əˈbɒlɪʃ/ /əˈbɑːlɪʃ/ \n", - "\n", - " definition \\\n", - "0 used before countable or singular nouns referr... \n", - "1 to leave somebody, especially somebody you are... \n", - "2 the fact that somebody/something is able to do... \n", - "3 to have the skill, intelligence, opportunity, ... \n", - "4 to officially end a law, a system or an instit... \n", - "\n", - " example uk \\\n", - "0 a man/horse/unit a_uk.mp3 \n", - "1 abandon somebody, The baby had been abandoned ... abandon_uk.mp3 \n", - "2 People with the disease may lose their ability... ability_uk.mp3 \n", - "3 You must be able to speak French for this job. able_uk.mp3 \n", - "4 This tax should be abolished. abolish_uk.mp3 \n", - "\n", - " us \n", - "0 a_us.mp3 \n", - "1 abandon_us.mp3 \n", - "2 ability_us.mp3 \n", - "3 able_us.mp3 \n", - "4 abolish_us.mp3 " - ] - }, - "execution_count": 18, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "DATASET = 'oxford_3000'\n", - "#DATASET = 'oxford_5000'\n", - "#DATASET = 'oxford_5000_exclusive'\n", - "df = pd.read_pickle(f\"./data/{DATASET}.pkl\")\n", - "df.head()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## HTML+PDF all columns alphabetical" - ] - }, - { - "cell_type": "code", - "execution_count": 19, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/tmp/ipykernel_119920/3163655802.py:15: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n", - "Loading pages (1/6)\n", - "[==============================> ] 50%\r" - ] - } - ], - "source": [ - "# Complete to HTML\n", - "def replace_word_in_example_with_underscore(word, example):\n", - " example_split = example.split(' ')\n", - " def _replace(e):\n", - " if word not in e:\n", - " return e \n", - " if not re.match(f\"^{word}.*?$\", e, re.IGNORECASE):\n", - " return e\n", - " return e.replace(word, '_')\n", - " example_split_replaced = list(map(lambda e: _replace(e), example_split))\n", - " return ' '.join(example_split_replaced)\n", - "\n", - "def load_data():\n", - " data = df[[\"word\", \"type\", \"cefr\", \"phon_br\", \"phon_n_am\", \"definition\", \"example\"]]\n", - " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n", - " data = data.rename(columns={'phon_br' : 'phonetics (UK)'})\n", - " data = data.rename(columns={'phon_n_am' : 'phonetics (US)'})\n", - " return data\n", - "\n", - "data = load_data()\n", - "\n", - "style = data.style.format(\n", - " escape=\"html\",\n", - " )\n", - "style = style.hide(axis='index')\n", - "\n", - "html = style.to_html()\n", - "filename = DATASET + '_alphabetical'\n", - "with open(f'output/{filename}.html', 'w') as f:\n", - " f.write(''+html)\n", - "\n", - "cmd = f'pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle=\"{filename}\" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css --pdf-engine-opt=--enable-local-file-access'\n", - "os.system(cmd)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/tmp/ipykernel_119920/3163655802.py:15: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n", - "Loading pages (1/6)\n", - "Counting pages (2/6) \n", - "Resolving links (4/6) \n", - "Loading headers and footers (5/6) \n", - "Printing pages (6/6)\n", - "Done \n" - ] - }, - { - "data": { - "text/plain": [ - "0" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Complete to HTML\n", - "data = load_data()\n", - "data[\"example\"] = data.apply(lambda row: replace_word_in_example_with_underscore(row.word, row.example) , axis=1)\n", - "\n", - "style = data.style.format(\n", - " escape=\"html\",\n", - " )\n", - "style = style.hide(axis='index')\n", - "\n", - "html = style.to_html()\n", - "filename = DATASET + '_underscore_alphabetical'\n", - "with open(f'output/{filename}.html', 'w') as f:\n", - " f.write(''+html)\n", - "\n", - "cmd = f'pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle=\"{filename}\" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css --pdf-engine-opt=--enable-local-file-access'\n", - "os.system(cmd)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## HTML+PDF all columns grouped by CEFR" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/tmp/ipykernel_119920/3163655802.py:15: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "This tax should be _ed.\n", - "\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Loading pages (1/6)\n", - "Counting pages (2/6) \n", - "Resolving links (4/6) \n", - "Loading headers and footers (5/6) \n", - "Printing pages (6/6)\n", - "Done \n" - ] - }, - { - "data": { - "text/plain": [ - "0" - ] - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "data = load_data()\n", - "data[\"example\"] = data.apply(lambda row: replace_word_in_example_with_underscore(row.word, row.example) , axis=1)\n", - "print(data[\"example\"][0])\n", - "cefrs = ['A1', 'A2', 'B1', 'B2', 'C1']\n", - "data_by_cefr = list(map(lambda c : data[data['cefr'] == c], cefrs))\n", - "\n", - "# Complete to HTML\n", - "html_out = ''\n", - "for data in data_by_cefr:\n", - " if data.empty:\n", - " continue\n", - " cefr = data['cefr'].iloc[0]\n", - " html_out += f'

{cefr}

'\n", - " data = data.drop(['cefr'], axis=1)\n", - " print()\n", - " data = data.rename(columns={'word' : f'word ({cefr})'})\n", - "\n", - " style = data.style.format(\n", - " escape=\"html\",\n", - " )\n", - " style = style.hide(axis='index')\n", - " html_out += style.to_html()\n", - "\n", - "\n", - "filename = DATASET+'_underscore_by_cefr'\n", - "with open(f'output/{filename}.html', 'w', encoding='utf-8') as f:\n", - " f.write(html_out)\n", - "\n", - "# to pdf\n", - "cmd = f\"\"\"pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle=\"{filename}\" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css --pdf-engine-opt=--enable-local-file-access --title '{filename}'\"\"\"\n", - "os.system(cmd)\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/tmp/ipykernel_119920/3163655802.py:15: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Loading pages (1/6)\n", - "Counting pages (2/6) \n", - "Resolving links (4/6) \n", - "Loading headers and footers (5/6) \n", - "Printing pages (6/6)\n", - "Done \n" - ] - }, - { - "data": { - "text/plain": [ - "0" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "data = load_data()\n", - "cefrs = ['A1', 'A2', 'B1', 'B2', 'C1']\n", - "data_by_cefr = list(map(lambda c : data[data['cefr'] == c], cefrs))\n", - "\n", - "# Complete to HTML\n", - "html_out = ''\n", - "for data in data_by_cefr:\n", - " if data.empty:\n", - " continue\n", - " cefr = data['cefr'].iloc[0]\n", - " html_out += f'

{cefr}

'\n", - " data = data.drop(['cefr'], axis=1)\n", - " print()\n", - " data = data.rename(columns={'word' : f'word ({cefr})'})\n", - "\n", - " style = data.style.format(\n", - " escape=\"html\",\n", - " )\n", - " style = style.hide(axis='index')\n", - " html_out += style.to_html()\n", - "\n", - "\n", - "filename = DATASET+'_by_cefr'\n", - "with open(f'output/{filename}.html', 'w', encoding='utf-8') as f:\n", - " f.write(html_out)\n", - "\n", - "# to pdf\n", - "cmd = f\"\"\"pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle=\"{filename}\" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css --pdf-engine-opt=--enable-local-file-access --title '{filename}'\"\"\"\n", - "os.system(cmd)\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## HTML+PDF all columns grouped by CEFR shuffle" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/tmp/ipykernel_119920/3163655802.py:15: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n", - "/tmp/ipykernel_119920/3163655802.py:15: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Loading pages (1/6)\n", - "Counting pages (2/6) \n", - "Resolving links (4/6) \n", - "Loading headers and footers (5/6) \n", - "Printing pages (6/6)\n", - "Done \n" - ] - }, - { - "data": { - "text/plain": [ - "0" - ] - }, - "execution_count": 7, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Complete to HTML\n", - "html_out = ''\n", - "for data in data_by_cefr:\n", - " if data.empty:\n", - " continue\n", - " data = load_data()\n", - " cefr = data['cefr'].iloc[0]\n", - " html_out += f'

{cefr}

'\n", - " data = data.drop(['cefr'], axis=1)\n", - " print()\n", - " data = data.rename(columns={'word' : f'word ({cefr})'})\n", - " data = data.sample(frac=1)\n", - "\n", - " style = data.style.format(\n", - " escape=\"html\",\n", - " )\n", - " style = style.hide(axis='index')\n", - " html_out += style.to_html()\n", - "\n", - "\n", - "filename = DATASET+'_by_cefr_shuffle'\n", - "with open(f'output/{filename}.html', 'w', encoding='utf-8') as f:\n", - " f.write(html_out)\n", - "\n", - "# to pdf\n", - "cmd = f\"\"\"pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle=\"{filename}\" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css --pdf-engine-opt=--enable-local-file-access --title '{filename}'\"\"\"\n", - "os.system(cmd)\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/tmp/ipykernel_119920/3163655802.py:15: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n", - "/tmp/ipykernel_119920/3163655802.py:15: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Loading pages (1/6)\n", - "Counting pages (2/6) \n", - "Resolving links (4/6) \n", - "Loading headers and footers (5/6) \n", - "Printing pages (6/6)\n", - "Done \n" - ] - }, - { - "data": { - "text/plain": [ - "0" - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Complete to HTML\n", - "html_out = ''\n", - "for data in data_by_cefr:\n", - " if data.empty:\n", - " continue\n", - " data = load_data()\n", - " cefr = data['cefr'].iloc[0]\n", - " html_out += f'

{cefr}

'\n", - " data = data.drop(['cefr'], axis=1)\n", - " print()\n", - " data = data.rename(columns={'word' : f'word ({cefr})'})\n", - " data = data.sample(frac=1)\n", - "\n", - " style = data.style.format(\n", - " escape=\"html\",\n", - " )\n", - " style = style.hide(axis='index')\n", - " html_out += style.to_html()\n", - "\n", - "\n", - "filename = DATASET+'_by_cefr_shuffle'\n", - "with open(f'output/{filename}.html', 'w', encoding='utf-8') as f:\n", - " f.write(html_out)\n", - "\n", - "# to pdf\n", - "cmd = f\"\"\"pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle=\"{filename}\" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css --pdf-engine-opt=--enable-local-file-access --title '{filename}'\"\"\"\n", - "os.system(cmd)\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## 2 Column LateX word,type and definition alphabetical" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "import re\n", - "# Fix supertabular and add \\textit to type\n", - "def fix_latex_line(line):\n", - " if re.match(r\"^\\\\begin{supertabular}\", line):\n", - " # Add column_format to supertabular}\n", - " return '\\\\begin{supertabular}'+'{'+column_format+'}'\n", - " if re.match(r\"^\\\\.*{tabular}\", line):\n", - " # Remove {tabular}\n", - " return ''\n", - " if re.match(r\"^\\w+\\s.*\\(\\w+\\s?\\w+?\\)\", line):\n", - " # Italics\n", - " return re.sub(r\"(^\\w+\\s.*)(\\(\\w+\\s?\\w+?\\))\", r\"\\1\\\\textit{\\2}\", line)\n", - " return line" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/tmp/ipykernel_119920/3163655802.py:15: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n" - ] - } - ], - "source": [ - "# 2 Column word + definition\n", - "data = load_data()\n", - "data = data[[\"word\", \"definition\"]]\n", - "\n", - "style = data.style.format(\n", - " escape=\"latex\",\n", - " )\n", - "style = style.hide(axis='index')\n", - "style = style.hide(axis='columns')\n", - "\n", - "column_format = 'p{1.2in}p{2.3in}p{1.2in}p{2.3in}'\n", - "latex = style.to_latex(\n", - " environment='supertabular',\n", - " column_format=column_format\n", - ")\n", - "\n", - "latex_lines = latex.splitlines()\n", - "latex = '\\n'.join((map(fix_latex_line, latex_lines)))\n", - "\n", - "filename = DATASET + '_table_alphabetical'\n", - "with open(f'./build/{filename}.tex', 'w') as f:\n", - " f.write(latex)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## 2 Column LateX word,type and definition by CEFR" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/tmp/ipykernel_119920/3163655802.py:15: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n" - ] - } - ], - "source": [ - "data = load_data()\n", - "cefrs = ['A1', 'A2', 'B1', 'B2', 'C1']\n", - "data_by_cefr = list(map(lambda c : data[data['cefr'] == c], cefrs))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
wordtypecefrphonetics (UK)phonetics (US)definitionexample
\n", - "
" - ], - "text/plain": [ - "Empty DataFrame\n", - "Columns: [word, type, cefr, phonetics (UK), phonetics (US), definition, example]\n", - "Index: []" - ] - }, - "execution_count": 12, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "data_by_cefr[1].head()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/tmp/ipykernel_119920/1060421477.py:5: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data[\"word\"] = data.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - "/tmp/ipykernel_119920/1060421477.py:5: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data[\"word\"] = data.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n" - ] - } - ], - "source": [ - "for data, cefr in zip(data_by_cefr, cefrs):\n", - " if data.empty:\n", - " continue\n", - " data = data[[\"word\", \"definition\", \"type\", \"cefr\"]]\n", - " data[\"word\"] = data.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - " data = data[[\"word\", \"definition\"]]\n", - "\n", - " style = data.style.format(\n", - " escape=\"latex\",\n", - " )\n", - " style = style.hide(axis='index')\n", - " style = style.hide(axis='columns')\n", - "\n", - " column_format = 'p{1.2in}p{2.3in}p{1.2in}p{2.3in}'\n", - " latex = style.to_latex(\n", - " environment='supertabular',\n", - " column_format=column_format\n", - " )\n", - "\n", - " latex_lines = latex.splitlines()\n", - "\n", - " latex = '\\n'.join((map(fix_latex_line, latex_lines)))\n", - "\n", - " filename = f'{DATASET}_{cefr}'\n", - " with open(f'build/{filename}.tex', 'w') as f:\n", - " f.write(latex)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## 2 Column LateX word,type and definition by CEFR shuffle" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/tmp/ipykernel_119920/3056780930.py:5: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data[\"word\"] = data.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - "/tmp/ipykernel_119920/3056780930.py:5: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data[\"word\"] = data.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n" - ] - } - ], - "source": [ - "for data, cefr in zip(data_by_cefr, cefrs):\n", - " if data.empty:\n", - " continue\n", - " data = data[[\"word\", \"definition\", \"type\", \"cefr\"]]\n", - " data[\"word\"] = data.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - " data = data[[\"word\", \"definition\"]]\n", - "\n", - " data = data.sample(frac = 1)\n", - "\n", - " style = data.style.format(\n", - " escape=\"latex\",\n", - " )\n", - " style = style.hide(axis='index')\n", - " style = style.hide(axis='columns')\n", - "\n", - " column_format = 'p{1.2in}p{2.3in}p{1.2in}p{2.3in}'\n", - " latex = style.to_latex(\n", - " environment='supertabular',\n", - " column_format=column_format\n", - " )\n", - "\n", - " latex_lines = latex.splitlines()\n", - " latex = '\\n'.join((map(fix_latex_line, latex_lines)))\n", - "\n", - " filename = f'{DATASET}_shuffle_{cefr}'\n", - " with open(f'build/{filename}.tex', 'w') as f:\n", - " f.write(latex)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Rc files read:\n", - " /etc/LatexMk\n", - "Latexmk: This is Latexmk, John Collins, 20 November 2021, version: 4.76.\n", - "Latexmk: Changing directory to 'format/'\n", - "Rule 'pdflatex': File changes, etc:\n", - " Changed files, or newly in use since previous run(s):\n", - " 'oxford_5000_exclusive_two_column_alphabetical.tex'\n", - "------------\n", - "Run number 1 of rule 'pdflatex'\n", - "------------\n", - "------------\n", - "Running 'pdflatex -recorder -output-directory=\"/home/jelle/wd/words/english/output\" \"oxford_5000_exclusive_two_column_alphabetical.tex\"'\n", - "------------\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Latexmk: applying rule 'pdflatex'...\n", - "This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2022/dev/Debian) (preloaded format=pdflatex)\n", - " restricted \\write18 enabled.\n", - "entering extended mode\n", - "(./oxford_5000_exclusive_two_column_alphabetical.tex\n", - "LaTeX2e <2021-11-15> patch level 1\n", - "L3 programming layer <2022-01-21>\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls\n", - "Document Class: article 2021/10/04 v1.4n Standard LaTeX document class\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty\n", - "(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty)))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/blindtext/blindtext.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/tools/xspace.sty))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/utf8x.def))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucs.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-global.def))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/supertabular/supertabular.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/psnfss/helvet.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1phv.fd)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def)\n", - "(/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_alphabeti\n", - "cal.aux)\n", - "*geometry* driver: auto-detecting\n", - "*geometry* detected driver: pdftex\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucsencs.def)\n", - "(/home/jelle/wd/words/english/output/../build/oxford_5000_exclusive_table_alpha\n", - "betical.tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1596) in paragraph at lines 7--8\n", - "\\OT1/phv/m/n/10 stance from the sur-face or space\n", - "\n", - "Underfull \\hbox (badness 4467) in paragraph at lines 22--23\n", - "[]\\OT1/phv/m/n/10 according to a rule or the way\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--24\n", - "[] \n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-32.def)\n", - "Underfull \\hbox (badness 1184) in paragraph at lines 41--42\n", - "[]\\OT1/phv/m/n/10 the ac-tion or pro-cess of chang-ing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 24--42\n", - "[] \n", - "[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 42--67\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 67--91\n", - "[] \n", - "[2]\n", - "Underfull \\hbox (badness 2856) in paragraph at lines 92--93\n", - "[]\\OT1/phv/m/n/10 a ve-hi-cle with spe-cial equip-ment,\n", - "\n", - "Underfull \\hbox (badness 3623) in paragraph at lines 111--112\n", - "[]\\OT1/phv/m/n/10 to show your ap-proval of some-\n", - "\n", - "Underfull \\hbox (badness 6910) in paragraph at lines 111--112\n", - "\\OT1/phv/m/n/10 body/something by clap-ping your\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 91--114\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 122--123\n", - "[]\\OT1/phv/m/n/10 to pro-vide weapons for your-\n", - "\n", - "Underfull \\hbox (badness 2393) in paragraph at lines 122--123\n", - "\\OT1/phv/m/n/10 self/somebody in or-der to fight a\n", - "\n", - "Underfull \\hbox (badness 1014) in paragraph at lines 126--127\n", - "[]\\OT1/phv/m/n/10 pictures and pho-tographs pre-pared\n", - "\n", - "Underfull \\hbox (badness 3792) in paragraph at lines 132--133\n", - "[]\\OT1/phv/m/n/10 the crime of at-tack-ing some-body\n", - "\n", - "Underfull \\hbox (badness 1490) in paragraph at lines 136--137\n", - "[]\\OT1/phv/m/n/10 to state clearly and def-i-nitely that\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 114--138\n", - "[] \n", - "[3]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 151--152\n", - "[]\\OT1/phv/m/n/10 a qual-ity or fea-ture of some-\n", - "\n", - "Underfull \\hbox (badness 1024) in paragraph at lines 155--156\n", - "[]\\OT1/phv/m/n/10 an of-fi-cial ex-am-i-na-tion of busi-ness\n", - "\n", - "Underfull \\hbox (badness 3302) in paragraph at lines 159--160\n", - "[]\\OT1/phv/m/n/10 having con-trols that work with-out\n", - "\n", - "Underfull \\hbox (badness 3623) in paragraph at lines 164--165\n", - "[]\\OT1/phv/m/n/10 knowing some-thing; know-ing that\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 138--165\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1342) in paragraph at lines 174--175\n", - "\\OT1/phv/m/n/10 usu-ally in se-cret; an oc-ca-sion on\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 165--184\n", - "[] \n", - "[4]\n", - "Underfull \\hbox (badness 7168) in paragraph at lines 193--194\n", - "[]\\OT1/phv/m/n/10 in or to a lower po-si-tion than\n", - "\n", - "Underfull \\hbox (badness 1194) in paragraph at lines 193--194\n", - "\\OT1/phv/m/n/10 some-body/something; un-der some-\n", - "\n", - "Underfull \\hbox (badness 2556) in paragraph at lines 196--197\n", - "[]\\OT1/phv/m/n/10 next to or at the side of some-\n", - "\n", - "Underfull \\hbox (badness 6316) in paragraph at lines 199--200\n", - "[]\\OT1/phv/m/n/10 to give in-for-ma-tion about some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 184--211\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 215--216\n", - "[]\\OT1/phv/m/n/10 to ask God to pro-tect some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 211--234\n", - "[] \n", - "[5]\n", - "Underfull \\hbox (badness 1406) in paragraph at lines 240--241\n", - "[]\\OT1/phv/m/n/10 a per-son whose job is pre-sent-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 246--247\n", - "\\OT1/phv/m/n/10 or pro-tects some-body/something\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 234--257\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 257--284\n", - "[] \n", - "[6]\n", - "Underfull \\hbox (badness 1509) in paragraph at lines 286--287\n", - "[]\\OT1/phv/m/n/10 a writ-ten state-ment de-scrib-ing the\n", - "\n", - "Underfull \\hbox (badness 3657) in paragraph at lines 287--288\n", - "[]\\OT1/phv/m/n/10 an act of run-ning or driv-ing af-\n", - "\n", - "Underfull \\hbox (badness 2799) in paragraph at lines 288--289\n", - "[]\\OT1/phv/m/n/10 to run, drive, etc. af-ter some-\n", - "\n", - "Underfull \\hbox (badness 3229) in paragraph at lines 288--289\n", - "\\OT1/phv/m/n/10 body/something in or-der to catch\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 311--312\n", - "[]\\OT1/phv/m/n/10 to hold on tightly to some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 284--312\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 312--313\n", - "\\OT1/phv/m/n/10 peo-ple can go for spe-cial med-i-cal\n", - "\n", - "Underfull \\hbox (badness 1924) in paragraph at lines 328--329\n", - "[]\\OT1/phv/m/n/10 connected with or be-long-ing to a\n", - "\n", - "Underfull \\hbox (badness 4673) in paragraph at lines 333--334\n", - "[]\\OT1/phv/m/n/10 to stop some-thing un-pleas-ant or\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 312--337\n", - "[] \n", - "[7]\n", - "Underfull \\hbox (badness 1371) in paragraph at lines 339--340\n", - "[]\\OT1/phv/m/n/10 a per-son who de-scribes an event\n", - "\n", - "Underfull \\hbox (badness 2418) in paragraph at lines 351--352\n", - "[]\\OT1/phv/m/n/10 something, es-pe-cially money, that\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 337--360\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 366--367\n", - "[]\\OT1/phv/m/n/10 to have some-body/something as\n", - "\n", - "Underfull \\hbox (badness 2027) in paragraph at lines 367--368\n", - "[]\\OT1/phv/m/n/10 an agree-ment made be-tween two\n", - "\n", - "Underfull \\hbox (badness 5274) in paragraph at lines 374--375\n", - "[]\\OT1/phv/m/n/10 an un-der-stand-ing or a be-lief of\n", - "\n", - "Underfull \\hbox (badness 2150) in paragraph at lines 377--378\n", - "[]\\OT1/phv/m/n/10 building ma-te-rial that is made by\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 360--383\n", - "[] \n", - "[8]\n", - "Underfull \\hbox (badness 2088) in paragraph at lines 392--393\n", - "\\OT1/phv/m/n/10 whether your ac-tions are right or\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 383--410\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1092) in paragraph at lines 427--428\n", - "\\OT1/phv/m/n/10 talks on a ra-dio or tele-vi-sion pro-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 410--434\n", - "[] \n", - "[9]\n", - "Underfull \\hbox (badness 1205) in paragraph at lines 437--438\n", - "[]\\OT1/phv/m/n/10 that makes some-body be-lieve that\n", - "\n", - "Underfull \\hbox (badness 1062) in paragraph at lines 449--450\n", - "\\OT1/phv/m/n/10 re-lates with an-other, the facts are\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 434--456\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1337) in paragraph at lines 458--459\n", - "[]\\OT1/phv/m/n/10 costing a lot of money, es-pe-cially\n", - "\n", - "Underfull \\hbox (badness 1019) in paragraph at lines 463--464\n", - "[]\\OT1/phv/m/n/10 to re-ply to some-body by try-ing to\n", - "\n", - "Underfull \\hbox (badness 4765) in paragraph at lines 464--465\n", - "[]\\OT1/phv/m/n/10 a per-son or thing that has the\n", - "\n", - "Underfull \\hbox (badness 1675) in paragraph at lines 464--465\n", - "\\OT1/phv/m/n/10 body/something else in a dif-fer-ent\n", - "\n", - "Underfull \\hbox (badness 3323) in paragraph at lines 472--473\n", - "[]\\OT1/phv/m/n/10 to make some-thing us-ing spe-cial\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 456--482\n", - "[] \n", - "[10]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 482--510\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1087) in paragraph at lines 518--519\n", - "[]\\OT1/phv/m/n/10 to have a par-tic-u-lar opin-ion about\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 522--523\n", - "[]\\OT1/phv/m/n/10 protecting some-body/something\n", - "\n", - "Underfull \\hbox (badness 3039) in paragraph at lines 533--534\n", - "[]\\OT1/phv/m/n/10 a pub-lic meet-ing or a march (=\n", - "\n", - "Underfull \\hbox (badness 2103) in paragraph at lines 533--534\n", - "\\OT1/phv/m/n/10 an or-ga-nized walk by many peo-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 510--534\n", - "[] \n", - "[11]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 535--536\n", - "[]\\OT1/phv/m/n/10 to strongly crit-i-cize some-\n", - "\n", - "Underfull \\hbox (badness 4467) in paragraph at lines 535--536\n", - "\\OT1/phv/m/n/10 body/something that you think is\n", - "\n", - "Underfull \\hbox (badness 1264) in paragraph at lines 536--537\n", - "[]\\OT1/phv/m/n/10 containing a lot of peo-ple, things,\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 541--542\n", - "[]\\OT1/phv/m/n/10 to show an im-age of some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 552--553\n", - "[]\\OT1/phv/m/n/10 to say of-fi-cially that some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 552--553\n", - "\\OT1/phv/m/n/10 body/something has a par-tic-u-lar\n", - "\n", - "Underfull \\hbox (badness 6842) in paragraph at lines 552--553\n", - "\\OT1/phv/m/n/10 char-ac-ter or name; to de-scribe\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 534--556\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 571--572\n", - "[]\\OT1/phv/m/n/10 to be dif-fer-ent from some-\n", - "\n", - "Underfull \\hbox (badness 3138) in paragraph at lines 576--577\n", - "[]\\OT1/phv/m/n/10 to be-come smaller, weaker, etc.;\n", - "\n", - "Underfull \\hbox (badness 1490) in paragraph at lines 579--580\n", - "[]\\OT1/phv/m/n/10 connected with man-ag-ing re-la-tions\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 556--581\n", - "[] \n", - "[12]\n", - "Underfull \\hbox (badness 1997) in paragraph at lines 585--586\n", - "[]\\OT1/phv/m/n/10 the feel-ing of be-ing sad be-cause\n", - "\n", - "Underfull \\hbox (badness 1845) in paragraph at lines 588--589\n", - "\\OT1/phv/m/n/10 to leave the po-lice or the armed\n", - "\n", - "Underfull \\hbox (badness 1635) in paragraph at lines 591--592\n", - "[]\\OT1/phv/m/n/10 to try to pre-vent some-thing or to\n", - "\n", - "Underfull \\hbox (badness 1789) in paragraph at lines 596--597\n", - "[]\\OT1/phv/m/n/10 a con-di-tion or ill-ness that causes\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 597--598\n", - "[]\\OT1/phv/m/n/10 to take the place of some-\n", - "\n", - "Underfull \\hbox (badness 1377) in paragraph at lines 600--601\n", - "[]\\OT1/phv/m/n/10 an ar-gu-ment be-tween two peo-ple,\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 581--601\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1521) in paragraph at lines 610--611\n", - "[]\\OT1/phv/m/n/10 to change the shape, ap-pear-ance\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 620--621\n", - "[]\\OT1/phv/m/n/10 to make some-body/something\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 601--628\n", - "[] \n", - "[13]\n", - "Underfull \\hbox (badness 2735) in paragraph at lines 630--631\n", - "[]\\OT1/phv/m/n/10 a per-son or an or-ga-ni-za-tion that\n", - "\n", - "Underfull \\hbox (badness 1043) in paragraph at lines 641--642\n", - "\\OT1/phv/m/n/10 der-wa-ter too long and you can-not\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 628--652\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 652--676\n", - "[] \n", - "[14]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 691--692\n", - "[]\\OT1/phv/m/n/10 that gives some-body sup-port,\n", - "\n", - "Underfull \\hbox (badness 1400) in paragraph at lines 693--694\n", - "[]\\OT1/phv/m/n/10 very large in size or amount and\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 695--696\n", - "[]\\OT1/phv/m/n/10 a pub-lic state-ment or ac-tion\n", - "\n", - "Underfull \\hbox (badness 4981) in paragraph at lines 695--696\n", - "\\OT1/phv/m/n/10 show-ing that you sup-port some-\n", - "\n", - "Underfull \\hbox (badness 1286) in paragraph at lines 696--697\n", - "\\OT1/phv/m/n/10 thing that is painful or un-pleas-ant\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 676--704\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1635) in paragraph at lines 711--712\n", - "\\OT1/phv/m/n/10 when this in-volves tak-ing fi-nan-cial\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 715--716\n", - "[]\\OT1/phv/m/n/10 a state-ment show-ing that two\n", - "\n", - "Underfull \\hbox (badness 1924) in paragraph at lines 715--716\n", - "\\OT1/phv/m/n/10 amounts or val-ues are equal, for\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 716--717\n", - "[]\\OT1/phv/m/n/10 to pro-vide your-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 716--717\n", - "\\OT1/phv/m/n/10 self/somebody/something with the\n", - "\n", - "Underfull \\hbox (badness 1092) in paragraph at lines 721--722\n", - "[]\\OT1/phv/m/n/10 when a vol-cano erupts or burn-ing\n", - "\n", - "Underfull \\hbox (badness 1552) in paragraph at lines 721--722\n", - "\\OT1/phv/m/n/10 rocks, smoke, etc. erupt or are\n", - "\n", - "Underfull \\hbox (badness 2443) in paragraph at lines 724--725\n", - "\\OT1/phv/m/n/10 por-tant or ba-sic na-ture of some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 704--726\n", - "[] \n", - "[15]\n", - "Underfull \\hbox (badness 1924) in paragraph at lines 728--729\n", - "[]\\OT1/phv/m/n/10 connected with or be-long-ing to a\n", - "\n", - "Underfull \\hbox (badness 6608) in paragraph at lines 733--734\n", - "[]\\OT1/phv/m/n/10 the slow steady de-vel-op-ment of\n", - "\n", - "Underfull \\hbox (badness 1067) in paragraph at lines 734--735\n", - "\\OT1/phv/m/n/10 with slow steady de-vel-op-ment and\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 745--746\n", - "[]\\OT1/phv/m/n/10 the act of pre-vent-ing some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 745--746\n", - "\\OT1/phv/m/n/10 body/something from en-ter-ing a\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 726--752\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 752--775\n", - "[] \n", - "[16]\n", - "Underfull \\hbox (badness 1895) in paragraph at lines 788--789\n", - "\\OT1/phv/m/n/10 will hap-pen or have hap-pened to\n", - "\n", - "Underfull \\hbox (badness 3482) in paragraph at lines 798--799\n", - "[]\\OT1/phv/m/n/10 a de-vice con-tain-ing pa-per, sand,\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 775--799\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2486) in paragraph at lines 804--805\n", - "[]\\OT1/phv/m/n/10 a small de-vice con-tain-ing pow-der\n", - "\n", - "Underfull \\hbox (badness 2698) in paragraph at lines 812--813\n", - "[]\\OT1/phv/m/n/10 to leave a per-son or place very\n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 818--819\n", - "[]\\OT1/phv/m/n/10 having warm or lov-ing feel-ings for\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 799--825\n", - "[] \n", - "[17]\n", - "Underfull \\hbox (badness 1496) in paragraph at lines 848--849\n", - "[]\\OT1/phv/m/n/10 feeling an-noyed and im-pa-tient be-\n", - "\n", - "Underfull \\hbox (badness 1112) in paragraph at lines 849--850\n", - "\\OT1/phv/m/n/10 pa-tient be-cause you can-not do or\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 825--850\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 4621) in paragraph at lines 860--861\n", - "[]\\OT1/phv/m/n/10 the ac-tiv-ity of play-ing games of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 864--865\n", - "[]\\OT1/phv/m/n/10 a long, steady look at some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 865--866\n", - "[]\\OT1/phv/m/n/10 to look steadily at some-\n", - "\n", - "Underfull \\hbox (badness 6842) in paragraph at lines 865--866\n", - "\\OT1/phv/m/n/10 body/something for a long time,\n", - "\n", - "Underfull \\hbox (badness 1418) in paragraph at lines 867--868\n", - "[]\\OT1/phv/m/n/10 the fact of be-ing male or fe-male,\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 850--871\n", - "[] \n", - "[18]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 878--879\n", - "[]\\OT1/phv/m/n/10 to look quickly at some-\n", - "\n", - "Underfull \\hbox (badness 4013) in paragraph at lines 893--894\n", - "[]\\OT1/phv/m/n/10 to take a strong hold of some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 871--895\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1215) in paragraph at lines 899--900\n", - "[]\\OT1/phv/m/n/10 a pat-tern of straight lines, usu-ally\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 904--905\n", - "[]\\OT1/phv/m/n/10 an act of hold-ing some-\n", - "\n", - "Underfull \\hbox (badness 1019) in paragraph at lines 915--916\n", - "[]\\OT1/phv/m/n/10 at an equal dis-tance be-tween two\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 917--918\n", - "[]\\OT1/phv/m/n/10 to stop; to make some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 895--919\n", - "[] \n", - "[19]\n", - "Underfull \\hbox (badness 1466) in paragraph at lines 924--925\n", - "[]\\OT1/phv/m/n/10 a state of peace-ful ex-is-tence and\n", - "\n", - "Underfull \\hbox (badness 2293) in paragraph at lines 937--938\n", - "[]\\OT1/phv/m/n/10 a plant whose leaves, flow-ers or\n", - "\n", - "Underfull \\hbox (badness 1565) in paragraph at lines 937--938\n", - "\\OT1/phv/m/n/10 pars-ley, mint and oregano are all\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 919--941\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 3039) in paragraph at lines 942--943\n", - "\\OT1/phv/m/n/10 tances, es-pe-cially one con-nect-ing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 941--966\n", - "[] \n", - "[20]\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 966--967\n", - "[]\\OT1/phv/m/n/10 a small sym-bol on a com-puter or\n", - "\n", - "Underfull \\hbox (badness 4940) in paragraph at lines 969--970\n", - "[]\\OT1/phv/m/n/10 the pro-cess of show-ing, prov-ing\n", - "\n", - "Underfull \\hbox (badness 1478) in paragraph at lines 984--985\n", - "[]\\OT1/phv/m/n/10 the act of putting some-body in a\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 991--992\n", - "[]\\OT1/phv/m/n/10 the fact of in-clud-ing some-\n", - "\n", - "Underfull \\hbox (badness 1694) in paragraph at lines 991--992\n", - "\\OT1/phv/m/n/10 body/something; the fact of be-ing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 966--992\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1077) in paragraph at lines 994--995\n", - "[]\\OT1/phv/m/n/10 if you in-cur some-thing un-pleas-ant,\n", - "\n", - "Underfull \\hbox (badness 1389) in paragraph at lines 997--998\n", - "[]\\OT1/phv/m/n/10 a re-mark or sign that shows that\n", - "\n", - "Underfull \\hbox (badness 5359) in paragraph at lines 997--998\n", - "\\OT1/phv/m/n/10 some-thing is hap-pen-ing or what\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 992--1017\n", - "[] \n", - "[21]\n", - "Underfull \\hbox (badness 1062) in paragraph at lines 1023--1024\n", - "[]\\OT1/phv/m/n/10 coloured liq-uid for writ-ing, draw-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1031--1032\n", - "[]\\OT1/phv/m/n/10 to look closely at some-\n", - "\n", - "Underfull \\hbox (badness 1565) in paragraph at lines 1038--1039\n", - "\\OT1/phv/m/n/10 and an-i-mals tend to be-have in a\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1017--1039\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1803) in paragraph at lines 1049--1050\n", - "[]\\OT1/phv/m/n/10 in which many dif-fer-ent parts are\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1039--1064\n", - "[] \n", - "[22]\n", - "Underfull \\hbox (badness 1968) in paragraph at lines 1065--1066\n", - "[]\\OT1/phv/m/n/10 connected with the in-side part of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1085--1086\n", - "[]\\OT1/phv/m/n/10 to sep-a-rate some-body/something\n", - "\n", - "Underfull \\hbox (badness 7168) in paragraph at lines 1085--1086\n", - "\\OT1/phv/m/n/10 phys-i-cally or so-cially from other\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1087--1088\n", - "[]\\OT1/phv/m/n/10 the act of sep-a-rat-ing some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1064--1093\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1742) in paragraph at lines 1093--1094\n", - "[]\\OT1/phv/m/n/10 the work of col-lect-ing and writ-ing\n", - "\n", - "Underfull \\hbox (badness 3323) in paragraph at lines 1098--1099\n", - "[]\\OT1/phv/m/n/10 that most peo-ple con-sider to be\n", - "\n", - "Underfull \\hbox (badness 1533) in paragraph at lines 1112--1113\n", - "\\OT1/phv/m/n/10 light that can be used for cut-ting\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1093--1113\n", - "[] \n", - "[23]\n", - "Underfull \\hbox (badness 1024) in paragraph at lines 1133--1134\n", - "[]\\OT1/phv/m/n/10 sexually at-tracted to other women;\n", - "\n", - "Underfull \\hbox (badness 2744) in paragraph at lines 1137--1138\n", - "[]\\OT1/phv/m/n/10 willing to un-der-stand and re-spect\n", - "\n", - "Underfull \\hbox (badness 1237) in paragraph at lines 1137--1138\n", - "\\OT1/phv/m/n/10 other peo-ple's be-haviour, opin-ions,\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1113--1138\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1138--1165\n", - "[] \n", - "[24]\n", - "Underfull \\hbox (badness 4467) in paragraph at lines 1181--1182\n", - "[]\\OT1/phv/m/n/10 the ideas and opin-ions that are\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1188--1189\n", - "[]\\OT1/phv/m/n/10 to con-trol or in-flu-ence some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1165--1189\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1189--1217\n", - "[] \n", - "[25]\n", - "Underfull \\hbox (badness 5359) in paragraph at lines 1218--1219\n", - "[]\\OT1/phv/m/n/10 connected with the Mid-dle Ages\n", - "\n", - "Underfull \\hbox (badness 3199) in paragraph at lines 1223--1224\n", - "[]\\OT1/phv/m/n/10 an ac-count writ-ten by some-body,\n", - "\n", - "Underfull \\hbox (badness 1009) in paragraph at lines 1224--1225\n", - "[]\\OT1/phv/m/n/10 worth re-mem-ber-ing or easy to re-\n", - "\n", - "Underfull \\hbox (badness 1253) in paragraph at lines 1231--1232\n", - "[]\\OT1/phv/m/n/10 to com-bine or make two or more\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1217--1235\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 1237--1238\n", - "[]\\OT1/phv/m/n/10 the move-ment ev-ery year of large\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1244--1245\n", - "[]\\OT1/phv/m/n/10 to re-duce some-thing, es-pe-cially\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1235--1260\n", - "[] \n", - "[26]\n", - "Underfull \\hbox (badness 5548) in paragraph at lines 1272--1273\n", - "[]\\OT1/phv/m/n/10 the rea-son why some-body does\n", - "\n", - "Underfull \\hbox (badness 1924) in paragraph at lines 1276--1277\n", - "[]\\OT1/phv/m/n/10 connected with or be-long-ing to a\n", - "\n", - "Underfull \\hbox (badness 1028) in paragraph at lines 1277--1278\n", - "[]\\OT1/phv/m/n/10 used to de-scribe feel-ings that two\n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 1280--1281\n", - "[]\\OT1/phv/m/n/10 used to in-tro-duce more ex-act and\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1260--1283\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1286--1287\n", - "[]\\OT1/phv/m/n/10 a short dis-tance from some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1289--1290\n", - "[]\\OT1/phv/m/n/10 to fail to take care of some-\n", - "\n", - "Underfull \\hbox (badness 3158) in paragraph at lines 1291--1292\n", - "[]\\OT1/phv/m/n/10 formal dis-cus-sion be-tween peo-ple\n", - "\n", - "Underfull \\hbox (badness 1824) in paragraph at lines 1299--1300\n", - "\\OT1/phv/m/n/10 i-ties that peo-ple ad-mire, such as\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1301--1302\n", - "[]\\OT1/phv/m/n/10 to for-mally sug-gest that some-\n", - "\n", - "Underfull \\hbox (badness 1286) in paragraph at lines 1302--1303\n", - "[]\\OT1/phv/m/n/10 the act of sug-gest-ing or choos-ing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1283--1310\n", - "[] \n", - "[27]\n", - "Underfull \\hbox (badness 1221) in paragraph at lines 1317--1318\n", - "[]\\OT1/phv/m/n/10 a place where young chil-dren are\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1323--1324\n", - "[]\\OT1/phv/m/n/10 a per-son who watches some-\n", - "\n", - "Underfull \\hbox (badness 1424) in paragraph at lines 1331--1332\n", - "[]\\OT1/phv/m/n/10 the de-gree to which some-thing is\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1310--1338\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2359) in paragraph at lines 1338--1339\n", - "[]\\OT1/phv/m/n/10 connected with the way in which\n", - "\n", - "Underfull \\hbox (badness 1082) in paragraph at lines 1341--1342\n", - "[]\\OT1/phv/m/n/10 connected with the sense of sight\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1338--1365\n", - "[] \n", - "[28]\n", - "Underfull \\hbox (badness 1342) in paragraph at lines 1366--1367\n", - "[]\\OT1/phv/m/n/10 to watch some-body/something and\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1365--1388\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 3758) in paragraph at lines 1407--1408\n", - "[]\\OT1/phv/m/n/10 to un-der-stand or think of some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1388--1411\n", - "[] \n", - "[29]\n", - "Underfull \\hbox (badness 1082) in paragraph at lines 1423--1424\n", - "[]\\OT1/phv/m/n/10 used to show that you are dis-ap-\n", - "\n", - "Underfull \\hbox (badness 1442) in paragraph at lines 1428--1429\n", - "[]\\OT1/phv/m/n/10 to for-mally promise to give or do\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1431--1432\n", - "[]\\OT1/phv/m/n/10 to move or make some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1431--1432\n", - "\\OT1/phv/m/n/10 body/something move sud-denly\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1411--1433\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1584) in paragraph at lines 1433--1434\n", - "[]\\OT1/phv/m/n/10 the pro-cess of ques-tion-ing peo-ple\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1438--1439\n", - "[]\\OT1/phv/m/n/10 to show some-body/something\n", - "\n", - "Underfull \\hbox (badness 4353) in paragraph at lines 1438--1439\n", - "\\OT1/phv/m/n/10 in a pic-ture; to de-scribe some-\n", - "\n", - "Underfull \\hbox (badness 1454) in paragraph at lines 1454--1455\n", - "[]\\OT1/phv/m/n/10 a greater in-ter-est in or de-sire for\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1454--1455\n", - "\\OT1/phv/m/n/10 some-body/something than some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1433--1460\n", - "[] \n", - "[30]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1460--1485\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1048) in paragraph at lines 1485--1486\n", - "\\OT1/phv/m/n/10 se-cret or hid-den in-for-ma-tion about\n", - "\n", - "Underfull \\hbox (badness 1371) in paragraph at lines 1497--1498\n", - "[]\\OT1/phv/m/n/10 the pro-cess of writ-ing and test-ing\n", - "\n", - "Underfull \\hbox (badness 2626) in paragraph at lines 1504--1505\n", - "[]\\OT1/phv/m/n/10 to make some-body de-cide to do\n", - "\n", - "Underfull \\hbox (badness 1117) in paragraph at lines 1504--1505\n", - "\\OT1/phv/m/n/10 some-thing; to cause some-thing to\n", - "\n", - "Underfull \\hbox (badness 4699) in paragraph at lines 1505--1506\n", - "[]\\OT1/phv/m/n/10 very ob-vi-ous, easy to no-tice or\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1485--1507\n", - "[] \n", - "[31]\n", - "Underfull \\hbox (badness 1221) in paragraph at lines 1515--1516\n", - "\\OT1/phv/m/n/10 things, that forms the struc-ture of\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1507--1527\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2042) in paragraph at lines 1535--1536\n", - "\\OT1/phv/m/n/10 in-for-ma-tion or ex-press-ing a doubt\n", - "\n", - "Underfull \\hbox (badness 1521) in paragraph at lines 1542--1543\n", - "[]\\OT1/phv/m/n/10 a per-son who be-lieves that some\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1527--1546\n", - "[] \n", - "[32]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1546--1568\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1622) in paragraph at lines 1578--1579\n", - "[]\\OT1/phv/m/n/10 sound or pic-tures that have been\n", - "\n", - "Underfull \\hbox (badness 2293) in paragraph at lines 1588--1589\n", - "[]\\OT1/phv/m/n/10 shelter or pro-tec-tion from dan-ger,\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1568--1590\n", - "[] \n", - "[33]\n", - "Underfull \\hbox (badness 2073) in paragraph at lines 1593--1594\n", - "\\OT1/phv/m/n/10 es-pe-cially one that has not been\n", - "\n", - "Underfull \\hbox (badness 1221) in paragraph at lines 1595--1596\n", - "[]\\OT1/phv/m/n/10 to con-trol some-thing by means of\n", - "\n", - "Underfull \\hbox (badness 2261) in paragraph at lines 1601--1602\n", - "[]\\OT1/phv/m/n/10 to make a feel-ing, an idea, etc.\n", - "\n", - "Underfull \\hbox (badness 1609) in paragraph at lines 1613--1614\n", - "\\OT1/phv/m/n/10 or re-mem-ber some-body/something,\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1590--1614\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2393) in paragraph at lines 1616--1617\n", - "[]\\OT1/phv/m/n/10 to be-gin some-thing again af-ter it\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1622--1623\n", - "[]\\OT1/phv/m/n/10 the act of pre-sent-ing some-\n", - "\n", - "Underfull \\hbox (badness 1137) in paragraph at lines 1629--1630\n", - "[]\\OT1/phv/m/n/10 suitable for liv-ing in; con-sist-ing of\n", - "\n", - "Underfull \\hbox (badness 1314) in paragraph at lines 1635--1636\n", - "[]\\OT1/phv/m/n/10 belonging or re-lat-ing sep-a-rately to\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1614--1640\n", - "[] \n", - "[34]\n", - "Underfull \\hbox (badness 7344) in paragraph at lines 1656--1657\n", - "[]\\OT1/phv/m/n/10 to be-come, or to make some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1640--1665\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2980) in paragraph at lines 1670--1671\n", - "\\OT1/phv/m/n/10 some-body/something move in this\n", - "\n", - "Underfull \\hbox (badness 1199) in paragraph at lines 1678--1679\n", - "[]\\OT1/phv/m/n/10 the state or pro-cess of be-ing de-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1665--1687\n", - "[] \n", - "[35]\n", - "Underfull \\hbox (badness 1014) in paragraph at lines 1691--1692\n", - "[]\\OT1/phv/m/n/10 behaviour or an event that peo-ple\n", - "\n", - "Underfull \\hbox (badness 1226) in paragraph at lines 1699--1700\n", - "[]\\OT1/phv/m/n/10 the op-por-tu-nity or abil-ity to do or\n", - "\n", - "Underfull \\hbox (badness 1248) in paragraph at lines 1700--1701\n", - "[]\\OT1/phv/m/n/10 a mark, a cut or an in-jury made\n", - "\n", - "Underfull \\hbox (badness 1533) in paragraph at lines 1704--1705\n", - "[]\\OT1/phv/m/n/10 to fas-ten one thing to an-other or\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1687--1707\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1448) in paragraph at lines 1714--1715\n", - "[]\\OT1/phv/m/n/10 affecting or in-volv-ing only a small\n", - "\n", - "Underfull \\hbox (badness 1533) in paragraph at lines 1715--1716\n", - "[]\\OT1/phv/m/n/10 a class at a uni-ver-sity or col-lege\n", - "\n", - "Underfull \\hbox (badness 3068) in paragraph at lines 1723--1724\n", - "\\OT1/phv/m/n/10 ar-gu-ment be-tween two peo-ple or\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1707--1736\n", - "[] \n", - "[36]\n", - "Underfull \\hbox (badness 2894) in paragraph at lines 1738--1739\n", - "\\OT1/phv/m/n/10 of the peo-ple or things that are\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1736--1761\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1769--1770\n", - "[]\\OT1/phv/m/n/10 only; not in-volv-ing some-\n", - "\n", - "Underfull \\hbox (badness 3291) in paragraph at lines 1771--1772\n", - "[]\\OT1/phv/m/n/10 support by one per-son or group\n", - "\n", - "Underfull \\hbox (badness 2134) in paragraph at lines 1783--1784\n", - "[]\\OT1/phv/m/n/10 to make some-thing such as time\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1761--1786\n", - "[] \n", - "[37]\n", - "Underfull \\hbox (badness 1184) in paragraph at lines 1789--1790\n", - "[]\\OT1/phv/m/n/10 a small amount of some-thing that\n", - "\n", - "Underfull \\hbox (badness 1024) in paragraph at lines 1810--1811\n", - "\\OT1/phv/m/n/10 place or per-son, es-pe-cially a per-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1786--1811\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1635) in paragraph at lines 1829--1830\n", - "\\OT1/phv/m/n/10 above the ground from which the\n", - "\n", - "Underfull \\hbox (badness 1057) in paragraph at lines 1829--1830\n", - "\\OT1/phv/m/n/10 that grows from this and sup-ports\n", - "\n", - "Underfull \\hbox (badness 3199) in paragraph at lines 1832--1833\n", - "\\OT1/phv/m/n/10 come more ac-tive; to en-cour-age\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1833--1834\n", - "[]\\OT1/phv/m/n/10 something that helps some-\n", - "\n", - "Underfull \\hbox (badness 5475) in paragraph at lines 1833--1834\n", - "\\OT1/phv/m/n/10 body/something to de-velop bet-ter\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1811--1834\n", - "[] \n", - "[38]\n", - "Underfull \\hbox (badness 1052) in paragraph at lines 1837--1838\n", - "\\OT1/phv/m/n/10 be-cause great de-mands are be-ing\n", - "\n", - "Underfull \\hbox (badness 2359) in paragraph at lines 1847--1848\n", - "[]\\OT1/phv/m/n/10 connected with the way in which\n", - "\n", - "Underfull \\hbox (badness 1281) in paragraph at lines 1848--1849\n", - "[]\\OT1/phv/m/n/10 to hit your foot against some-thing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1834--1857\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1860--1861\n", - "[]\\OT1/phv/m/n/10 to take the place of some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1860--1861\n", - "\\OT1/phv/m/n/10 body/something else; to use\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1860--1861\n", - "\\OT1/phv/m/n/10 some-body/something in-stead of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1878--1879\n", - "[]\\OT1/phv/m/n/10 better in qual-ity than some-\n", - "\n", - "Underfull \\hbox (badness 1762) in paragraph at lines 1878--1879\n", - "\\OT1/phv/m/n/10 body/something else; greater than\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1879--1880\n", - "[]\\OT1/phv/m/n/10 to be in charge of some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1879--1880\n", - "\\OT1/phv/m/n/10 body/something and make sure\n", - "\n", - "Underfull \\hbox (badness 4441) in paragraph at lines 1879--1880\n", - "\\OT1/phv/m/n/10 that ev-ery-thing is done cor-rectly,\n", - "\n", - "Underfull \\hbox (badness 5175) in paragraph at lines 1881--1882\n", - "[]\\OT1/phv/m/n/10 a per-son who su-per-vises some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1884--1885\n", - "[]\\OT1/phv/m/n/10 encouraging some-body or giv-ing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1857--1885\n", - "[] \n", - "[39]\n", - "Underfull \\hbox (badness 5189) in paragraph at lines 1900--1901\n", - "[]\\OT1/phv/m/n/10 feeling that some-body has done\n", - "\n", - "Underfull \\hbox (badness 1558) in paragraph at lines 1901--1902\n", - "[]\\OT1/phv/m/n/10 to pro-vide enough of what some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1885--1909\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2173) in paragraph at lines 1914--1915\n", - "[]\\OT1/phv/m/n/10 the par-tic-u-lar method you use to\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1917--1918\n", - "[]\\OT1/phv/m/n/10 to fas-ten a tag onto some-\n", - "\n", - "Underfull \\hbox (badness 2027) in paragraph at lines 1919--1920\n", - "[]\\OT1/phv/m/n/10 to hit some-body/something quickly\n", - "\n", - "Underfull \\hbox (badness 2088) in paragraph at lines 1923--1924\n", - "[]\\OT1/phv/m/n/10 a build-ing used for re-li-gious wor-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1909--1931\n", - "[] \n", - "[40]\n", - "Underfull \\hbox (badness 1831) in paragraph at lines 1938--1939\n", - "[]\\OT1/phv/m/n/10 to make some-body feel ex-tremely\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1945--1946\n", - "[]\\OT1/phv/m/n/10 the ac-tiv-ity of test-ing some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1945--1946\n", - "\\OT1/phv/m/n/10 body/something in or-der to find\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1931--1957\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1957--1982\n", - "[] \n", - "[41]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1986--1987\n", - "[]\\OT1/phv/m/n/10 to find or dis-cover some-\n", - "\n", - "Underfull \\hbox (badness 2809) in paragraph at lines 1988--1989\n", - "[]\\OT1/phv/m/n/10 the ac-tiv-ity of buy-ing and sell-ing\n", - "\n", - "Underfull \\hbox (badness 6910) in paragraph at lines 1992--1993\n", - "[]\\OT1/phv/m/n/10 to pull some-thing be-hind some-\n", - "\n", - "Underfull \\hbox (badness 2158) in paragraph at lines 1992--1993\n", - "\\OT1/phv/m/n/10 body/something, usu-ally along the\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1997--1998\n", - "[]\\OT1/phv/m/n/10 a com-plete change in some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1982--2007\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2007--2035\n", - "[] \n", - "[42]\n", - "Underfull \\hbox (badness 5592) in paragraph at lines 2036--2037\n", - "[]\\OT1/phv/m/n/10 to make your-self re-spon-si-ble for\n", - "\n", - "Underfull \\hbox (badness 1014) in paragraph at lines 2052--2053\n", - "[]\\OT1/phv/m/n/10 not use-ful; not do-ing or achiev-ing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2035--2061\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 2089--2090\n", - "[]\\OT1/phv/m/n/10 the ac-tion of choos-ing some-\n", - "\n", - "Underfull \\hbox (badness 3758) in paragraph at lines 2089--2090\n", - "\\OT1/phv/m/n/10 body/something in an elec-tion or\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2061--2091\n", - "[] \n", - "[43]\n", - "Underfull \\hbox (badness 1565) in paragraph at lines 2101--2102\n", - "[]\\OT1/phv/m/n/10 to make some-body/something less\n", - "\n", - "Underfull \\hbox (badness 1092) in paragraph at lines 2106--2107\n", - "[]\\OT1/phv/m/n/10 the gen-eral health, hap-pi-ness and\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2091--2115\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1005) in paragraph at lines 2132--2133\n", - "\\OT1/phv/m/n/10 God or a god, by say-ing prayers,\n", - "\n", - "Underfull \\hbox (badness 4132) in paragraph at lines 2135--2136\n", - "[]\\OT1/phv/m/n/10 having the qual-i-ties that de-serve\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2115--2139\n", - "[] \n", - "[44])\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2139--26\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 2139--26\n", - "\n", - "\n", - "(/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_alphabeti\n", - "cal.aux) )\n", - "(see the transcript file for additional information){/usr/share/texlive/texmf-d\n", - "ist/fonts/enc/dvips/base/8r.enc}\n", - "Output written on /home/jelle/wd/words/english/output/oxford_5000_exclusive_two\n", - "_column_alphabetical.pdf (44 pages, 182254 bytes).\n", - "Transcript written on /home/jelle/wd/words/english/output/oxford_5000_exclusive\n", - "_two_column_alphabetical.log.\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Latexmk: Log file says output to '/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_alphabetical.pdf'\n", - "Rule 'pdflatex': File changes, etc:\n", - " Changed files, or newly in use since previous run(s):\n", - " '/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_alphabetical.aux'\n", - "------------\n", - "Run number 2 of rule 'pdflatex'\n", - "------------\n", - "------------\n", - "Running 'pdflatex -recorder -output-directory=\"/home/jelle/wd/words/english/output\" \"oxford_5000_exclusive_two_column_alphabetical.tex\"'\n", - "------------\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Latexmk: Examining '/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_alphabetical.log'\n", - "=== TeX engine is 'pdfTeX'\n", - "Latexmk: applying rule 'pdflatex'...\n", - "This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2022/dev/Debian) (preloaded format=pdflatex)\n", - " restricted \\write18 enabled.\n", - "entering extended mode\n", - "(./oxford_5000_exclusive_two_column_alphabetical.tex\n", - "LaTeX2e <2021-11-15> patch level 1\n", - "L3 programming layer <2022-01-21>\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls\n", - "Document Class: article 2021/10/04 v1.4n Standard LaTeX document class\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty\n", - "(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty)))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/blindtext/blindtext.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/tools/xspace.sty))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/utf8x.def))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucs.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-global.def))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/supertabular/supertabular.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/psnfss/helvet.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1phv.fd)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def)\n", - "(/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_alphabeti\n", - "cal.aux)\n", - "*geometry* driver: auto-detecting\n", - "*geometry* detected driver: pdftex\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucsencs.def)\n", - "(/home/jelle/wd/words/english/output/../build/oxford_5000_exclusive_table_alpha\n", - "betical.tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1596) in paragraph at lines 7--8\n", - "\\OT1/phv/m/n/10 stance from the sur-face or space\n", - "\n", - "Underfull \\hbox (badness 4467) in paragraph at lines 22--23\n", - "[]\\OT1/phv/m/n/10 according to a rule or the way\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--24\n", - "[] \n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-32.def)\n", - "Underfull \\hbox (badness 1184) in paragraph at lines 41--42\n", - "[]\\OT1/phv/m/n/10 the ac-tion or pro-cess of chang-ing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 24--42\n", - "[] \n", - "[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 42--67\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 67--91\n", - "[] \n", - "[2]\n", - "Underfull \\hbox (badness 2856) in paragraph at lines 92--93\n", - "[]\\OT1/phv/m/n/10 a ve-hi-cle with spe-cial equip-ment,\n", - "\n", - "Underfull \\hbox (badness 3623) in paragraph at lines 111--112\n", - "[]\\OT1/phv/m/n/10 to show your ap-proval of some-\n", - "\n", - "Underfull \\hbox (badness 6910) in paragraph at lines 111--112\n", - "\\OT1/phv/m/n/10 body/something by clap-ping your\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 91--114\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 122--123\n", - "[]\\OT1/phv/m/n/10 to pro-vide weapons for your-\n", - "\n", - "Underfull \\hbox (badness 2393) in paragraph at lines 122--123\n", - "\\OT1/phv/m/n/10 self/somebody in or-der to fight a\n", - "\n", - "Underfull \\hbox (badness 1014) in paragraph at lines 126--127\n", - "[]\\OT1/phv/m/n/10 pictures and pho-tographs pre-pared\n", - "\n", - "Underfull \\hbox (badness 3792) in paragraph at lines 132--133\n", - "[]\\OT1/phv/m/n/10 the crime of at-tack-ing some-body\n", - "\n", - "Underfull \\hbox (badness 1490) in paragraph at lines 136--137\n", - "[]\\OT1/phv/m/n/10 to state clearly and def-i-nitely that\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 114--138\n", - "[] \n", - "[3]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 151--152\n", - "[]\\OT1/phv/m/n/10 a qual-ity or fea-ture of some-\n", - "\n", - "Underfull \\hbox (badness 1024) in paragraph at lines 155--156\n", - "[]\\OT1/phv/m/n/10 an of-fi-cial ex-am-i-na-tion of busi-ness\n", - "\n", - "Underfull \\hbox (badness 3302) in paragraph at lines 159--160\n", - "[]\\OT1/phv/m/n/10 having con-trols that work with-out\n", - "\n", - "Underfull \\hbox (badness 3623) in paragraph at lines 164--165\n", - "[]\\OT1/phv/m/n/10 knowing some-thing; know-ing that\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 138--165\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1342) in paragraph at lines 174--175\n", - "\\OT1/phv/m/n/10 usu-ally in se-cret; an oc-ca-sion on\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 165--184\n", - "[] \n", - "[4]\n", - "Underfull \\hbox (badness 7168) in paragraph at lines 193--194\n", - "[]\\OT1/phv/m/n/10 in or to a lower po-si-tion than\n", - "\n", - "Underfull \\hbox (badness 1194) in paragraph at lines 193--194\n", - "\\OT1/phv/m/n/10 some-body/something; un-der some-\n", - "\n", - "Underfull \\hbox (badness 2556) in paragraph at lines 196--197\n", - "[]\\OT1/phv/m/n/10 next to or at the side of some-\n", - "\n", - "Underfull \\hbox (badness 6316) in paragraph at lines 199--200\n", - "[]\\OT1/phv/m/n/10 to give in-for-ma-tion about some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 184--211\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 215--216\n", - "[]\\OT1/phv/m/n/10 to ask God to pro-tect some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 211--234\n", - "[] \n", - "[5]\n", - "Underfull \\hbox (badness 1406) in paragraph at lines 240--241\n", - "[]\\OT1/phv/m/n/10 a per-son whose job is pre-sent-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 246--247\n", - "\\OT1/phv/m/n/10 or pro-tects some-body/something\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 234--257\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 257--284\n", - "[] \n", - "[6]\n", - "Underfull \\hbox (badness 1509) in paragraph at lines 286--287\n", - "[]\\OT1/phv/m/n/10 a writ-ten state-ment de-scrib-ing the\n", - "\n", - "Underfull \\hbox (badness 3657) in paragraph at lines 287--288\n", - "[]\\OT1/phv/m/n/10 an act of run-ning or driv-ing af-\n", - "\n", - "Underfull \\hbox (badness 2799) in paragraph at lines 288--289\n", - "[]\\OT1/phv/m/n/10 to run, drive, etc. af-ter some-\n", - "\n", - "Underfull \\hbox (badness 3229) in paragraph at lines 288--289\n", - "\\OT1/phv/m/n/10 body/something in or-der to catch\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 311--312\n", - "[]\\OT1/phv/m/n/10 to hold on tightly to some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 284--312\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 312--313\n", - "\\OT1/phv/m/n/10 peo-ple can go for spe-cial med-i-cal\n", - "\n", - "Underfull \\hbox (badness 1924) in paragraph at lines 328--329\n", - "[]\\OT1/phv/m/n/10 connected with or be-long-ing to a\n", - "\n", - "Underfull \\hbox (badness 4673) in paragraph at lines 333--334\n", - "[]\\OT1/phv/m/n/10 to stop some-thing un-pleas-ant or\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 312--337\n", - "[] \n", - "[7]\n", - "Underfull \\hbox (badness 1371) in paragraph at lines 339--340\n", - "[]\\OT1/phv/m/n/10 a per-son who de-scribes an event\n", - "\n", - "Underfull \\hbox (badness 2418) in paragraph at lines 351--352\n", - "[]\\OT1/phv/m/n/10 something, es-pe-cially money, that\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 337--360\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 366--367\n", - "[]\\OT1/phv/m/n/10 to have some-body/something as\n", - "\n", - "Underfull \\hbox (badness 2027) in paragraph at lines 367--368\n", - "[]\\OT1/phv/m/n/10 an agree-ment made be-tween two\n", - "\n", - "Underfull \\hbox (badness 5274) in paragraph at lines 374--375\n", - "[]\\OT1/phv/m/n/10 an un-der-stand-ing or a be-lief of\n", - "\n", - "Underfull \\hbox (badness 2150) in paragraph at lines 377--378\n", - "[]\\OT1/phv/m/n/10 building ma-te-rial that is made by\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 360--383\n", - "[] \n", - "[8]\n", - "Underfull \\hbox (badness 2088) in paragraph at lines 392--393\n", - "\\OT1/phv/m/n/10 whether your ac-tions are right or\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 383--410\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1092) in paragraph at lines 427--428\n", - "\\OT1/phv/m/n/10 talks on a ra-dio or tele-vi-sion pro-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 410--434\n", - "[] \n", - "[9]\n", - "Underfull \\hbox (badness 1205) in paragraph at lines 437--438\n", - "[]\\OT1/phv/m/n/10 that makes some-body be-lieve that\n", - "\n", - "Underfull \\hbox (badness 1062) in paragraph at lines 449--450\n", - "\\OT1/phv/m/n/10 re-lates with an-other, the facts are\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 434--456\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1337) in paragraph at lines 458--459\n", - "[]\\OT1/phv/m/n/10 costing a lot of money, es-pe-cially\n", - "\n", - "Underfull \\hbox (badness 1019) in paragraph at lines 463--464\n", - "[]\\OT1/phv/m/n/10 to re-ply to some-body by try-ing to\n", - "\n", - "Underfull \\hbox (badness 4765) in paragraph at lines 464--465\n", - "[]\\OT1/phv/m/n/10 a per-son or thing that has the\n", - "\n", - "Underfull \\hbox (badness 1675) in paragraph at lines 464--465\n", - "\\OT1/phv/m/n/10 body/something else in a dif-fer-ent\n", - "\n", - "Underfull \\hbox (badness 3323) in paragraph at lines 472--473\n", - "[]\\OT1/phv/m/n/10 to make some-thing us-ing spe-cial\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 456--482\n", - "[] \n", - "[10]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 482--510\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1087) in paragraph at lines 518--519\n", - "[]\\OT1/phv/m/n/10 to have a par-tic-u-lar opin-ion about\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 522--523\n", - "[]\\OT1/phv/m/n/10 protecting some-body/something\n", - "\n", - "Underfull \\hbox (badness 3039) in paragraph at lines 533--534\n", - "[]\\OT1/phv/m/n/10 a pub-lic meet-ing or a march (=\n", - "\n", - "Underfull \\hbox (badness 2103) in paragraph at lines 533--534\n", - "\\OT1/phv/m/n/10 an or-ga-nized walk by many peo-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 510--534\n", - "[] \n", - "[11]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 535--536\n", - "[]\\OT1/phv/m/n/10 to strongly crit-i-cize some-\n", - "\n", - "Underfull \\hbox (badness 4467) in paragraph at lines 535--536\n", - "\\OT1/phv/m/n/10 body/something that you think is\n", - "\n", - "Underfull \\hbox (badness 1264) in paragraph at lines 536--537\n", - "[]\\OT1/phv/m/n/10 containing a lot of peo-ple, things,\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 541--542\n", - "[]\\OT1/phv/m/n/10 to show an im-age of some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 552--553\n", - "[]\\OT1/phv/m/n/10 to say of-fi-cially that some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 552--553\n", - "\\OT1/phv/m/n/10 body/something has a par-tic-u-lar\n", - "\n", - "Underfull \\hbox (badness 6842) in paragraph at lines 552--553\n", - "\\OT1/phv/m/n/10 char-ac-ter or name; to de-scribe\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 534--556\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 571--572\n", - "[]\\OT1/phv/m/n/10 to be dif-fer-ent from some-\n", - "\n", - "Underfull \\hbox (badness 3138) in paragraph at lines 576--577\n", - "[]\\OT1/phv/m/n/10 to be-come smaller, weaker, etc.;\n", - "\n", - "Underfull \\hbox (badness 1490) in paragraph at lines 579--580\n", - "[]\\OT1/phv/m/n/10 connected with man-ag-ing re-la-tions\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 556--581\n", - "[] \n", - "[12]\n", - "Underfull \\hbox (badness 1997) in paragraph at lines 585--586\n", - "[]\\OT1/phv/m/n/10 the feel-ing of be-ing sad be-cause\n", - "\n", - "Underfull \\hbox (badness 1845) in paragraph at lines 588--589\n", - "\\OT1/phv/m/n/10 to leave the po-lice or the armed\n", - "\n", - "Underfull \\hbox (badness 1635) in paragraph at lines 591--592\n", - "[]\\OT1/phv/m/n/10 to try to pre-vent some-thing or to\n", - "\n", - "Underfull \\hbox (badness 1789) in paragraph at lines 596--597\n", - "[]\\OT1/phv/m/n/10 a con-di-tion or ill-ness that causes\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 597--598\n", - "[]\\OT1/phv/m/n/10 to take the place of some-\n", - "\n", - "Underfull \\hbox (badness 1377) in paragraph at lines 600--601\n", - "[]\\OT1/phv/m/n/10 an ar-gu-ment be-tween two peo-ple,\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 581--601\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1521) in paragraph at lines 610--611\n", - "[]\\OT1/phv/m/n/10 to change the shape, ap-pear-ance\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 620--621\n", - "[]\\OT1/phv/m/n/10 to make some-body/something\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 601--628\n", - "[] \n", - "[13]\n", - "Underfull \\hbox (badness 2735) in paragraph at lines 630--631\n", - "[]\\OT1/phv/m/n/10 a per-son or an or-ga-ni-za-tion that\n", - "\n", - "Underfull \\hbox (badness 1043) in paragraph at lines 641--642\n", - "\\OT1/phv/m/n/10 der-wa-ter too long and you can-not\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 628--652\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 652--676\n", - "[] \n", - "[14]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 691--692\n", - "[]\\OT1/phv/m/n/10 that gives some-body sup-port,\n", - "\n", - "Underfull \\hbox (badness 1400) in paragraph at lines 693--694\n", - "[]\\OT1/phv/m/n/10 very large in size or amount and\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 695--696\n", - "[]\\OT1/phv/m/n/10 a pub-lic state-ment or ac-tion\n", - "\n", - "Underfull \\hbox (badness 4981) in paragraph at lines 695--696\n", - "\\OT1/phv/m/n/10 show-ing that you sup-port some-\n", - "\n", - "Underfull \\hbox (badness 1286) in paragraph at lines 696--697\n", - "\\OT1/phv/m/n/10 thing that is painful or un-pleas-ant\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 676--704\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1635) in paragraph at lines 711--712\n", - "\\OT1/phv/m/n/10 when this in-volves tak-ing fi-nan-cial\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 715--716\n", - "[]\\OT1/phv/m/n/10 a state-ment show-ing that two\n", - "\n", - "Underfull \\hbox (badness 1924) in paragraph at lines 715--716\n", - "\\OT1/phv/m/n/10 amounts or val-ues are equal, for\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 716--717\n", - "[]\\OT1/phv/m/n/10 to pro-vide your-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 716--717\n", - "\\OT1/phv/m/n/10 self/somebody/something with the\n", - "\n", - "Underfull \\hbox (badness 1092) in paragraph at lines 721--722\n", - "[]\\OT1/phv/m/n/10 when a vol-cano erupts or burn-ing\n", - "\n", - "Underfull \\hbox (badness 1552) in paragraph at lines 721--722\n", - "\\OT1/phv/m/n/10 rocks, smoke, etc. erupt or are\n", - "\n", - "Underfull \\hbox (badness 2443) in paragraph at lines 724--725\n", - "\\OT1/phv/m/n/10 por-tant or ba-sic na-ture of some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 704--726\n", - "[] \n", - "[15]\n", - "Underfull \\hbox (badness 1924) in paragraph at lines 728--729\n", - "[]\\OT1/phv/m/n/10 connected with or be-long-ing to a\n", - "\n", - "Underfull \\hbox (badness 6608) in paragraph at lines 733--734\n", - "[]\\OT1/phv/m/n/10 the slow steady de-vel-op-ment of\n", - "\n", - "Underfull \\hbox (badness 1067) in paragraph at lines 734--735\n", - "\\OT1/phv/m/n/10 with slow steady de-vel-op-ment and\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 745--746\n", - "[]\\OT1/phv/m/n/10 the act of pre-vent-ing some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 745--746\n", - "\\OT1/phv/m/n/10 body/something from en-ter-ing a\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 726--752\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 752--775\n", - "[] \n", - "[16]\n", - "Underfull \\hbox (badness 1895) in paragraph at lines 788--789\n", - "\\OT1/phv/m/n/10 will hap-pen or have hap-pened to\n", - "\n", - "Underfull \\hbox (badness 3482) in paragraph at lines 798--799\n", - "[]\\OT1/phv/m/n/10 a de-vice con-tain-ing pa-per, sand,\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 775--799\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2486) in paragraph at lines 804--805\n", - "[]\\OT1/phv/m/n/10 a small de-vice con-tain-ing pow-der\n", - "\n", - "Underfull \\hbox (badness 2698) in paragraph at lines 812--813\n", - "[]\\OT1/phv/m/n/10 to leave a per-son or place very\n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 818--819\n", - "[]\\OT1/phv/m/n/10 having warm or lov-ing feel-ings for\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 799--825\n", - "[] \n", - "[17]\n", - "Underfull \\hbox (badness 1496) in paragraph at lines 848--849\n", - "[]\\OT1/phv/m/n/10 feeling an-noyed and im-pa-tient be-\n", - "\n", - "Underfull \\hbox (badness 1112) in paragraph at lines 849--850\n", - "\\OT1/phv/m/n/10 pa-tient be-cause you can-not do or\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 825--850\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 4621) in paragraph at lines 860--861\n", - "[]\\OT1/phv/m/n/10 the ac-tiv-ity of play-ing games of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 864--865\n", - "[]\\OT1/phv/m/n/10 a long, steady look at some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 865--866\n", - "[]\\OT1/phv/m/n/10 to look steadily at some-\n", - "\n", - "Underfull \\hbox (badness 6842) in paragraph at lines 865--866\n", - "\\OT1/phv/m/n/10 body/something for a long time,\n", - "\n", - "Underfull \\hbox (badness 1418) in paragraph at lines 867--868\n", - "[]\\OT1/phv/m/n/10 the fact of be-ing male or fe-male,\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 850--871\n", - "[] \n", - "[18]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 878--879\n", - "[]\\OT1/phv/m/n/10 to look quickly at some-\n", - "\n", - "Underfull \\hbox (badness 4013) in paragraph at lines 893--894\n", - "[]\\OT1/phv/m/n/10 to take a strong hold of some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 871--895\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1215) in paragraph at lines 899--900\n", - "[]\\OT1/phv/m/n/10 a pat-tern of straight lines, usu-ally\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 904--905\n", - "[]\\OT1/phv/m/n/10 an act of hold-ing some-\n", - "\n", - "Underfull \\hbox (badness 1019) in paragraph at lines 915--916\n", - "[]\\OT1/phv/m/n/10 at an equal dis-tance be-tween two\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 917--918\n", - "[]\\OT1/phv/m/n/10 to stop; to make some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 895--919\n", - "[] \n", - "[19]\n", - "Underfull \\hbox (badness 1466) in paragraph at lines 924--925\n", - "[]\\OT1/phv/m/n/10 a state of peace-ful ex-is-tence and\n", - "\n", - "Underfull \\hbox (badness 2293) in paragraph at lines 937--938\n", - "[]\\OT1/phv/m/n/10 a plant whose leaves, flow-ers or\n", - "\n", - "Underfull \\hbox (badness 1565) in paragraph at lines 937--938\n", - "\\OT1/phv/m/n/10 pars-ley, mint and oregano are all\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 919--941\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 3039) in paragraph at lines 942--943\n", - "\\OT1/phv/m/n/10 tances, es-pe-cially one con-nect-ing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 941--966\n", - "[] \n", - "[20]\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 966--967\n", - "[]\\OT1/phv/m/n/10 a small sym-bol on a com-puter or\n", - "\n", - "Underfull \\hbox (badness 4940) in paragraph at lines 969--970\n", - "[]\\OT1/phv/m/n/10 the pro-cess of show-ing, prov-ing\n", - "\n", - "Underfull \\hbox (badness 1478) in paragraph at lines 984--985\n", - "[]\\OT1/phv/m/n/10 the act of putting some-body in a\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 991--992\n", - "[]\\OT1/phv/m/n/10 the fact of in-clud-ing some-\n", - "\n", - "Underfull \\hbox (badness 1694) in paragraph at lines 991--992\n", - "\\OT1/phv/m/n/10 body/something; the fact of be-ing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 966--992\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1077) in paragraph at lines 994--995\n", - "[]\\OT1/phv/m/n/10 if you in-cur some-thing un-pleas-ant,\n", - "\n", - "Underfull \\hbox (badness 1389) in paragraph at lines 997--998\n", - "[]\\OT1/phv/m/n/10 a re-mark or sign that shows that\n", - "\n", - "Underfull \\hbox (badness 5359) in paragraph at lines 997--998\n", - "\\OT1/phv/m/n/10 some-thing is hap-pen-ing or what\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 992--1017\n", - "[] \n", - "[21]\n", - "Underfull \\hbox (badness 1062) in paragraph at lines 1023--1024\n", - "[]\\OT1/phv/m/n/10 coloured liq-uid for writ-ing, draw-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1031--1032\n", - "[]\\OT1/phv/m/n/10 to look closely at some-\n", - "\n", - "Underfull \\hbox (badness 1565) in paragraph at lines 1038--1039\n", - "\\OT1/phv/m/n/10 and an-i-mals tend to be-have in a\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1017--1039\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1803) in paragraph at lines 1049--1050\n", - "[]\\OT1/phv/m/n/10 in which many dif-fer-ent parts are\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1039--1064\n", - "[] \n", - "[22]\n", - "Underfull \\hbox (badness 1968) in paragraph at lines 1065--1066\n", - "[]\\OT1/phv/m/n/10 connected with the in-side part of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1085--1086\n", - "[]\\OT1/phv/m/n/10 to sep-a-rate some-body/something\n", - "\n", - "Underfull \\hbox (badness 7168) in paragraph at lines 1085--1086\n", - "\\OT1/phv/m/n/10 phys-i-cally or so-cially from other\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1087--1088\n", - "[]\\OT1/phv/m/n/10 the act of sep-a-rat-ing some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1064--1093\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1742) in paragraph at lines 1093--1094\n", - "[]\\OT1/phv/m/n/10 the work of col-lect-ing and writ-ing\n", - "\n", - "Underfull \\hbox (badness 3323) in paragraph at lines 1098--1099\n", - "[]\\OT1/phv/m/n/10 that most peo-ple con-sider to be\n", - "\n", - "Underfull \\hbox (badness 1533) in paragraph at lines 1112--1113\n", - "\\OT1/phv/m/n/10 light that can be used for cut-ting\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1093--1113\n", - "[] \n", - "[23]\n", - "Underfull \\hbox (badness 1024) in paragraph at lines 1133--1134\n", - "[]\\OT1/phv/m/n/10 sexually at-tracted to other women;\n", - "\n", - "Underfull \\hbox (badness 2744) in paragraph at lines 1137--1138\n", - "[]\\OT1/phv/m/n/10 willing to un-der-stand and re-spect\n", - "\n", - "Underfull \\hbox (badness 1237) in paragraph at lines 1137--1138\n", - "\\OT1/phv/m/n/10 other peo-ple's be-haviour, opin-ions,\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1113--1138\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1138--1165\n", - "[] \n", - "[24]\n", - "Underfull \\hbox (badness 4467) in paragraph at lines 1181--1182\n", - "[]\\OT1/phv/m/n/10 the ideas and opin-ions that are\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1188--1189\n", - "[]\\OT1/phv/m/n/10 to con-trol or in-flu-ence some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1165--1189\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1189--1217\n", - "[] \n", - "[25]\n", - "Underfull \\hbox (badness 5359) in paragraph at lines 1218--1219\n", - "[]\\OT1/phv/m/n/10 connected with the Mid-dle Ages\n", - "\n", - "Underfull \\hbox (badness 3199) in paragraph at lines 1223--1224\n", - "[]\\OT1/phv/m/n/10 an ac-count writ-ten by some-body,\n", - "\n", - "Underfull \\hbox (badness 1009) in paragraph at lines 1224--1225\n", - "[]\\OT1/phv/m/n/10 worth re-mem-ber-ing or easy to re-\n", - "\n", - "Underfull \\hbox (badness 1253) in paragraph at lines 1231--1232\n", - "[]\\OT1/phv/m/n/10 to com-bine or make two or more\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1217--1235\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 1237--1238\n", - "[]\\OT1/phv/m/n/10 the move-ment ev-ery year of large\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1244--1245\n", - "[]\\OT1/phv/m/n/10 to re-duce some-thing, es-pe-cially\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1235--1260\n", - "[] \n", - "[26]\n", - "Underfull \\hbox (badness 5548) in paragraph at lines 1272--1273\n", - "[]\\OT1/phv/m/n/10 the rea-son why some-body does\n", - "\n", - "Underfull \\hbox (badness 1924) in paragraph at lines 1276--1277\n", - "[]\\OT1/phv/m/n/10 connected with or be-long-ing to a\n", - "\n", - "Underfull \\hbox (badness 1028) in paragraph at lines 1277--1278\n", - "[]\\OT1/phv/m/n/10 used to de-scribe feel-ings that two\n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 1280--1281\n", - "[]\\OT1/phv/m/n/10 used to in-tro-duce more ex-act and\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1260--1283\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1286--1287\n", - "[]\\OT1/phv/m/n/10 a short dis-tance from some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1289--1290\n", - "[]\\OT1/phv/m/n/10 to fail to take care of some-\n", - "\n", - "Underfull \\hbox (badness 3158) in paragraph at lines 1291--1292\n", - "[]\\OT1/phv/m/n/10 formal dis-cus-sion be-tween peo-ple\n", - "\n", - "Underfull \\hbox (badness 1824) in paragraph at lines 1299--1300\n", - "\\OT1/phv/m/n/10 i-ties that peo-ple ad-mire, such as\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1301--1302\n", - "[]\\OT1/phv/m/n/10 to for-mally sug-gest that some-\n", - "\n", - "Underfull \\hbox (badness 1286) in paragraph at lines 1302--1303\n", - "[]\\OT1/phv/m/n/10 the act of sug-gest-ing or choos-ing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1283--1310\n", - "[] \n", - "[27]\n", - "Underfull \\hbox (badness 1221) in paragraph at lines 1317--1318\n", - "[]\\OT1/phv/m/n/10 a place where young chil-dren are\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1323--1324\n", - "[]\\OT1/phv/m/n/10 a per-son who watches some-\n", - "\n", - "Underfull \\hbox (badness 1424) in paragraph at lines 1331--1332\n", - "[]\\OT1/phv/m/n/10 the de-gree to which some-thing is\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1310--1338\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2359) in paragraph at lines 1338--1339\n", - "[]\\OT1/phv/m/n/10 connected with the way in which\n", - "\n", - "Underfull \\hbox (badness 1082) in paragraph at lines 1341--1342\n", - "[]\\OT1/phv/m/n/10 connected with the sense of sight\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1338--1365\n", - "[] \n", - "[28]\n", - "Underfull \\hbox (badness 1342) in paragraph at lines 1366--1367\n", - "[]\\OT1/phv/m/n/10 to watch some-body/something and\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1365--1388\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 3758) in paragraph at lines 1407--1408\n", - "[]\\OT1/phv/m/n/10 to un-der-stand or think of some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1388--1411\n", - "[] \n", - "[29]\n", - "Underfull \\hbox (badness 1082) in paragraph at lines 1423--1424\n", - "[]\\OT1/phv/m/n/10 used to show that you are dis-ap-\n", - "\n", - "Underfull \\hbox (badness 1442) in paragraph at lines 1428--1429\n", - "[]\\OT1/phv/m/n/10 to for-mally promise to give or do\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1431--1432\n", - "[]\\OT1/phv/m/n/10 to move or make some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1431--1432\n", - "\\OT1/phv/m/n/10 body/something move sud-denly\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1411--1433\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1584) in paragraph at lines 1433--1434\n", - "[]\\OT1/phv/m/n/10 the pro-cess of ques-tion-ing peo-ple\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1438--1439\n", - "[]\\OT1/phv/m/n/10 to show some-body/something\n", - "\n", - "Underfull \\hbox (badness 4353) in paragraph at lines 1438--1439\n", - "\\OT1/phv/m/n/10 in a pic-ture; to de-scribe some-\n", - "\n", - "Underfull \\hbox (badness 1454) in paragraph at lines 1454--1455\n", - "[]\\OT1/phv/m/n/10 a greater in-ter-est in or de-sire for\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1454--1455\n", - "\\OT1/phv/m/n/10 some-body/something than some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1433--1460\n", - "[] \n", - "[30]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1460--1485\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1048) in paragraph at lines 1485--1486\n", - "\\OT1/phv/m/n/10 se-cret or hid-den in-for-ma-tion about\n", - "\n", - "Underfull \\hbox (badness 1371) in paragraph at lines 1497--1498\n", - "[]\\OT1/phv/m/n/10 the pro-cess of writ-ing and test-ing\n", - "\n", - "Underfull \\hbox (badness 2626) in paragraph at lines 1504--1505\n", - "[]\\OT1/phv/m/n/10 to make some-body de-cide to do\n", - "\n", - "Underfull \\hbox (badness 1117) in paragraph at lines 1504--1505\n", - "\\OT1/phv/m/n/10 some-thing; to cause some-thing to\n", - "\n", - "Underfull \\hbox (badness 4699) in paragraph at lines 1505--1506\n", - "[]\\OT1/phv/m/n/10 very ob-vi-ous, easy to no-tice or\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1485--1507\n", - "[] \n", - "[31]\n", - "Underfull \\hbox (badness 1221) in paragraph at lines 1515--1516\n", - "\\OT1/phv/m/n/10 things, that forms the struc-ture of\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1507--1527\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2042) in paragraph at lines 1535--1536\n", - "\\OT1/phv/m/n/10 in-for-ma-tion or ex-press-ing a doubt\n", - "\n", - "Underfull \\hbox (badness 1521) in paragraph at lines 1542--1543\n", - "[]\\OT1/phv/m/n/10 a per-son who be-lieves that some\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1527--1546\n", - "[] \n", - "[32]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1546--1568\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1622) in paragraph at lines 1578--1579\n", - "[]\\OT1/phv/m/n/10 sound or pic-tures that have been\n", - "\n", - "Underfull \\hbox (badness 2293) in paragraph at lines 1588--1589\n", - "[]\\OT1/phv/m/n/10 shelter or pro-tec-tion from dan-ger,\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1568--1590\n", - "[] \n", - "[33]\n", - "Underfull \\hbox (badness 2073) in paragraph at lines 1593--1594\n", - "\\OT1/phv/m/n/10 es-pe-cially one that has not been\n", - "\n", - "Underfull \\hbox (badness 1221) in paragraph at lines 1595--1596\n", - "[]\\OT1/phv/m/n/10 to con-trol some-thing by means of\n", - "\n", - "Underfull \\hbox (badness 2261) in paragraph at lines 1601--1602\n", - "[]\\OT1/phv/m/n/10 to make a feel-ing, an idea, etc.\n", - "\n", - "Underfull \\hbox (badness 1609) in paragraph at lines 1613--1614\n", - "\\OT1/phv/m/n/10 or re-mem-ber some-body/something,\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1590--1614\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2393) in paragraph at lines 1616--1617\n", - "[]\\OT1/phv/m/n/10 to be-gin some-thing again af-ter it\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1622--1623\n", - "[]\\OT1/phv/m/n/10 the act of pre-sent-ing some-\n", - "\n", - "Underfull \\hbox (badness 1137) in paragraph at lines 1629--1630\n", - "[]\\OT1/phv/m/n/10 suitable for liv-ing in; con-sist-ing of\n", - "\n", - "Underfull \\hbox (badness 1314) in paragraph at lines 1635--1636\n", - "[]\\OT1/phv/m/n/10 belonging or re-lat-ing sep-a-rately to\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1614--1640\n", - "[] \n", - "[34]\n", - "Underfull \\hbox (badness 7344) in paragraph at lines 1656--1657\n", - "[]\\OT1/phv/m/n/10 to be-come, or to make some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1640--1665\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2980) in paragraph at lines 1670--1671\n", - "\\OT1/phv/m/n/10 some-body/something move in this\n", - "\n", - "Underfull \\hbox (badness 1199) in paragraph at lines 1678--1679\n", - "[]\\OT1/phv/m/n/10 the state or pro-cess of be-ing de-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1665--1687\n", - "[] \n", - "[35]\n", - "Underfull \\hbox (badness 1014) in paragraph at lines 1691--1692\n", - "[]\\OT1/phv/m/n/10 behaviour or an event that peo-ple\n", - "\n", - "Underfull \\hbox (badness 1226) in paragraph at lines 1699--1700\n", - "[]\\OT1/phv/m/n/10 the op-por-tu-nity or abil-ity to do or\n", - "\n", - "Underfull \\hbox (badness 1248) in paragraph at lines 1700--1701\n", - "[]\\OT1/phv/m/n/10 a mark, a cut or an in-jury made\n", - "\n", - "Underfull \\hbox (badness 1533) in paragraph at lines 1704--1705\n", - "[]\\OT1/phv/m/n/10 to fas-ten one thing to an-other or\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1687--1707\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1448) in paragraph at lines 1714--1715\n", - "[]\\OT1/phv/m/n/10 affecting or in-volv-ing only a small\n", - "\n", - "Underfull \\hbox (badness 1533) in paragraph at lines 1715--1716\n", - "[]\\OT1/phv/m/n/10 a class at a uni-ver-sity or col-lege\n", - "\n", - "Underfull \\hbox (badness 3068) in paragraph at lines 1723--1724\n", - "\\OT1/phv/m/n/10 ar-gu-ment be-tween two peo-ple or\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1707--1736\n", - "[] \n", - "[36]\n", - "Underfull \\hbox (badness 2894) in paragraph at lines 1738--1739\n", - "\\OT1/phv/m/n/10 of the peo-ple or things that are\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1736--1761\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1769--1770\n", - "[]\\OT1/phv/m/n/10 only; not in-volv-ing some-\n", - "\n", - "Underfull \\hbox (badness 3291) in paragraph at lines 1771--1772\n", - "[]\\OT1/phv/m/n/10 support by one per-son or group\n", - "\n", - "Underfull \\hbox (badness 2134) in paragraph at lines 1783--1784\n", - "[]\\OT1/phv/m/n/10 to make some-thing such as time\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1761--1786\n", - "[] \n", - "[37]\n", - "Underfull \\hbox (badness 1184) in paragraph at lines 1789--1790\n", - "[]\\OT1/phv/m/n/10 a small amount of some-thing that\n", - "\n", - "Underfull \\hbox (badness 1024) in paragraph at lines 1810--1811\n", - "\\OT1/phv/m/n/10 place or per-son, es-pe-cially a per-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1786--1811\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1635) in paragraph at lines 1829--1830\n", - "\\OT1/phv/m/n/10 above the ground from which the\n", - "\n", - "Underfull \\hbox (badness 1057) in paragraph at lines 1829--1830\n", - "\\OT1/phv/m/n/10 that grows from this and sup-ports\n", - "\n", - "Underfull \\hbox (badness 3199) in paragraph at lines 1832--1833\n", - "\\OT1/phv/m/n/10 come more ac-tive; to en-cour-age\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1833--1834\n", - "[]\\OT1/phv/m/n/10 something that helps some-\n", - "\n", - "Underfull \\hbox (badness 5475) in paragraph at lines 1833--1834\n", - "\\OT1/phv/m/n/10 body/something to de-velop bet-ter\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1811--1834\n", - "[] \n", - "[38]\n", - "Underfull \\hbox (badness 1052) in paragraph at lines 1837--1838\n", - "\\OT1/phv/m/n/10 be-cause great de-mands are be-ing\n", - "\n", - "Underfull \\hbox (badness 2359) in paragraph at lines 1847--1848\n", - "[]\\OT1/phv/m/n/10 connected with the way in which\n", - "\n", - "Underfull \\hbox (badness 1281) in paragraph at lines 1848--1849\n", - "[]\\OT1/phv/m/n/10 to hit your foot against some-thing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1834--1857\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1860--1861\n", - "[]\\OT1/phv/m/n/10 to take the place of some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1860--1861\n", - "\\OT1/phv/m/n/10 body/something else; to use\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1860--1861\n", - "\\OT1/phv/m/n/10 some-body/something in-stead of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1878--1879\n", - "[]\\OT1/phv/m/n/10 better in qual-ity than some-\n", - "\n", - "Underfull \\hbox (badness 1762) in paragraph at lines 1878--1879\n", - "\\OT1/phv/m/n/10 body/something else; greater than\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1879--1880\n", - "[]\\OT1/phv/m/n/10 to be in charge of some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1879--1880\n", - "\\OT1/phv/m/n/10 body/something and make sure\n", - "\n", - "Underfull \\hbox (badness 4441) in paragraph at lines 1879--1880\n", - "\\OT1/phv/m/n/10 that ev-ery-thing is done cor-rectly,\n", - "\n", - "Underfull \\hbox (badness 5175) in paragraph at lines 1881--1882\n", - "[]\\OT1/phv/m/n/10 a per-son who su-per-vises some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1884--1885\n", - "[]\\OT1/phv/m/n/10 encouraging some-body or giv-ing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1857--1885\n", - "[] \n", - "[39]\n", - "Underfull \\hbox (badness 5189) in paragraph at lines 1900--1901\n", - "[]\\OT1/phv/m/n/10 feeling that some-body has done\n", - "\n", - "Underfull \\hbox (badness 1558) in paragraph at lines 1901--1902\n", - "[]\\OT1/phv/m/n/10 to pro-vide enough of what some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1885--1909\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2173) in paragraph at lines 1914--1915\n", - "[]\\OT1/phv/m/n/10 the par-tic-u-lar method you use to\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1917--1918\n", - "[]\\OT1/phv/m/n/10 to fas-ten a tag onto some-\n", - "\n", - "Underfull \\hbox (badness 2027) in paragraph at lines 1919--1920\n", - "[]\\OT1/phv/m/n/10 to hit some-body/something quickly\n", - "\n", - "Underfull \\hbox (badness 2088) in paragraph at lines 1923--1924\n", - "[]\\OT1/phv/m/n/10 a build-ing used for re-li-gious wor-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1909--1931\n", - "[] \n", - "[40]\n", - "Underfull \\hbox (badness 1831) in paragraph at lines 1938--1939\n", - "[]\\OT1/phv/m/n/10 to make some-body feel ex-tremely\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1945--1946\n", - "[]\\OT1/phv/m/n/10 the ac-tiv-ity of test-ing some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1945--1946\n", - "\\OT1/phv/m/n/10 body/something in or-der to find\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1931--1957\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1957--1982\n", - "[] \n", - "[41]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1986--1987\n", - "[]\\OT1/phv/m/n/10 to find or dis-cover some-\n", - "\n", - "Underfull \\hbox (badness 2809) in paragraph at lines 1988--1989\n", - "[]\\OT1/phv/m/n/10 the ac-tiv-ity of buy-ing and sell-ing\n", - "\n", - "Underfull \\hbox (badness 6910) in paragraph at lines 1992--1993\n", - "[]\\OT1/phv/m/n/10 to pull some-thing be-hind some-\n", - "\n", - "Underfull \\hbox (badness 2158) in paragraph at lines 1992--1993\n", - "\\OT1/phv/m/n/10 body/something, usu-ally along the\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1997--1998\n", - "[]\\OT1/phv/m/n/10 a com-plete change in some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1982--2007\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2007--2035\n", - "[] \n", - "[42]\n", - "Underfull \\hbox (badness 5592) in paragraph at lines 2036--2037\n", - "[]\\OT1/phv/m/n/10 to make your-self re-spon-si-ble for\n", - "\n", - "Underfull \\hbox (badness 1014) in paragraph at lines 2052--2053\n", - "[]\\OT1/phv/m/n/10 not use-ful; not do-ing or achiev-ing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2035--2061\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 2089--2090\n", - "[]\\OT1/phv/m/n/10 the ac-tion of choos-ing some-\n", - "\n", - "Underfull \\hbox (badness 3758) in paragraph at lines 2089--2090\n", - "\\OT1/phv/m/n/10 body/something in an elec-tion or\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2061--2091\n", - "[] \n", - "[43]\n", - "Underfull \\hbox (badness 1565) in paragraph at lines 2101--2102\n", - "[]\\OT1/phv/m/n/10 to make some-body/something less\n", - "\n", - "Underfull \\hbox (badness 1092) in paragraph at lines 2106--2107\n", - "[]\\OT1/phv/m/n/10 the gen-eral health, hap-pi-ness and\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2091--2115\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1005) in paragraph at lines 2132--2133\n", - "\\OT1/phv/m/n/10 God or a god, by say-ing prayers,\n", - "\n", - "Underfull \\hbox (badness 4132) in paragraph at lines 2135--2136\n", - "[]\\OT1/phv/m/n/10 having the qual-i-ties that de-serve\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2115--2139\n", - "[] \n", - "[44])\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2139--26\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 2139--26\n", - "\n", - "\n", - "(/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_alphabeti\n", - "cal.aux) )\n", - "(see the transcript file for additional information){/usr/share/texlive/texmf-d\n", - "ist/fonts/enc/dvips/base/8r.enc}\n", - "Output written on /home/jelle/wd/words/english/output/oxford_5000_exclusive_two\n", - "_column_alphabetical.pdf (44 pages, 182254 bytes).\n", - "Transcript written on /home/jelle/wd/words/english/output/oxford_5000_exclusive\n", - "_two_column_alphabetical.log.\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Latexmk: Log file says output to '/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_alphabetical.pdf'\n", - "Latexmk: Undoing directory change\n", - "Latexmk: Changing directory to 'format/'\n", - "Rule 'pdflatex': File changes, etc:\n", - " Changed files, or newly in use since previous run(s):\n", - " 'oxford_5000_exclusive_two_column_by_cefr.tex'\n", - "------------\n", - "Run number 1 of rule 'pdflatex'\n", - "------------\n", - "------------\n", - "Running 'pdflatex -recorder -output-directory=\"/home/jelle/wd/words/english/output\" \"oxford_5000_exclusive_two_column_by_cefr.tex\"'\n", - "------------\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Latexmk: Examining '/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_alphabetical.log'\n", - "=== TeX engine is 'pdfTeX'\n", - "Latexmk: All targets (/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_alphabetical.pdf) are up-to-date\n", - "Latexmk: applying rule 'pdflatex'...\n", - "This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2022/dev/Debian) (preloaded format=pdflatex)\n", - " restricted \\write18 enabled.\n", - "entering extended mode\n", - "(./oxford_5000_exclusive_two_column_by_cefr.tex\n", - "LaTeX2e <2021-11-15> patch level 1\n", - "L3 programming layer <2022-01-21>\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls\n", - "Document Class: article 2021/10/04 v1.4n Standard LaTeX document class\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty\n", - "(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty)))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/blindtext/blindtext.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/tools/xspace.sty))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/utf8x.def))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucs.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-global.def))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/supertabular/supertabular.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/psnfss/helvet.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1phv.fd)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def)\n", - "(/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_by_cefr.a\n", - "ux)\n", - "*geometry* driver: auto-detecting\n", - "*geometry* detected driver: pdftex\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucsencs.def)\n", - "No file oxford_5000_exclusive_two_column_by_cefr.toc.\n", - "(/home/jelle/wd/words/english/output/../build/oxford_5000_exclusive_B2.tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1596) in paragraph at lines 3--4\n", - "\\OT1/phv/m/n/10 stance from the sur-face or space\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 6--6\n", - "[]\\OT1/phv/m/n/10 accidentally \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 7--7\n", - "[]\\OT1/phv/m/n/10 accommodate\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 15--15\n", - "[]\\OT1/phv/m/n/10 additionally \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 16--16\n", - "[]\\OT1/phv/m/n/10 adequate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 17--17\n", - "[]\\OT1/phv/m/n/10 adequately \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--19\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 19--19\n", - "[]\\OT1/phv/m/n/10 affordable \\OT1/phv/m/sl/10 (ad-jec-\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-32.def)\n", - "Underfull \\hbox (badness 2856) in paragraph at lines 25--26\n", - "[]\\OT1/phv/m/n/10 a ve-hi-cle with spe-cial equip-ment,\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 35--35\n", - "[]\\OT1/phv/m/n/10 appropriately \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1014) in paragraph at lines 37--38\n", - "[]\\OT1/phv/m/n/10 pictures and pho-tographs pre-pared\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 19--41\n", - "[] \n", - "[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 48--48\n", - "[]\\OT1/phv/m/n/10 automatic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 3302) in paragraph at lines 48--49\n", - "[]\\OT1/phv/m/n/10 having con-trols that work with-out\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 49--49\n", - "[]\\OT1/phv/m/n/10 automatically \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 3623) in paragraph at lines 50--51\n", - "[]\\OT1/phv/m/n/10 knowing some-thing; know-ing that\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 51--51\n", - "[]\\OT1/phv/m/n/10 awkward \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 53--53\n", - "[]\\OT1/phv/m/n/10 balanced \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 41--61\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 61--61\n", - "[]\\OT1/phv/m/n/10 beneficial \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 62--62\n", - "[]\\OT1/phv/m/n/10 beside \\OT1/phv/m/sl/10 (prepo-si-\n", - "\n", - "Underfull \\hbox (badness 2556) in paragraph at lines 62--63\n", - "[]\\OT1/phv/m/n/10 next to or at the side of some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 64--64\n", - "[]\\OT1/phv/m/n/10 besides \\OT1/phv/m/sl/10 (prepo-si-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 68--68\n", - "[]\\OT1/phv/m/n/10 biological \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1406) in paragraph at lines 79--80\n", - "[]\\OT1/phv/m/n/10 a per-son whose job is pre-sent-ing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 61--86\n", - "[] \n", - "[2]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 91--91\n", - "[]\\OT1/phv/m/n/10 championship\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 92--92\n", - "[]\\OT1/phv/m/n/10 charming \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 3657) in paragraph at lines 93--94\n", - "[]\\OT1/phv/m/n/10 an act of run-ning or driv-ing af-\n", - "\n", - "Underfull \\hbox (badness 2799) in paragraph at lines 94--95\n", - "[]\\OT1/phv/m/n/10 to run, drive, etc. af-ter some-\n", - "\n", - "Underfull \\hbox (badness 3229) in paragraph at lines 94--95\n", - "\\OT1/phv/m/n/10 body/something in or-der to catch\n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 106--107\n", - "\\OT1/phv/m/n/10 peo-ple can go for spe-cial med-i-cal\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 86--114\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 115--115\n", - "[]\\OT1/phv/m/n/10 comparative \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 120--120\n", - "[]\\OT1/phv/m/n/10 comprehensive\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 121--122\n", - "[]\\OT1/phv/m/n/10 to have some-body/something as\n", - "\n", - "Underfull \\hbox (badness 2150) in paragraph at lines 124--125\n", - "[]\\OT1/phv/m/n/10 building ma-te-rial that is made by\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 127--127\n", - "[]\\OT1/phv/m/n/10 consequently \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 128--128\n", - "[]\\OT1/phv/m/n/10 conservation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 129--129\n", - "[]\\OT1/phv/m/n/10 considerable \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 130--130\n", - "[]\\OT1/phv/m/n/10 considerably \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 131--131\n", - "[]\\OT1/phv/m/n/10 consistently \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 135--135\n", - "[]\\OT1/phv/m/n/10 consumption\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 136--136\n", - "[]\\OT1/phv/m/n/10 controversial \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 138--138\n", - "[]\\OT1/phv/m/n/10 convenience\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 114--140\n", - "[] \n", - "[3]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 140--140\n", - "[]\\OT1/phv/m/n/10 conventional \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 5578) in paragraph at lines 142--142\n", - "[]\\OT1/phv/m/n/10 convincing \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1205) in paragraph at lines 142--143\n", - "[]\\OT1/phv/m/n/10 that makes some-body be-lieve that\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 140--169\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2103) in paragraph at lines 171--171\n", - "[]\\OT1/phv/m/n/10 democratic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 172--172\n", - "[]\\OT1/phv/m/n/10 demonstration\n", - "\n", - "Underfull \\hbox (badness 3039) in paragraph at lines 172--173\n", - "[]\\OT1/phv/m/n/10 a pub-lic meet-ing or a march (=\n", - "\n", - "Underfull \\hbox (badness 2103) in paragraph at lines 172--173\n", - "\\OT1/phv/m/n/10 an or-ga-nized walk by many peo-\n", - "\n", - "Underfull \\hbox (badness 5008) in paragraph at lines 174--174\n", - "[]\\OT1/phv/m/n/10 dependent \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 178--178\n", - "[]\\OT1/phv/m/n/10 desperately \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 180--180\n", - "[]\\OT1/phv/m/n/10 determination\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 182--183\n", - "[]\\OT1/phv/m/n/10 to be dif-fer-ent from some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 185--185\n", - "[]\\OT1/phv/m/n/10 disagreement\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 187--187\n", - "[]\\OT1/phv/m/n/10 disappointment\n", - "\n", - "Underfull \\hbox (badness 1997) in paragraph at lines 187--188\n", - "[]\\OT1/phv/m/n/10 the feel-ing of be-ing sad be-cause\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 169--188\n", - "[] \n", - "[4]\n", - "Underfull \\hbox (badness 1635) in paragraph at lines 188--189\n", - "[]\\OT1/phv/m/n/10 to try to pre-vent some-thing or to\n", - "\n", - "Underfull \\hbox (badness 1789) in paragraph at lines 189--190\n", - "[]\\OT1/phv/m/n/10 a con-di-tion or ill-ness that causes\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 201--201\n", - "[]\\OT1/phv/m/n/10 dominant \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 204--204\n", - "[]\\OT1/phv/m/n/10 downtown \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 207--207\n", - "[]\\OT1/phv/m/n/10 dramatically \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 188--216\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 220--220\n", - "[]\\OT1/phv/m/n/10 elementary \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 224--224\n", - "[]\\OT1/phv/m/n/10 emotionally \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 226--226\n", - "[]\\OT1/phv/m/n/10 enjoyable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 228--228\n", - "[]\\OT1/phv/m/n/10 entrepreneur\n", - "\n", - "Underfull \\hbox (badness 1635) in paragraph at lines 228--229\n", - "\\OT1/phv/m/n/10 when this in-volves tak-ing fi-nan-cial\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 230--231\n", - "[]\\OT1/phv/m/n/10 to pro-vide your-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 230--231\n", - "\\OT1/phv/m/n/10 self/somebody/something with the\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 231--231\n", - "[]\\OT1/phv/m/n/10 equivalent \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1092) in paragraph at lines 234--235\n", - "[]\\OT1/phv/m/n/10 when a vol-cano erupts or burn-ing\n", - "\n", - "Underfull \\hbox (badness 1552) in paragraph at lines 234--235\n", - "\\OT1/phv/m/n/10 rocks, smoke, etc. erupt or are\n", - "\n", - "Underfull \\hbox (badness 2443) in paragraph at lines 235--236\n", - "\\OT1/phv/m/n/10 por-tant or ba-sic na-ture of some-\n", - "\n", - "Underfull \\hbox (badness 1924) in paragraph at lines 237--238\n", - "[]\\OT1/phv/m/n/10 connected with or be-long-ing to a\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 216--238\n", - "[] \n", - "[5]\n", - "Underfull \\hbox (badness 6608) in paragraph at lines 240--241\n", - "[]\\OT1/phv/m/n/10 the slow steady de-vel-op-ment of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 244--244\n", - "[]\\OT1/phv/m/n/10 excessive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 255--255\n", - "[]\\OT1/phv/m/n/10 extensive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 256--256\n", - "[]\\OT1/phv/m/n/10 extensively \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 238--262\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2486) in paragraph at lines 268--269\n", - "[]\\OT1/phv/m/n/10 a small de-vice con-tain-ing pow-der\n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 272--273\n", - "[]\\OT1/phv/m/n/10 having warm or lov-ing feel-ings for\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 280--280\n", - "[]\\OT1/phv/m/n/10 fortunate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 262--285\n", - "[] \n", - "[6]\n", - "Underfull \\hbox (badness 1308) in paragraph at lines 294--294\n", - "[]\\OT1/phv/m/n/10 fundamentally \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1418) in paragraph at lines 298--299\n", - "[]\\OT1/phv/m/n/10 the fact of be-ing male or fe-male,\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 310--310\n", - "[]\\OT1/phv/m/n/10 gorgeous \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 285--312\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 320--320\n", - "[]\\OT1/phv/m/n/10 headquarters\n", - "\n", - "Underfull \\hbox (badness 2293) in paragraph at lines 325--326\n", - "[]\\OT1/phv/m/n/10 a plant whose leaves, flow-ers or\n", - "\n", - "Underfull \\hbox (badness 1565) in paragraph at lines 325--326\n", - "\\OT1/phv/m/n/10 pars-ley, mint and oregano are all\n", - "\n", - "Underfull \\hbox (badness 3039) in paragraph at lines 327--328\n", - "\\OT1/phv/m/n/10 tances, es-pe-cially one con-nect-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 331--331\n", - "[]\\OT1/phv/m/n/10 homeless \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 312--334\n", - "[] \n", - "[7]\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 337--338\n", - "[]\\OT1/phv/m/n/10 a small sym-bol on a com-puter or\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 348--348\n", - "[]\\OT1/phv/m/n/10 independence\n", - "\n", - "Underfull \\hbox (badness 1389) in paragraph at lines 350--351\n", - "[]\\OT1/phv/m/n/10 a re-mark or sign that shows that\n", - "\n", - "Underfull \\hbox (badness 5359) in paragraph at lines 350--351\n", - "\\OT1/phv/m/n/10 some-thing is hap-pen-ing or what\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 351--351\n", - "[]\\OT1/phv/m/n/10 inevitable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 356--356\n", - "[]\\OT1/phv/m/n/10 infrastructure\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 334--357\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1062) in paragraph at lines 359--360\n", - "[]\\OT1/phv/m/n/10 coloured liq-uid for writ-ing, draw-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 361--361\n", - "[]\\OT1/phv/m/n/10 innovative \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 5064) in paragraph at lines 369--369\n", - "[]\\OT1/phv/m/n/10 intellectual \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 372--372\n", - "[]\\OT1/phv/m/n/10 interpretation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 377--378\n", - "[]\\OT1/phv/m/n/10 to sep-a-rate some-body/something\n", - "\n", - "Underfull \\hbox (badness 7168) in paragraph at lines 377--378\n", - "\\OT1/phv/m/n/10 phys-i-cally or so-cially from other\n", - "\n", - "Underfull \\hbox (badness 1742) in paragraph at lines 384--385\n", - "[]\\OT1/phv/m/n/10 the work of col-lect-ing and writ-ing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 357--385\n", - "[] \n", - "[8]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 385--408\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 410--410\n", - "[]\\OT1/phv/m/n/10 manufacturing\n", - "\n", - "Underfull \\hbox (badness 1082) in paragraph at lines 424--424\n", - "[]\\OT1/phv/m/n/10 memorable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1009) in paragraph at lines 424--425\n", - "[]\\OT1/phv/m/n/10 worth re-mem-ber-ing or easy to re-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 427--427\n", - "[]\\OT1/phv/m/n/10 miserable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 408--433\n", - "[] \n", - "[9]\n", - "Underfull \\hbox (badness 5548) in paragraph at lines 438--439\n", - "[]\\OT1/phv/m/n/10 the rea-son why some-body does\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 445--446\n", - "[]\\OT1/phv/m/n/10 a short dis-tance from some-\n", - "\n", - "Underfull \\hbox (badness 3158) in paragraph at lines 448--449\n", - "[]\\OT1/phv/m/n/10 formal dis-cus-sion be-tween peo-ple\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 458--459\n", - "[]\\OT1/phv/m/n/10 a per-son who watches some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 433--460\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 467--467\n", - "[]\\OT1/phv/m/n/10 optimistic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 475--475\n", - "[]\\OT1/phv/m/n/10 overseas \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 460--483\n", - "[] \n", - "[10]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 485--485\n", - "[]\\OT1/phv/m/n/10 part-time (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2772) in paragraph at lines 488--488\n", - "[]\\OT1/phv/m/n/10 passionate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 3758) in paragraph at lines 495--496\n", - "[]\\OT1/phv/m/n/10 to un-der-stand or think of some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 497--497\n", - "[]\\OT1/phv/m/n/10 permanently \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1082) in paragraph at lines 499--500\n", - "[]\\OT1/phv/m/n/10 used to show that you are dis-ap-\n", - "\n", - "Underfull \\hbox (badness 2229) in paragraph at lines 507--507\n", - "[]\\OT1/phv/m/n/10 predictable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1454) in paragraph at lines 508--509\n", - "[]\\OT1/phv/m/n/10 a greater in-ter-est in or de-sire for\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 508--509\n", - "\\OT1/phv/m/n/10 some-body/something than some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 483--509\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 514--514\n", - "[]\\OT1/phv/m/n/10 probable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 516--516\n", - "[]\\OT1/phv/m/n/10 programming\n", - "\n", - "Underfull \\hbox (badness 1371) in paragraph at lines 516--517\n", - "[]\\OT1/phv/m/n/10 the pro-cess of writ-ing and test-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 519--519\n", - "[]\\OT1/phv/m/n/10 promising \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2626) in paragraph at lines 521--522\n", - "[]\\OT1/phv/m/n/10 to make some-body de-cide to do\n", - "\n", - "Underfull \\hbox (badness 1117) in paragraph at lines 521--522\n", - "\\OT1/phv/m/n/10 some-thing; to cause some-thing to\n", - "\n", - "Underfull \\hbox (badness 1221) in paragraph at lines 523--524\n", - "\\OT1/phv/m/n/10 things, that forms the struc-ture of\n", - "\n", - "Underfull \\hbox (badness 5064) in paragraph at lines 525--525\n", - "[]\\OT1/phv/m/n/10 psychological \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 532--532\n", - "[]\\OT1/phv/m/n/10 questionnaire\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 509--533\n", - "[] \n", - "[11]\n", - "Underfull \\hbox (badness 1521) in paragraph at lines 536--537\n", - "[]\\OT1/phv/m/n/10 a per-son who be-lieves that some\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 542--542\n", - "[]\\OT1/phv/m/n/10 reasonably \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 533--551\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1221) in paragraph at lines 555--556\n", - "[]\\OT1/phv/m/n/10 to con-trol some-thing by means of\n", - "\n", - "Underfull \\hbox (badness 2261) in paragraph at lines 556--557\n", - "[]\\OT1/phv/m/n/10 to make a feel-ing, an idea, etc.\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 560--560\n", - "[]\\OT1/phv/m/n/10 remarkably \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 571--571\n", - "[]\\OT1/phv/m/n/10 ridiculous \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 551--576\n", - "[] \n", - "[12]\n", - "Underfull \\hbox (badness 1199) in paragraph at lines 581--582\n", - "[]\\OT1/phv/m/n/10 the state or pro-cess of be-ing de-\n", - "\n", - "Underfull \\hbox (badness 1014) in paragraph at lines 584--585\n", - "[]\\OT1/phv/m/n/10 behaviour or an event that peo-ple\n", - "\n", - "Underfull \\hbox (badness 1248) in paragraph at lines 590--591\n", - "[]\\OT1/phv/m/n/10 a mark, a cut or an in-jury made\n", - "\n", - "Underfull \\hbox (badness 1533) in paragraph at lines 594--595\n", - "[]\\OT1/phv/m/n/10 a class at a uni-ver-sity or col-lege\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 599--599\n", - "[]\\OT1/phv/m/n/10 shocking \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 576--600\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 8056) in paragraph at lines 601--601\n", - "[]\\OT1/phv/m/n/10 short-term (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2894) in paragraph at lines 602--603\n", - "\\OT1/phv/m/n/10 of the peo-ple or things that are\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 610--610\n", - "[]\\OT1/phv/m/n/10 so-called (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 613--613\n", - "[]\\OT1/phv/m/n/10 sophisticated \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 600--624\n", - "[] \n", - "[13]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 626--626\n", - "[]\\OT1/phv/m/n/10 spokesperson\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 627--627\n", - "[]\\OT1/phv/m/n/10 spokeswoman\n", - "\n", - "Underfull \\hbox (badness 3199) in paragraph at lines 635--636\n", - "\\OT1/phv/m/n/10 come more ac-tive; to en-cour-age\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 641--641\n", - "[]\\OT1/phv/m/n/10 subsequently \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 644--644\n", - "[]\\OT1/phv/m/n/10 sufficient \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 624--652\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 656--657\n", - "[]\\OT1/phv/m/n/10 to fas-ten a tag onto some-\n", - "\n", - "Underfull \\hbox (badness 2027) in paragraph at lines 658--659\n", - "[]\\OT1/phv/m/n/10 to hit some-body/something quickly\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 659--659\n", - "[]\\OT1/phv/m/n/10 technological \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 2088) in paragraph at lines 661--662\n", - "[]\\OT1/phv/m/n/10 a build-ing used for re-li-gious wor-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 662--662\n", - "[]\\OT1/phv/m/n/10 temporarily \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1831) in paragraph at lines 668--669\n", - "[]\\OT1/phv/m/n/10 to make some-body feel ex-tremely\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 673--674\n", - "[]\\OT1/phv/m/n/10 the ac-tiv-ity of test-ing some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 673--674\n", - "\\OT1/phv/m/n/10 body/something in or-der to find\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 652--677\n", - "[] \n", - "[14]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 678--678\n", - "[]\\OT1/phv/m/n/10 thorough \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 686--687\n", - "[]\\OT1/phv/m/n/10 to find or dis-cover some-\n", - "\n", - "Underfull \\hbox (badness 2809) in paragraph at lines 687--688\n", - "[]\\OT1/phv/m/n/10 the ac-tiv-ity of buy-ing and sell-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 692--692\n", - "[]\\OT1/phv/m/n/10 transportation\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 677--701\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 7116) in paragraph at lines 702--702\n", - "[]\\OT1/phv/m/n/10 unacceptable \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 5592) in paragraph at lines 705--706\n", - "[]\\OT1/phv/m/n/10 to make your-self re-spon-si-ble for\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 710--710\n", - "[]\\OT1/phv/m/n/10 universal \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1014) in paragraph at lines 713--714\n", - "[]\\OT1/phv/m/n/10 not use-ful; not do-ing or achiev-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 720--720\n", - "[]\\OT1/phv/m/n/10 voluntary \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 721--722\n", - "[]\\OT1/phv/m/n/10 the ac-tion of choos-ing some-\n", - "\n", - "Underfull \\hbox (badness 3758) in paragraph at lines 721--722\n", - "\\OT1/phv/m/n/10 body/something in an elec-tion or\n", - "\n", - "Underfull \\hbox (badness 1092) in paragraph at lines 726--727\n", - "[]\\OT1/phv/m/n/10 the gen-eral health, hap-pi-ness and\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 701--728\n", - "[] \n", - "[15])\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 728--27\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 728--27\n", - "\n", - "(/home/jelle/wd/words/english/output/../build/oxford_5000_exclusive_C1.tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 7186) in paragraph at lines 14--14\n", - "[]\\OT1/phv/m/n/10 accessible \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 15--15\n", - "[]\\OT1/phv/m/n/10 accomplishment\n", - "\n", - "Underfull \\hbox (badness 4467) in paragraph at lines 16--17\n", - "[]\\OT1/phv/m/n/10 according to a rule or the way\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 17--17\n", - "[]\\OT1/phv/m/n/10 accordingly \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 18--18\n", - "[]\\OT1/phv/m/n/10 accountability\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--19\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 21--21\n", - "[]\\OT1/phv/m/n/10 accumulation\n", - "\n", - "Underfull \\hbox (badness 1184) in paragraph at lines 30--31\n", - "[]\\OT1/phv/m/n/10 the ac-tion or pro-cess of chang-ing\n", - "\n", - "Underfull \\hbox (badness 2469) in paragraph at lines 35--35\n", - "[]\\OT1/phv/m/n/10 administrative \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 36--36\n", - "[]\\OT1/phv/m/n/10 administrator\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 19--42\n", - "[] \n", - "[16]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 43--43\n", - "[]\\OT1/phv/m/n/10 aesthetic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2035) in paragraph at lines 47--47\n", - "[]\\OT1/phv/m/n/10 agricultural \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 42--66\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 78--78\n", - "[]\\OT1/phv/m/n/10 appealing \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 3623) in paragraph at lines 80--81\n", - "[]\\OT1/phv/m/n/10 to show your ap-proval of some-\n", - "\n", - "Underfull \\hbox (badness 6910) in paragraph at lines 80--81\n", - "\\OT1/phv/m/n/10 body/something by clap-ping your\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 81--81\n", - "[]\\OT1/phv/m/n/10 applicable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 85--85\n", - "[]\\OT1/phv/m/n/10 architectural \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 66--87\n", - "[] \n", - "[17]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 89--90\n", - "[]\\OT1/phv/m/n/10 to pro-vide weapons for your-\n", - "\n", - "Underfull \\hbox (badness 2393) in paragraph at lines 89--90\n", - "\\OT1/phv/m/n/10 self/somebody in or-der to fight a\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 95--95\n", - "[]\\OT1/phv/m/n/10 assassination\n", - "\n", - "Underfull \\hbox (badness 3792) in paragraph at lines 96--97\n", - "[]\\OT1/phv/m/n/10 the crime of at-tack-ing some-body\n", - "\n", - "Underfull \\hbox (badness 1490) in paragraph at lines 100--101\n", - "[]\\OT1/phv/m/n/10 to state clearly and def-i-nitely that\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 108--109\n", - "[]\\OT1/phv/m/n/10 a qual-ity or fea-ture of some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 87--110\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1024) in paragraph at lines 110--111\n", - "[]\\OT1/phv/m/n/10 an of-fi-cial ex-am-i-na-tion of busi-ness\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 111--111\n", - "[]\\OT1/phv/m/n/10 authentic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1342) in paragraph at lines 121--122\n", - "\\OT1/phv/m/n/10 usu-ally in se-cret; an oc-ca-sion on\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 110--135\n", - "[] \n", - "[18]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 135--135\n", - "[]\\OT1/phv/m/n/10 beneath \\OT1/phv/m/sl/10 (prepo-si-\n", - "\n", - "Underfull \\hbox (badness 7168) in paragraph at lines 135--136\n", - "[]\\OT1/phv/m/n/10 in or to a lower po-si-tion than\n", - "\n", - "Underfull \\hbox (badness 1194) in paragraph at lines 135--136\n", - "\\OT1/phv/m/n/10 some-body/something; un-der some-\n", - "\n", - "Underfull \\hbox (badness 6316) in paragraph at lines 137--138\n", - "[]\\OT1/phv/m/n/10 to give in-for-ma-tion about some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 148--149\n", - "[]\\OT1/phv/m/n/10 to ask God to pro-tect some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 135--157\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 160--160\n", - "[]\\OT1/phv/m/n/10 breakthrough\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 168--169\n", - "\\OT1/phv/m/n/10 or pro-tects some-body/something\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 157--179\n", - "[] \n", - "[19]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 179--179\n", - "[]\\OT1/phv/m/n/10 capitalist \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1509) in paragraph at lines 196--197\n", - "[]\\OT1/phv/m/n/10 a writ-ten state-ment de-scrib-ing the\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 179--207\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 207--207\n", - "[]\\OT1/phv/m/n/10 classification\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 208--209\n", - "[]\\OT1/phv/m/n/10 to hold on tightly to some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 215--215\n", - "[]\\OT1/phv/m/n/10 cognitive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 218--218\n", - "[]\\OT1/phv/m/n/10 collaboration\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 219--219\n", - "[]\\OT1/phv/m/n/10 collective \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1924) in paragraph at lines 221--222\n", - "[]\\OT1/phv/m/n/10 connected with or be-long-ing to a\n", - "\n", - "Underfull \\hbox (badness 4673) in paragraph at lines 224--225\n", - "[]\\OT1/phv/m/n/10 to stop some-thing un-pleas-ant or\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 227--227\n", - "[]\\OT1/phv/m/n/10 commentator\n", - "\n", - "Underfull \\hbox (badness 1371) in paragraph at lines 227--228\n", - "[]\\OT1/phv/m/n/10 a per-son who de-scribes an event\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 229--229\n", - "[]\\OT1/phv/m/n/10 commissioner\n", - "\n", - "Underfull \\hbox (badness 2970) in paragraph at lines 231--231\n", - "[]\\OT1/phv/m/n/10 communist \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 207--232\n", - "[] \n", - "[20]\n", - "Underfull \\hbox (badness 3826) in paragraph at lines 236--236\n", - "[]\\OT1/phv/m/n/10 compelling \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 238--238\n", - "[]\\OT1/phv/m/n/10 compensation\n", - "\n", - "Underfull \\hbox (badness 2418) in paragraph at lines 238--239\n", - "[]\\OT1/phv/m/n/10 something, es-pe-cially money, that\n", - "\n", - "Underfull \\hbox (badness 6542) in paragraph at lines 240--240\n", - "[]\\OT1/phv/m/n/10 competent \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2027) in paragraph at lines 248--249\n", - "[]\\OT1/phv/m/n/10 an agree-ment made be-tween two\n", - "\n", - "Underfull \\hbox (badness 5274) in paragraph at lines 254--255\n", - "[]\\OT1/phv/m/n/10 an un-der-stand-ing or a be-lief of\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 232--255\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 259--259\n", - "[]\\OT1/phv/m/n/10 configuration\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 263--263\n", - "[]\\OT1/phv/m/n/10 confrontation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 265--265\n", - "[]\\OT1/phv/m/n/10 congregation\n", - "\n", - "Underfull \\hbox (badness 2088) in paragraph at lines 266--266\n", - "[]\\OT1/phv/m/n/10 congressional \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 2088) in paragraph at lines 268--269\n", - "\\OT1/phv/m/n/10 whether your ac-tions are right or\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 269--269\n", - "[]\\OT1/phv/m/n/10 consciousness\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 255--276\n", - "[] \n", - "[21]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 280--280\n", - "[]\\OT1/phv/m/n/10 constitutional \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 291--291\n", - "[]\\OT1/phv/m/n/10 contradiction\n", - "\n", - "Underfull \\hbox (badness 1092) in paragraph at lines 294--295\n", - "\\OT1/phv/m/n/10 talks on a ra-dio or tele-vi-sion pro-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 276--301\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1062) in paragraph at lines 307--308\n", - "\\OT1/phv/m/n/10 re-lates with an-other, the facts are\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 310--310\n", - "[]\\OT1/phv/m/n/10 correspondence\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 311--311\n", - "[]\\OT1/phv/m/n/10 correspondent\n", - "\n", - "Underfull \\hbox (badness 1337) in paragraph at lines 315--316\n", - "[]\\OT1/phv/m/n/10 costing a lot of money, es-pe-cially\n", - "\n", - "Underfull \\hbox (badness 1019) in paragraph at lines 319--320\n", - "[]\\OT1/phv/m/n/10 to re-ply to some-body by try-ing to\n", - "\n", - "Underfull \\hbox (badness 4765) in paragraph at lines 320--321\n", - "[]\\OT1/phv/m/n/10 a per-son or thing that has the\n", - "\n", - "Underfull \\hbox (badness 1675) in paragraph at lines 320--321\n", - "\\OT1/phv/m/n/10 body/something else in a dif-fer-ent\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 321--321\n", - "[]\\OT1/phv/m/n/10 countless \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 301--324\n", - "[] \n", - "[22]\n", - "Underfull \\hbox (badness 3323) in paragraph at lines 324--325\n", - "[]\\OT1/phv/m/n/10 to make some-thing us-ing spe-cial\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 343--343\n", - "[]\\OT1/phv/m/n/10 damaging \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 347--347\n", - "[]\\OT1/phv/m/n/10 decision-making\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 324--348\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 350--350\n", - "[]\\OT1/phv/m/n/10 dedicated \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1087) in paragraph at lines 353--354\n", - "[]\\OT1/phv/m/n/10 to have a par-tic-u-lar opin-ion about\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 356--356\n", - "[]\\OT1/phv/m/n/10 defensive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 356--357\n", - "[]\\OT1/phv/m/n/10 protecting some-body/something\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 365--366\n", - "[]\\OT1/phv/m/n/10 to strongly crit-i-cize some-\n", - "\n", - "Underfull \\hbox (badness 4467) in paragraph at lines 365--366\n", - "\\OT1/phv/m/n/10 body/something that you think is\n", - "\n", - "Underfull \\hbox (badness 1264) in paragraph at lines 366--367\n", - "[]\\OT1/phv/m/n/10 containing a lot of peo-ple, things,\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 369--370\n", - "[]\\OT1/phv/m/n/10 to show an im-age of some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 348--371\n", - "[] \n", - "[23]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 377--378\n", - "[]\\OT1/phv/m/n/10 to say of-fi-cially that some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 377--378\n", - "\\OT1/phv/m/n/10 body/something has a par-tic-u-lar\n", - "\n", - "Underfull \\hbox (badness 6842) in paragraph at lines 377--378\n", - "\\OT1/phv/m/n/10 char-ac-ter or name; to de-scribe\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 378--378\n", - "[]\\OT1/phv/m/n/10 desirable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2951) in paragraph at lines 380--380\n", - "[]\\OT1/phv/m/n/10 destructive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 371--395\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 3138) in paragraph at lines 396--397\n", - "[]\\OT1/phv/m/n/10 to be-come smaller, weaker, etc.;\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 399--399\n", - "[]\\OT1/phv/m/n/10 diplomatic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1490) in paragraph at lines 399--400\n", - "[]\\OT1/phv/m/n/10 connected with man-ag-ing re-la-tions\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 401--401\n", - "[]\\OT1/phv/m/n/10 disastrous \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1845) in paragraph at lines 403--404\n", - "\\OT1/phv/m/n/10 to leave the po-lice or the armed\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 408--408\n", - "[]\\OT1/phv/m/n/10 discrimination\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 410--411\n", - "[]\\OT1/phv/m/n/10 to take the place of some-\n", - "\n", - "Underfull \\hbox (badness 1377) in paragraph at lines 413--414\n", - "[]\\OT1/phv/m/n/10 an ar-gu-ment be-tween two peo-ple,\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 395--417\n", - "[] \n", - "[24]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 419--419\n", - "[]\\OT1/phv/m/n/10 distinctive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1521) in paragraph at lines 420--421\n", - "[]\\OT1/phv/m/n/10 to change the shape, ap-pear-ance\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 423--423\n", - "[]\\OT1/phv/m/n/10 disturbing \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 424--425\n", - "[]\\OT1/phv/m/n/10 to make some-body/something\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 427--427\n", - "[]\\OT1/phv/m/n/10 documentation\n", - "\n", - "Underfull \\hbox (badness 2735) in paragraph at lines 430--431\n", - "[]\\OT1/phv/m/n/10 a per-son or an or-ga-ni-za-tion that\n", - "\n", - "Underfull \\hbox (badness 1043) in paragraph at lines 435--436\n", - "\\OT1/phv/m/n/10 der-wa-ter too long and you can-not\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 417--441\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 447--447\n", - "[]\\OT1/phv/m/n/10 ecological \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 449--449\n", - "[]\\OT1/phv/m/n/10 effectiveness\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 452--452\n", - "[]\\OT1/phv/m/n/10 elaborate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 458--458\n", - "[]\\OT1/phv/m/n/10 embarrassment\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 441--463\n", - "[] \n", - "[25]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 463--463\n", - "[]\\OT1/phv/m/n/10 empirical \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 467--467\n", - "[]\\OT1/phv/m/n/10 encouragement\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 468--468\n", - "[]\\OT1/phv/m/n/10 encouraging \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 468--469\n", - "[]\\OT1/phv/m/n/10 that gives some-body sup-port,\n", - "\n", - "Underfull \\hbox (badness 1400) in paragraph at lines 470--471\n", - "[]\\OT1/phv/m/n/10 very large in size or amount and\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 472--472\n", - "[]\\OT1/phv/m/n/10 endorsement\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 472--473\n", - "[]\\OT1/phv/m/n/10 a pub-lic state-ment or ac-tion\n", - "\n", - "Underfull \\hbox (badness 4981) in paragraph at lines 472--473\n", - "\\OT1/phv/m/n/10 show-ing that you sup-port some-\n", - "\n", - "Underfull \\hbox (badness 1286) in paragraph at lines 473--474\n", - "\\OT1/phv/m/n/10 thing that is painful or un-pleas-ant\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 477--477\n", - "[]\\OT1/phv/m/n/10 engaging \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 488--489\n", - "[]\\OT1/phv/m/n/10 a state-ment show-ing that two\n", - "\n", - "Underfull \\hbox (badness 1924) in paragraph at lines 488--489\n", - "\\OT1/phv/m/n/10 amounts or val-ues are equal, for\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 463--489\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 492--492\n", - "[]\\OT1/phv/m/n/10 establishment\n", - "\n", - "Underfull \\hbox (badness 1067) in paragraph at lines 496--497\n", - "\\OT1/phv/m/n/10 with slow steady de-vel-op-ment and\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 502--503\n", - "[]\\OT1/phv/m/n/10 the act of pre-vent-ing some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 502--503\n", - "\\OT1/phv/m/n/10 body/something from en-ter-ing a\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 503--503\n", - "[]\\OT1/phv/m/n/10 exclusive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 504--504\n", - "[]\\OT1/phv/m/n/10 exclusively \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 511--511\n", - "[]\\OT1/phv/m/n/10 experimental \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 489--515\n", - "[] \n", - "[26]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 516--516\n", - "[]\\OT1/phv/m/n/10 explosive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1895) in paragraph at lines 526--527\n", - "\\OT1/phv/m/n/10 will hap-pen or have hap-pened to\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 527--527\n", - "[]\\OT1/phv/m/n/10 favourable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 3482) in paragraph at lines 534--535\n", - "[]\\OT1/phv/m/n/10 a de-vice con-tain-ing pa-per, sand,\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 515--538\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2698) in paragraph at lines 543--544\n", - "[]\\OT1/phv/m/n/10 to leave a per-son or place very\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 560--560\n", - "[]\\OT1/phv/m/n/10 frustrated \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1496) in paragraph at lines 560--561\n", - "[]\\OT1/phv/m/n/10 feeling an-noyed and im-pa-tient be-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 561--561\n", - "[]\\OT1/phv/m/n/10 frustrating \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1112) in paragraph at lines 561--562\n", - "\\OT1/phv/m/n/10 pa-tient be-cause you can-not do or\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 563--563\n", - "[]\\OT1/phv/m/n/10 functional \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 538--564\n", - "[] \n", - "[27]\n", - "Underfull \\hbox (badness 4621) in paragraph at lines 567--568\n", - "[]\\OT1/phv/m/n/10 the ac-tiv-ity of play-ing games of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 569--570\n", - "[]\\OT1/phv/m/n/10 a long, steady look at some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 570--571\n", - "[]\\OT1/phv/m/n/10 to look steadily at some-\n", - "\n", - "Underfull \\hbox (badness 6842) in paragraph at lines 570--571\n", - "\\OT1/phv/m/n/10 body/something for a long time,\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 575--576\n", - "[]\\OT1/phv/m/n/10 to look quickly at some-\n", - "\n", - "Underfull \\hbox (badness 4013) in paragraph at lines 582--583\n", - "[]\\OT1/phv/m/n/10 to take a strong hold of some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 564--583\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1215) in paragraph at lines 586--587\n", - "[]\\OT1/phv/m/n/10 a pat-tern of straight lines, usu-ally\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 591--592\n", - "[]\\OT1/phv/m/n/10 an act of hold-ing some-\n", - "\n", - "Underfull \\hbox (badness 1019) in paragraph at lines 599--600\n", - "[]\\OT1/phv/m/n/10 at an equal dis-tance be-tween two\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 601--602\n", - "[]\\OT1/phv/m/n/10 to stop; to make some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 583--606\n", - "[] \n", - "[28]\n", - "Underfull \\hbox (badness 1466) in paragraph at lines 607--608\n", - "[]\\OT1/phv/m/n/10 a state of peace-ful ex-is-tence and\n", - "\n", - "Underfull \\hbox (badness 1320) in paragraph at lines 617--617\n", - "[]\\OT1/phv/m/n/10 high-profile (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 628--628\n", - "[]\\OT1/phv/m/n/10 humanitarian \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 606--629\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 4940) in paragraph at lines 632--633\n", - "[]\\OT1/phv/m/n/10 the pro-cess of show-ing, prov-ing\n", - "\n", - "Underfull \\hbox (badness 5064) in paragraph at lines 633--633\n", - "[]\\OT1/phv/m/n/10 ideological \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 638--638\n", - "[]\\OT1/phv/m/n/10 immense \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 639--639\n", - "[]\\OT1/phv/m/n/10 imminent \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 640--640\n", - "[]\\OT1/phv/m/n/10 implementation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 642--642\n", - "[]\\OT1/phv/m/n/10 imprisonment\n", - "\n", - "Underfull \\hbox (badness 1478) in paragraph at lines 642--643\n", - "[]\\OT1/phv/m/n/10 the act of putting some-body in a\n", - "\n", - "Underfull \\hbox (badness 1297) in paragraph at lines 644--644\n", - "[]\\OT1/phv/m/n/10 inadequate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 645--645\n", - "[]\\OT1/phv/m/n/10 inappropriate \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 648--649\n", - "[]\\OT1/phv/m/n/10 the fact of in-clud-ing some-\n", - "\n", - "Underfull \\hbox (badness 1694) in paragraph at lines 648--649\n", - "\\OT1/phv/m/n/10 body/something; the fact of be-ing\n", - "\n", - "Underfull \\hbox (badness 1077) in paragraph at lines 649--650\n", - "[]\\OT1/phv/m/n/10 if you in-cur some-thing un-pleas-ant,\n", - "\n", - "Underfull \\hbox (badness 2772) in paragraph at lines 652--652\n", - "[]\\OT1/phv/m/n/10 indigenous \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 629--653\n", - "[] \n", - "[29]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 656--656\n", - "[]\\OT1/phv/m/n/10 infamous \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 660--660\n", - "[]\\OT1/phv/m/n/10 influential \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 670--671\n", - "[]\\OT1/phv/m/n/10 to look closely at some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 653--673\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1565) in paragraph at lines 673--674\n", - "\\OT1/phv/m/n/10 and an-i-mals tend to be-have in a\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 676--676\n", - "[]\\OT1/phv/m/n/10 instrumental \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 5064) in paragraph at lines 677--677\n", - "[]\\OT1/phv/m/n/10 insufficient \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 683--683\n", - "[]\\OT1/phv/m/n/10 integrated \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1803) in paragraph at lines 683--684\n", - "[]\\OT1/phv/m/n/10 in which many dif-fer-ent parts are\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 689--689\n", - "[]\\OT1/phv/m/n/10 intensive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 691--691\n", - "[]\\OT1/phv/m/n/10 interactive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1968) in paragraph at lines 696--697\n", - "[]\\OT1/phv/m/n/10 connected with the in-side part of\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 673--697\n", - "[] \n", - "[30]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 698--698\n", - "[]\\OT1/phv/m/n/10 intermediate \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 702--702\n", - "[]\\OT1/phv/m/n/10 intriguing \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 710--710\n", - "[]\\OT1/phv/m/n/10 irrelevant \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 711--712\n", - "[]\\OT1/phv/m/n/10 the act of sep-a-rat-ing some-\n", - "\n", - "Underfull \\hbox (badness 3323) in paragraph at lines 715--716\n", - "[]\\OT1/phv/m/n/10 that most peo-ple con-sider to be\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 697--723\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1968) in paragraph at lines 724--724\n", - "[]\\OT1/phv/m/n/10 large-scale (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1533) in paragraph at lines 725--726\n", - "\\OT1/phv/m/n/10 light that can be used for cut-ting\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 736--736\n", - "[]\\OT1/phv/m/n/10 legendary \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 738--738\n", - "[]\\OT1/phv/m/n/10 legislative \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 740--740\n", - "[]\\OT1/phv/m/n/10 legitimate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1024) in paragraph at lines 742--743\n", - "[]\\OT1/phv/m/n/10 sexually at-tracted to other women;\n", - "\n", - "Underfull \\hbox (badness 2744) in paragraph at lines 746--747\n", - "[]\\OT1/phv/m/n/10 willing to un-der-stand and re-spect\n", - "\n", - "Underfull \\hbox (badness 1237) in paragraph at lines 746--747\n", - "\\OT1/phv/m/n/10 other peo-ple's be-haviour, opin-ions,\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 723--747\n", - "[] \n", - "[31]\n", - "Underfull \\hbox (badness 5036) in paragraph at lines 765--765\n", - "[]\\OT1/phv/m/n/10 long-standing (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 766--766\n", - "[]\\OT1/phv/m/n/10 long-time (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 773--773\n", - "[]\\OT1/phv/m/n/10 magnetic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 747--775\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 4467) in paragraph at lines 777--778\n", - "[]\\OT1/phv/m/n/10 the ideas and opin-ions that are\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 778--778\n", - "[]\\OT1/phv/m/n/10 maintenance\n", - "\n", - "Underfull \\hbox (badness 4353) in paragraph at lines 780--780\n", - "[]\\OT1/phv/m/n/10 mandatory \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 782--783\n", - "[]\\OT1/phv/m/n/10 to con-trol or in-flu-ence some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 783--783\n", - "[]\\OT1/phv/m/n/10 manipulation\n", - "\n", - "Underfull \\hbox (badness 6575) in paragraph at lines 792--792\n", - "[]\\OT1/phv/m/n/10 mathematical \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1953) in paragraph at lines 796--796\n", - "[]\\OT1/phv/m/n/10 meaningful \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 775--798\n", - "[] \n", - "[32]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 798--798\n", - "[]\\OT1/phv/m/n/10 medieval \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 5359) in paragraph at lines 798--799\n", - "[]\\OT1/phv/m/n/10 connected with the Mid-dle Ages\n", - "\n", - "Underfull \\hbox (badness 3199) in paragraph at lines 802--803\n", - "[]\\OT1/phv/m/n/10 an ac-count writ-ten by some-body,\n", - "\n", - "Underfull \\hbox (badness 1253) in paragraph at lines 809--810\n", - "[]\\OT1/phv/m/n/10 to com-bine or make two or more\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 812--812\n", - "[]\\OT1/phv/m/n/10 methodology\n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 814--815\n", - "[]\\OT1/phv/m/n/10 the move-ment ev-ery year of large\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 798--819\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 820--821\n", - "[]\\OT1/phv/m/n/10 to re-duce some-thing, es-pe-cially\n", - "\n", - "Underfull \\hbox (badness 3826) in paragraph at lines 826--826\n", - "[]\\OT1/phv/m/n/10 misleading \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 831--831\n", - "[]\\OT1/phv/m/n/10 moderate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 839--839\n", - "[]\\OT1/phv/m/n/10 municipal \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1924) in paragraph at lines 839--840\n", - "[]\\OT1/phv/m/n/10 connected with or be-long-ing to a\n", - "\n", - "Underfull \\hbox (badness 1028) in paragraph at lines 840--841\n", - "[]\\OT1/phv/m/n/10 used to de-scribe feel-ings that two\n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 841--842\n", - "[]\\OT1/phv/m/n/10 used to in-tro-duce more ex-act and\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 819--842\n", - "[] \n", - "[33]\n", - "Underfull \\hbox (badness 3803) in paragraph at lines 842--842\n", - "[]\\OT1/phv/m/n/10 nationwide \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 845--846\n", - "[]\\OT1/phv/m/n/10 to fail to take care of some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 846--846\n", - "[]\\OT1/phv/m/n/10 neighbouring \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1824) in paragraph at lines 851--852\n", - "\\OT1/phv/m/n/10 i-ties that peo-ple ad-mire, such as\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 853--854\n", - "[]\\OT1/phv/m/n/10 to for-mally sug-gest that some-\n", - "\n", - "Underfull \\hbox (badness 1286) in paragraph at lines 854--855\n", - "[]\\OT1/phv/m/n/10 the act of sug-gest-ing or choos-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 856--856\n", - "[]\\OT1/phv/m/n/10 non-profit (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 857--857\n", - "[]\\OT1/phv/m/n/10 nonetheless \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 863--863\n", - "[]\\OT1/phv/m/n/10 notorious \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1221) in paragraph at lines 865--866\n", - "[]\\OT1/phv/m/n/10 a place where young chil-dren are\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 842--866\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 5064) in paragraph at lines 870--870\n", - "[]\\OT1/phv/m/n/10 occasional \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1424) in paragraph at lines 872--873\n", - "[]\\OT1/phv/m/n/10 the de-gree to which some-thing is\n", - "\n", - "Underfull \\hbox (badness 1412) in paragraph at lines 875--875\n", - "[]\\OT1/phv/m/n/10 operational \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2359) in paragraph at lines 875--876\n", - "[]\\OT1/phv/m/n/10 connected with the way in which\n", - "\n", - "Underfull \\hbox (badness 1082) in paragraph at lines 877--878\n", - "[]\\OT1/phv/m/n/10 connected with the sense of sight\n", - "\n", - "Underfull \\hbox (badness 1308) in paragraph at lines 880--880\n", - "[]\\OT1/phv/m/n/10 organizational \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1342) in paragraph at lines 892--893\n", - "[]\\OT1/phv/m/n/10 to watch some-body/something and\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 866--893\n", - "[] \n", - "[34]\n", - "Underfull \\hbox (badness 2538) in paragraph at lines 895--895\n", - "[]\\OT1/phv/m/n/10 overwhelming \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 2970) in paragraph at lines 900--900\n", - "[]\\OT1/phv/m/n/10 parliamentary \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 916--916\n", - "[]\\OT1/phv/m/n/10 persistent \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 893--917\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 920--920\n", - "[]\\OT1/phv/m/n/10 philosophical \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1442) in paragraph at lines 930--931\n", - "[]\\OT1/phv/m/n/10 to for-mally promise to give or do\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 933--934\n", - "[]\\OT1/phv/m/n/10 to move or make some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 933--934\n", - "\\OT1/phv/m/n/10 body/something move sud-denly\n", - "\n", - "Underfull \\hbox (badness 1584) in paragraph at lines 935--936\n", - "[]\\OT1/phv/m/n/10 the pro-cess of ques-tion-ing peo-ple\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 939--940\n", - "[]\\OT1/phv/m/n/10 to show some-body/something\n", - "\n", - "Underfull \\hbox (badness 4353) in paragraph at lines 939--940\n", - "\\OT1/phv/m/n/10 in a pic-ture; to de-scribe some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 917--940\n", - "[] \n", - "[35]\n", - "Underfull \\hbox (badness 1609) in paragraph at lines 951--951\n", - "[]\\OT1/phv/m/n/10 preliminary \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2781) in paragraph at lines 962--962\n", - "[]\\OT1/phv/m/n/10 prestigious \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 963--963\n", - "[]\\OT1/phv/m/n/10 presumably \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 940--964\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1048) in paragraph at lines 973--974\n", - "\\OT1/phv/m/n/10 se-cret or hid-den in-for-ma-tion about\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 980--980\n", - "[]\\OT1/phv/m/n/10 productive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 982--982\n", - "[]\\OT1/phv/m/n/10 profitable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 983--983\n", - "[]\\OT1/phv/m/n/10 profound \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 985--985\n", - "[]\\OT1/phv/m/n/10 prominent \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 4699) in paragraph at lines 986--987\n", - "[]\\OT1/phv/m/n/10 very ob-vi-ous, easy to no-tice or\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 964--987\n", - "[] \n", - "[36]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 994--994\n", - "[]\\OT1/phv/m/n/10 protective \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 997--997\n", - "[]\\OT1/phv/m/n/10 provincial \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 4726) in paragraph at lines 1000--1000\n", - "[]\\OT1/phv/m/n/10 psychiatric \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2042) in paragraph at lines 1006--1007\n", - "\\OT1/phv/m/n/10 in-for-ma-tion or ex-press-ing a doubt\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 987--1007\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1007--1031\n", - "[] \n", - "[37]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1032--1032\n", - "[]\\OT1/phv/m/n/10 reconstruction\n", - "\n", - "Underfull \\hbox (badness 1622) in paragraph at lines 1033--1034\n", - "[]\\OT1/phv/m/n/10 sound or pic-tures that have been\n", - "\n", - "Underfull \\hbox (badness 2293) in paragraph at lines 1038--1039\n", - "[]\\OT1/phv/m/n/10 shelter or pro-tec-tion from dan-ger,\n", - "\n", - "Underfull \\hbox (badness 2073) in paragraph at lines 1042--1043\n", - "\\OT1/phv/m/n/10 es-pe-cially one that has not been\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1044--1044\n", - "[]\\OT1/phv/m/n/10 regulatory \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1045--1045\n", - "[]\\OT1/phv/m/n/10 rehabilitation\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1031--1054\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1609) in paragraph at lines 1055--1056\n", - "\\OT1/phv/m/n/10 or re-mem-ber some-body/something,\n", - "\n", - "Underfull \\hbox (badness 2393) in paragraph at lines 1058--1059\n", - "[]\\OT1/phv/m/n/10 to be-gin some-thing again af-ter it\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1059--1059\n", - "[]\\OT1/phv/m/n/10 renowned \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1063--1063\n", - "[]\\OT1/phv/m/n/10 representation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1063--1064\n", - "[]\\OT1/phv/m/n/10 the act of pre-sent-ing some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1070--1070\n", - "[]\\OT1/phv/m/n/10 residential \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1137) in paragraph at lines 1070--1071\n", - "[]\\OT1/phv/m/n/10 suitable for liv-ing in; con-sist-ing of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1074--1074\n", - "[]\\OT1/phv/m/n/10 respective \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1314) in paragraph at lines 1074--1075\n", - "[]\\OT1/phv/m/n/10 belonging or re-lat-ing sep-a-rately to\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1075--1075\n", - "[]\\OT1/phv/m/n/10 respectively \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1054--1079\n", - "[] \n", - "[38]\n", - "Underfull \\hbox (badness 7344) in paragraph at lines 1088--1089\n", - "[]\\OT1/phv/m/n/10 to be-come, or to make some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1089--1089\n", - "[]\\OT1/phv/m/n/10 revolutionary \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 2980) in paragraph at lines 1096--1097\n", - "\\OT1/phv/m/n/10 some-body/something move in this\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1079--1104\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1110--1110\n", - "[]\\OT1/phv/m/n/10 scattered \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1111--1111\n", - "[]\\OT1/phv/m/n/10 sceptical \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1226) in paragraph at lines 1112--1113\n", - "[]\\OT1/phv/m/n/10 the op-por-tu-nity or abil-ity to do or\n", - "\n", - "Underfull \\hbox (badness 1533) in paragraph at lines 1114--1115\n", - "[]\\OT1/phv/m/n/10 to fas-ten one thing to an-other or\n", - "\n", - "Underfull \\hbox (badness 1448) in paragraph at lines 1123--1124\n", - "[]\\OT1/phv/m/n/10 affecting or in-volv-ing only a small\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1104--1124\n", - "[] \n", - "[39]\n", - "Underfull \\hbox (badness 3068) in paragraph at lines 1131--1132\n", - "\\OT1/phv/m/n/10 ar-gu-ment be-tween two peo-ple or\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1124--1149\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1161--1162\n", - "[]\\OT1/phv/m/n/10 only; not in-volv-ing some-\n", - "\n", - "Underfull \\hbox (badness 3291) in paragraph at lines 1163--1164\n", - "[]\\OT1/phv/m/n/10 support by one per-son or group\n", - "\n", - "Underfull \\hbox (badness 2134) in paragraph at lines 1171--1172\n", - "[]\\OT1/phv/m/n/10 to make some-thing such as time\n", - "\n", - "Underfull \\hbox (badness 1478) in paragraph at lines 1173--1173\n", - "[]\\OT1/phv/m/n/10 specialized \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1149--1175\n", - "[] \n", - "[40]\n", - "Underfull \\hbox (badness 1184) in paragraph at lines 1175--1176\n", - "[]\\OT1/phv/m/n/10 a small amount of some-thing that\n", - "\n", - "Underfull \\hbox (badness 1024) in paragraph at lines 1183--1184\n", - "\\OT1/phv/m/n/10 place or per-son, es-pe-cially a per-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1195--1195\n", - "[]\\OT1/phv/m/n/10 statistical \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1635) in paragraph at lines 1197--1198\n", - "\\OT1/phv/m/n/10 above the ground from which the\n", - "\n", - "Underfull \\hbox (badness 1057) in paragraph at lines 1197--1198\n", - "\\OT1/phv/m/n/10 that grows from this and sup-ports\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1175--1198\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1200--1201\n", - "[]\\OT1/phv/m/n/10 something that helps some-\n", - "\n", - "Underfull \\hbox (badness 5475) in paragraph at lines 1200--1201\n", - "\\OT1/phv/m/n/10 body/something to de-velop bet-ter\n", - "\n", - "Underfull \\hbox (badness 1052) in paragraph at lines 1204--1205\n", - "\\OT1/phv/m/n/10 be-cause great de-mands are be-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1211--1211\n", - "[]\\OT1/phv/m/n/10 structural \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2359) in paragraph at lines 1211--1212\n", - "[]\\OT1/phv/m/n/10 connected with the way in which\n", - "\n", - "Underfull \\hbox (badness 1281) in paragraph at lines 1212--1213\n", - "[]\\OT1/phv/m/n/10 to hit your foot against some-thing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1198--1218\n", - "[] \n", - "[41]\n", - "Underfull \\hbox (badness 3803) in paragraph at lines 1218--1218\n", - "[]\\OT1/phv/m/n/10 substantial \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1219--1219\n", - "[]\\OT1/phv/m/n/10 substantially \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1221--1222\n", - "[]\\OT1/phv/m/n/10 to take the place of some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1221--1222\n", - "\\OT1/phv/m/n/10 body/something else; to use\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1221--1222\n", - "\\OT1/phv/m/n/10 some-body/something in-stead of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1224--1224\n", - "[]\\OT1/phv/m/n/10 suburban \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2318) in paragraph at lines 1226--1226\n", - "[]\\OT1/phv/m/n/10 successive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1234--1235\n", - "[]\\OT1/phv/m/n/10 better in qual-ity than some-\n", - "\n", - "Underfull \\hbox (badness 1762) in paragraph at lines 1234--1235\n", - "\\OT1/phv/m/n/10 body/something else; greater than\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1235--1236\n", - "[]\\OT1/phv/m/n/10 to be in charge of some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1235--1236\n", - "\\OT1/phv/m/n/10 body/something and make sure\n", - "\n", - "Underfull \\hbox (badness 4441) in paragraph at lines 1235--1236\n", - "\\OT1/phv/m/n/10 that ev-ery-thing is done cor-rectly,\n", - "\n", - "Underfull \\hbox (badness 5175) in paragraph at lines 1237--1238\n", - "[]\\OT1/phv/m/n/10 a per-son who su-per-vises some-\n", - "\n", - "Underfull \\hbox (badness 7832) in paragraph at lines 1240--1240\n", - "[]\\OT1/phv/m/n/10 supportive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1240--1241\n", - "[]\\OT1/phv/m/n/10 encouraging some-body or giv-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1241--1241\n", - "[]\\OT1/phv/m/n/10 supposedly \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1218--1243\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1243--1243\n", - "[]\\OT1/phv/m/n/10 supreme \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 6575) in paragraph at lines 1252--1252\n", - "[]\\OT1/phv/m/n/10 suspicious \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 5189) in paragraph at lines 1252--1253\n", - "[]\\OT1/phv/m/n/10 feeling that some-body has done\n", - "\n", - "Underfull \\hbox (badness 1558) in paragraph at lines 1253--1254\n", - "[]\\OT1/phv/m/n/10 to pro-vide enough of what some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1257--1257\n", - "[]\\OT1/phv/m/n/10 symbolic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 5091) in paragraph at lines 1260--1260\n", - "[]\\OT1/phv/m/n/10 systematic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2173) in paragraph at lines 1262--1263\n", - "[]\\OT1/phv/m/n/10 the par-tic-u-lar method you use to\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1243--1265\n", - "[] \n", - "[42]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1277--1277\n", - "[]\\OT1/phv/m/n/10 theatrical \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1279--1279\n", - "[]\\OT1/phv/m/n/10 theoretical \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1282--1282\n", - "[]\\OT1/phv/m/n/10 thought-provoking\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1283--1283\n", - "[]\\OT1/phv/m/n/10 thoughtful \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1265--1289\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 6910) in paragraph at lines 1305--1306\n", - "[]\\OT1/phv/m/n/10 to pull some-thing be-hind some-\n", - "\n", - "Underfull \\hbox (badness 2158) in paragraph at lines 1305--1306\n", - "\\OT1/phv/m/n/10 body/something, usu-ally along the\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1309--1309\n", - "[]\\OT1/phv/m/n/10 transformation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1309--1310\n", - "[]\\OT1/phv/m/n/10 a com-plete change in some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1311--1311\n", - "[]\\OT1/phv/m/n/10 transmission\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1312--1312\n", - "[]\\OT1/phv/m/n/10 transparency\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1289--1313\n", - "[] \n", - "[43]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1331--1331\n", - "[]\\OT1/phv/m/n/10 undergraduate\n", - "\n", - "Underfull \\hbox (badness 7832) in paragraph at lines 1332--1332\n", - "[]\\OT1/phv/m/n/10 underlying \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1334--1334\n", - "[]\\OT1/phv/m/n/10 undoubtedly \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1313--1338\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1338--1338\n", - "[]\\OT1/phv/m/n/10 upcoming \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1359--1359\n", - "[]\\OT1/phv/m/n/10 versus \\OT1/phv/m/sl/10 (prepo-si-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1338--1365\n", - "[] \n", - "[44]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1373--1373\n", - "[]\\OT1/phv/m/n/10 vulnerable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1565) in paragraph at lines 1380--1381\n", - "[]\\OT1/phv/m/n/10 to make some-body/something less\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1386--1386\n", - "[]\\OT1/phv/m/n/10 whatsoever \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1365--1390\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1005) in paragraph at lines 1399--1400\n", - "\\OT1/phv/m/n/10 God or a god, by say-ing prayers,\n", - "\n", - "Underfull \\hbox (badness 4378) in paragraph at lines 1401--1401\n", - "[]\\OT1/phv/m/n/10 worthwhile \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 4132) in paragraph at lines 1402--1403\n", - "[]\\OT1/phv/m/n/10 having the qual-i-ties that de-serve\n", - ")\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1390--29\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1390--29\n", - "\n", - "\n", - "(/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_by_cefr.a\n", - "ux) )\n", - "(see the transcript file for additional information){/usr/share/texlive/texmf-d\n", - "ist/fonts/enc/dvips/base/8r.enc}\n", - "Output written on /home/jelle/wd/words/english/output/oxford_5000_exclusive_two\n", - "_column_by_cefr.pdf (44 pages, 201749 bytes).\n", - "Transcript written on /home/jelle/wd/words/english/output/oxford_5000_exclusive\n", - "_two_column_by_cefr.log.\n", - "Latexmk: Examining '/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_by_cefr.log'\n", - "=== TeX engine is 'pdfTeX'\n", - "Latexmk: applying rule 'pdflatex'...\n", - "This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2022/dev/Debian) (preloaded format=pdflatex)\n", - " restricted \\write18 enabled.\n", - "entering extended mode\n", - "(./oxford_5000_exclusive_two_column_by_cefr.tex\n", - "LaTeX2e <2021-11-15> patch level 1\n", - "L3 programming layer <2022-01-21>\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls\n", - "Document Class: article 2021/10/04 v1.4n Standard LaTeX document class\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty\n", - "(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty)))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/blindtext/blindtext.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/tools/xspace.sty))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/utf8x.def))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucs.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-global.def))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/supertabular/supertabular.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/psnfss/helvet.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1phv.fd)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def)\n", - "(/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_by_cefr.a\n", - "ux)\n", - "*geometry* driver: auto-detecting\n", - "*geometry* detected driver: pdftex\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucsencs.def)\n", - "(/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_by_cefr.t\n", - "oc) (/home/jelle/wd/words/english/output/../build/oxford_5000_exclusive_B2.tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1596) in paragraph at lines 3--4\n", - "\\OT1/phv/m/n/10 stance from the sur-face or space\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 6--6\n", - "[]\\OT1/phv/m/n/10 accidentally \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 7--7\n", - "[]\\OT1/phv/m/n/10 accommodate\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 15--15\n", - "[]\\OT1/phv/m/n/10 additionally \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 16--16\n", - "[]\\OT1/phv/m/n/10 adequate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 17--17\n", - "[]\\OT1/phv/m/n/10 adequately \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--18\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 19--19\n", - "[]\\OT1/phv/m/n/10 affordable \\OT1/phv/m/sl/10 (ad-jec-\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-32.def)\n", - "Underfull \\hbox (badness 2856) in paragraph at lines 25--26\n", - "[]\\OT1/phv/m/n/10 a ve-hi-cle with spe-cial equip-ment,\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 35--35\n", - "[]\\OT1/phv/m/n/10 appropriately \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1014) in paragraph at lines 37--38\n", - "[]\\OT1/phv/m/n/10 pictures and pho-tographs pre-pared\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 18--40\n", - "[] \n", - "[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 48--48\n", - "[]\\OT1/phv/m/n/10 automatic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 3302) in paragraph at lines 48--49\n", - "[]\\OT1/phv/m/n/10 having con-trols that work with-out\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 49--49\n", - "[]\\OT1/phv/m/n/10 automatically \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 3623) in paragraph at lines 50--51\n", - "[]\\OT1/phv/m/n/10 knowing some-thing; know-ing that\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 51--51\n", - "[]\\OT1/phv/m/n/10 awkward \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 53--53\n", - "[]\\OT1/phv/m/n/10 balanced \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 40--60\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 61--61\n", - "[]\\OT1/phv/m/n/10 beneficial \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 62--62\n", - "[]\\OT1/phv/m/n/10 beside \\OT1/phv/m/sl/10 (prepo-si-\n", - "\n", - "Underfull \\hbox (badness 2556) in paragraph at lines 62--63\n", - "[]\\OT1/phv/m/n/10 next to or at the side of some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 64--64\n", - "[]\\OT1/phv/m/n/10 besides \\OT1/phv/m/sl/10 (prepo-si-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 68--68\n", - "[]\\OT1/phv/m/n/10 biological \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1406) in paragraph at lines 79--80\n", - "[]\\OT1/phv/m/n/10 a per-son whose job is pre-sent-ing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 60--84\n", - "[] \n", - "[2]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 91--91\n", - "[]\\OT1/phv/m/n/10 championship\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 92--92\n", - "[]\\OT1/phv/m/n/10 charming \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 3657) in paragraph at lines 93--94\n", - "[]\\OT1/phv/m/n/10 an act of run-ning or driv-ing af-\n", - "\n", - "Underfull \\hbox (badness 2799) in paragraph at lines 94--95\n", - "[]\\OT1/phv/m/n/10 to run, drive, etc. af-ter some-\n", - "\n", - "Underfull \\hbox (badness 3229) in paragraph at lines 94--95\n", - "\\OT1/phv/m/n/10 body/something in or-der to catch\n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 106--107\n", - "\\OT1/phv/m/n/10 peo-ple can go for spe-cial med-i-cal\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 84--111\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 115--115\n", - "[]\\OT1/phv/m/n/10 comparative \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 120--120\n", - "[]\\OT1/phv/m/n/10 comprehensive\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 121--122\n", - "[]\\OT1/phv/m/n/10 to have some-body/something as\n", - "\n", - "Underfull \\hbox (badness 2150) in paragraph at lines 124--125\n", - "[]\\OT1/phv/m/n/10 building ma-te-rial that is made by\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 127--127\n", - "[]\\OT1/phv/m/n/10 consequently \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 128--128\n", - "[]\\OT1/phv/m/n/10 conservation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 129--129\n", - "[]\\OT1/phv/m/n/10 considerable \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 130--130\n", - "[]\\OT1/phv/m/n/10 considerably \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 131--131\n", - "[]\\OT1/phv/m/n/10 consistently \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 135--135\n", - "[]\\OT1/phv/m/n/10 consumption\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 136--136\n", - "[]\\OT1/phv/m/n/10 controversial \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 111--138\n", - "[] \n", - "[3]" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Latexmk: Missing input file 'oxford_5000_exclusive_two_column_by_cefr.toc' (or dependence on it) from following:\n", - " 'No file oxford_5000_exclusive_two_column_by_cefr.toc.'\n", - "Latexmk: Log file says output to '/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_by_cefr.pdf'\n", - "Rule 'pdflatex': File changes, etc:\n", - " Changed files, or newly in use since previous run(s):\n", - " '/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_by_cefr.aux'\n", - " '/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_by_cefr.toc'\n", - "------------\n", - "Run number 2 of rule 'pdflatex'\n", - "------------\n", - "------------\n", - "Running 'pdflatex -recorder -output-directory=\"/home/jelle/wd/words/english/output\" \"oxford_5000_exclusive_two_column_by_cefr.tex\"'\n", - "------------\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 138--138\n", - "[]\\OT1/phv/m/n/10 convenience\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 140--140\n", - "[]\\OT1/phv/m/n/10 conventional \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 5578) in paragraph at lines 142--142\n", - "[]\\OT1/phv/m/n/10 convincing \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1205) in paragraph at lines 142--143\n", - "[]\\OT1/phv/m/n/10 that makes some-body be-lieve that\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 138--167\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2103) in paragraph at lines 171--171\n", - "[]\\OT1/phv/m/n/10 democratic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 172--172\n", - "[]\\OT1/phv/m/n/10 demonstration\n", - "\n", - "Underfull \\hbox (badness 3039) in paragraph at lines 172--173\n", - "[]\\OT1/phv/m/n/10 a pub-lic meet-ing or a march (=\n", - "\n", - "Underfull \\hbox (badness 2103) in paragraph at lines 172--173\n", - "\\OT1/phv/m/n/10 an or-ga-nized walk by many peo-\n", - "\n", - "Underfull \\hbox (badness 5008) in paragraph at lines 174--174\n", - "[]\\OT1/phv/m/n/10 dependent \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 178--178\n", - "[]\\OT1/phv/m/n/10 desperately \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 180--180\n", - "[]\\OT1/phv/m/n/10 determination\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 182--183\n", - "[]\\OT1/phv/m/n/10 to be dif-fer-ent from some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 185--185\n", - "[]\\OT1/phv/m/n/10 disagreement\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 187--187\n", - "[]\\OT1/phv/m/n/10 disappointment\n", - "\n", - "Underfull \\hbox (badness 1997) in paragraph at lines 187--188\n", - "[]\\OT1/phv/m/n/10 the feel-ing of be-ing sad be-cause\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 167--188\n", - "[] \n", - "[4]\n", - "Underfull \\hbox (badness 1635) in paragraph at lines 188--189\n", - "[]\\OT1/phv/m/n/10 to try to pre-vent some-thing or to\n", - "\n", - "Underfull \\hbox (badness 1789) in paragraph at lines 189--190\n", - "[]\\OT1/phv/m/n/10 a con-di-tion or ill-ness that causes\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 201--201\n", - "[]\\OT1/phv/m/n/10 dominant \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 204--204\n", - "[]\\OT1/phv/m/n/10 downtown \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 207--207\n", - "[]\\OT1/phv/m/n/10 dramatically \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 188--216\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 220--220\n", - "[]\\OT1/phv/m/n/10 elementary \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 224--224\n", - "[]\\OT1/phv/m/n/10 emotionally \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 226--226\n", - "[]\\OT1/phv/m/n/10 enjoyable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 228--228\n", - "[]\\OT1/phv/m/n/10 entrepreneur\n", - "\n", - "Underfull \\hbox (badness 1635) in paragraph at lines 228--229\n", - "\\OT1/phv/m/n/10 when this in-volves tak-ing fi-nan-cial\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 230--231\n", - "[]\\OT1/phv/m/n/10 to pro-vide your-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 230--231\n", - "\\OT1/phv/m/n/10 self/somebody/something with the\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 231--231\n", - "[]\\OT1/phv/m/n/10 equivalent \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1092) in paragraph at lines 234--235\n", - "[]\\OT1/phv/m/n/10 when a vol-cano erupts or burn-ing\n", - "\n", - "Underfull \\hbox (badness 1552) in paragraph at lines 234--235\n", - "\\OT1/phv/m/n/10 rocks, smoke, etc. erupt or are\n", - "\n", - "Underfull \\hbox (badness 2443) in paragraph at lines 235--236\n", - "\\OT1/phv/m/n/10 por-tant or ba-sic na-ture of some-\n", - "\n", - "Underfull \\hbox (badness 1924) in paragraph at lines 237--238\n", - "[]\\OT1/phv/m/n/10 connected with or be-long-ing to a\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 216--238\n", - "[] \n", - "[5]\n", - "Underfull \\hbox (badness 6608) in paragraph at lines 240--241\n", - "[]\\OT1/phv/m/n/10 the slow steady de-vel-op-ment of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 244--244\n", - "[]\\OT1/phv/m/n/10 excessive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 255--255\n", - "[]\\OT1/phv/m/n/10 extensive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 256--256\n", - "[]\\OT1/phv/m/n/10 extensively \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 238--262\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2486) in paragraph at lines 268--269\n", - "[]\\OT1/phv/m/n/10 a small de-vice con-tain-ing pow-der\n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 272--273\n", - "[]\\OT1/phv/m/n/10 having warm or lov-ing feel-ings for\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 280--280\n", - "[]\\OT1/phv/m/n/10 fortunate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 262--285\n", - "[] \n", - "[6]\n", - "Underfull \\hbox (badness 1308) in paragraph at lines 294--294\n", - "[]\\OT1/phv/m/n/10 fundamentally \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1418) in paragraph at lines 298--299\n", - "[]\\OT1/phv/m/n/10 the fact of be-ing male or fe-male,\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 310--310\n", - "[]\\OT1/phv/m/n/10 gorgeous \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 285--312\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 320--320\n", - "[]\\OT1/phv/m/n/10 headquarters\n", - "\n", - "Underfull \\hbox (badness 2293) in paragraph at lines 325--326\n", - "[]\\OT1/phv/m/n/10 a plant whose leaves, flow-ers or\n", - "\n", - "Underfull \\hbox (badness 1565) in paragraph at lines 325--326\n", - "\\OT1/phv/m/n/10 pars-ley, mint and oregano are all\n", - "\n", - "Underfull \\hbox (badness 3039) in paragraph at lines 327--328\n", - "\\OT1/phv/m/n/10 tances, es-pe-cially one con-nect-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 331--331\n", - "[]\\OT1/phv/m/n/10 homeless \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 312--334\n", - "[] \n", - "[7]\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 337--338\n", - "[]\\OT1/phv/m/n/10 a small sym-bol on a com-puter or\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 348--348\n", - "[]\\OT1/phv/m/n/10 independence\n", - "\n", - "Underfull \\hbox (badness 1389) in paragraph at lines 350--351\n", - "[]\\OT1/phv/m/n/10 a re-mark or sign that shows that\n", - "\n", - "Underfull \\hbox (badness 5359) in paragraph at lines 350--351\n", - "\\OT1/phv/m/n/10 some-thing is hap-pen-ing or what\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 351--351\n", - "[]\\OT1/phv/m/n/10 inevitable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 356--356\n", - "[]\\OT1/phv/m/n/10 infrastructure\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 334--357\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1062) in paragraph at lines 359--360\n", - "[]\\OT1/phv/m/n/10 coloured liq-uid for writ-ing, draw-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 361--361\n", - "[]\\OT1/phv/m/n/10 innovative \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 5064) in paragraph at lines 369--369\n", - "[]\\OT1/phv/m/n/10 intellectual \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 372--372\n", - "[]\\OT1/phv/m/n/10 interpretation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 377--378\n", - "[]\\OT1/phv/m/n/10 to sep-a-rate some-body/something\n", - "\n", - "Underfull \\hbox (badness 7168) in paragraph at lines 377--378\n", - "\\OT1/phv/m/n/10 phys-i-cally or so-cially from other\n", - "\n", - "Underfull \\hbox (badness 1742) in paragraph at lines 384--385\n", - "[]\\OT1/phv/m/n/10 the work of col-lect-ing and writ-ing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 357--385\n", - "[] \n", - "[8]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 385--408\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 410--410\n", - "[]\\OT1/phv/m/n/10 manufacturing\n", - "\n", - "Underfull \\hbox (badness 1082) in paragraph at lines 424--424\n", - "[]\\OT1/phv/m/n/10 memorable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1009) in paragraph at lines 424--425\n", - "[]\\OT1/phv/m/n/10 worth re-mem-ber-ing or easy to re-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 427--427\n", - "[]\\OT1/phv/m/n/10 miserable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 408--433\n", - "[] \n", - "[9]\n", - "Underfull \\hbox (badness 5548) in paragraph at lines 438--439\n", - "[]\\OT1/phv/m/n/10 the rea-son why some-body does\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 445--446\n", - "[]\\OT1/phv/m/n/10 a short dis-tance from some-\n", - "\n", - "Underfull \\hbox (badness 3158) in paragraph at lines 448--449\n", - "[]\\OT1/phv/m/n/10 formal dis-cus-sion be-tween peo-ple\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 458--459\n", - "[]\\OT1/phv/m/n/10 a per-son who watches some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 433--460\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 467--467\n", - "[]\\OT1/phv/m/n/10 optimistic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 475--475\n", - "[]\\OT1/phv/m/n/10 overseas \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 460--483\n", - "[] \n", - "[10]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 485--485\n", - "[]\\OT1/phv/m/n/10 part-time (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2772) in paragraph at lines 488--488\n", - "[]\\OT1/phv/m/n/10 passionate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 3758) in paragraph at lines 495--496\n", - "[]\\OT1/phv/m/n/10 to un-der-stand or think of some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 497--497\n", - "[]\\OT1/phv/m/n/10 permanently \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1082) in paragraph at lines 499--500\n", - "[]\\OT1/phv/m/n/10 used to show that you are dis-ap-\n", - "\n", - "Underfull \\hbox (badness 2229) in paragraph at lines 507--507\n", - "[]\\OT1/phv/m/n/10 predictable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1454) in paragraph at lines 508--509\n", - "[]\\OT1/phv/m/n/10 a greater in-ter-est in or de-sire for\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 508--509\n", - "\\OT1/phv/m/n/10 some-body/something than some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 483--509\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 514--514\n", - "[]\\OT1/phv/m/n/10 probable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 516--516\n", - "[]\\OT1/phv/m/n/10 programming\n", - "\n", - "Underfull \\hbox (badness 1371) in paragraph at lines 516--517\n", - "[]\\OT1/phv/m/n/10 the pro-cess of writ-ing and test-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 519--519\n", - "[]\\OT1/phv/m/n/10 promising \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2626) in paragraph at lines 521--522\n", - "[]\\OT1/phv/m/n/10 to make some-body de-cide to do\n", - "\n", - "Underfull \\hbox (badness 1117) in paragraph at lines 521--522\n", - "\\OT1/phv/m/n/10 some-thing; to cause some-thing to\n", - "\n", - "Underfull \\hbox (badness 1221) in paragraph at lines 523--524\n", - "\\OT1/phv/m/n/10 things, that forms the struc-ture of\n", - "\n", - "Underfull \\hbox (badness 5064) in paragraph at lines 525--525\n", - "[]\\OT1/phv/m/n/10 psychological \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 532--532\n", - "[]\\OT1/phv/m/n/10 questionnaire\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 509--533\n", - "[] \n", - "[11]\n", - "Underfull \\hbox (badness 1521) in paragraph at lines 536--537\n", - "[]\\OT1/phv/m/n/10 a per-son who be-lieves that some\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 542--542\n", - "[]\\OT1/phv/m/n/10 reasonably \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 533--551\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1221) in paragraph at lines 555--556\n", - "[]\\OT1/phv/m/n/10 to con-trol some-thing by means of\n", - "\n", - "Underfull \\hbox (badness 2261) in paragraph at lines 556--557\n", - "[]\\OT1/phv/m/n/10 to make a feel-ing, an idea, etc.\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 560--560\n", - "[]\\OT1/phv/m/n/10 remarkably \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 571--571\n", - "[]\\OT1/phv/m/n/10 ridiculous \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 551--576\n", - "[] \n", - "[12]\n", - "Underfull \\hbox (badness 1199) in paragraph at lines 581--582\n", - "[]\\OT1/phv/m/n/10 the state or pro-cess of be-ing de-\n", - "\n", - "Underfull \\hbox (badness 1014) in paragraph at lines 584--585\n", - "[]\\OT1/phv/m/n/10 behaviour or an event that peo-ple\n", - "\n", - "Underfull \\hbox (badness 1248) in paragraph at lines 590--591\n", - "[]\\OT1/phv/m/n/10 a mark, a cut or an in-jury made\n", - "\n", - "Underfull \\hbox (badness 1533) in paragraph at lines 594--595\n", - "[]\\OT1/phv/m/n/10 a class at a uni-ver-sity or col-lege\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 599--599\n", - "[]\\OT1/phv/m/n/10 shocking \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 576--600\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 8056) in paragraph at lines 601--601\n", - "[]\\OT1/phv/m/n/10 short-term (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2894) in paragraph at lines 602--603\n", - "\\OT1/phv/m/n/10 of the peo-ple or things that are\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 610--610\n", - "[]\\OT1/phv/m/n/10 so-called (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 613--613\n", - "[]\\OT1/phv/m/n/10 sophisticated \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 600--624\n", - "[] \n", - "[13]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 626--626\n", - "[]\\OT1/phv/m/n/10 spokesperson\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 627--627\n", - "[]\\OT1/phv/m/n/10 spokeswoman\n", - "\n", - "Underfull \\hbox (badness 3199) in paragraph at lines 635--636\n", - "\\OT1/phv/m/n/10 come more ac-tive; to en-cour-age\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 641--641\n", - "[]\\OT1/phv/m/n/10 subsequently \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 644--644\n", - "[]\\OT1/phv/m/n/10 sufficient \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 624--652\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 656--657\n", - "[]\\OT1/phv/m/n/10 to fas-ten a tag onto some-\n", - "\n", - "Underfull \\hbox (badness 2027) in paragraph at lines 658--659\n", - "[]\\OT1/phv/m/n/10 to hit some-body/something quickly\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 659--659\n", - "[]\\OT1/phv/m/n/10 technological \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 2088) in paragraph at lines 661--662\n", - "[]\\OT1/phv/m/n/10 a build-ing used for re-li-gious wor-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 662--662\n", - "[]\\OT1/phv/m/n/10 temporarily \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1831) in paragraph at lines 668--669\n", - "[]\\OT1/phv/m/n/10 to make some-body feel ex-tremely\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 673--674\n", - "[]\\OT1/phv/m/n/10 the ac-tiv-ity of test-ing some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 673--674\n", - "\\OT1/phv/m/n/10 body/something in or-der to find\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 652--677\n", - "[] \n", - "[14]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 678--678\n", - "[]\\OT1/phv/m/n/10 thorough \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 686--687\n", - "[]\\OT1/phv/m/n/10 to find or dis-cover some-\n", - "\n", - "Underfull \\hbox (badness 2809) in paragraph at lines 687--688\n", - "[]\\OT1/phv/m/n/10 the ac-tiv-ity of buy-ing and sell-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 692--692\n", - "[]\\OT1/phv/m/n/10 transportation\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 677--701\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 7116) in paragraph at lines 702--702\n", - "[]\\OT1/phv/m/n/10 unacceptable \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 5592) in paragraph at lines 705--706\n", - "[]\\OT1/phv/m/n/10 to make your-self re-spon-si-ble for\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 710--710\n", - "[]\\OT1/phv/m/n/10 universal \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1014) in paragraph at lines 713--714\n", - "[]\\OT1/phv/m/n/10 not use-ful; not do-ing or achiev-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 720--720\n", - "[]\\OT1/phv/m/n/10 voluntary \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 721--722\n", - "[]\\OT1/phv/m/n/10 the ac-tion of choos-ing some-\n", - "\n", - "Underfull \\hbox (badness 3758) in paragraph at lines 721--722\n", - "\\OT1/phv/m/n/10 body/something in an elec-tion or\n", - "\n", - "Underfull \\hbox (badness 1092) in paragraph at lines 726--727\n", - "[]\\OT1/phv/m/n/10 the gen-eral health, hap-pi-ness and\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 701--728\n", - "[] \n", - "[15])\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 728--27\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 728--27\n", - "\n", - "(/home/jelle/wd/words/english/output/../build/oxford_5000_exclusive_C1.tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 7186) in paragraph at lines 14--14\n", - "[]\\OT1/phv/m/n/10 accessible \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 15--15\n", - "[]\\OT1/phv/m/n/10 accomplishment\n", - "\n", - "Underfull \\hbox (badness 4467) in paragraph at lines 16--17\n", - "[]\\OT1/phv/m/n/10 according to a rule or the way\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 17--17\n", - "[]\\OT1/phv/m/n/10 accordingly \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 18--18\n", - "[]\\OT1/phv/m/n/10 accountability\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--19\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 21--21\n", - "[]\\OT1/phv/m/n/10 accumulation\n", - "\n", - "Underfull \\hbox (badness 1184) in paragraph at lines 30--31\n", - "[]\\OT1/phv/m/n/10 the ac-tion or pro-cess of chang-ing\n", - "\n", - "Underfull \\hbox (badness 2469) in paragraph at lines 35--35\n", - "[]\\OT1/phv/m/n/10 administrative \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 36--36\n", - "[]\\OT1/phv/m/n/10 administrator\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 19--42\n", - "[] \n", - "[16]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 43--43\n", - "[]\\OT1/phv/m/n/10 aesthetic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2035) in paragraph at lines 47--47\n", - "[]\\OT1/phv/m/n/10 agricultural \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 42--66\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 78--78\n", - "[]\\OT1/phv/m/n/10 appealing \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 3623) in paragraph at lines 80--81\n", - "[]\\OT1/phv/m/n/10 to show your ap-proval of some-\n", - "\n", - "Underfull \\hbox (badness 6910) in paragraph at lines 80--81\n", - "\\OT1/phv/m/n/10 body/something by clap-ping your\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 81--81\n", - "[]\\OT1/phv/m/n/10 applicable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 85--85\n", - "[]\\OT1/phv/m/n/10 architectural \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 66--87\n", - "[] \n", - "[17]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 89--90\n", - "[]\\OT1/phv/m/n/10 to pro-vide weapons for your-\n", - "\n", - "Underfull \\hbox (badness 2393) in paragraph at lines 89--90\n", - "\\OT1/phv/m/n/10 self/somebody in or-der to fight a\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 95--95\n", - "[]\\OT1/phv/m/n/10 assassination\n", - "\n", - "Underfull \\hbox (badness 3792) in paragraph at lines 96--97\n", - "[]\\OT1/phv/m/n/10 the crime of at-tack-ing some-body\n", - "\n", - "Underfull \\hbox (badness 1490) in paragraph at lines 100--101\n", - "[]\\OT1/phv/m/n/10 to state clearly and def-i-nitely that\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 108--109\n", - "[]\\OT1/phv/m/n/10 a qual-ity or fea-ture of some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 87--110\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1024) in paragraph at lines 110--111\n", - "[]\\OT1/phv/m/n/10 an of-fi-cial ex-am-i-na-tion of busi-ness\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 111--111\n", - "[]\\OT1/phv/m/n/10 authentic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1342) in paragraph at lines 121--122\n", - "\\OT1/phv/m/n/10 usu-ally in se-cret; an oc-ca-sion on\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 110--135\n", - "[] \n", - "[18]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 135--135\n", - "[]\\OT1/phv/m/n/10 beneath \\OT1/phv/m/sl/10 (prepo-si-\n", - "\n", - "Underfull \\hbox (badness 7168) in paragraph at lines 135--136\n", - "[]\\OT1/phv/m/n/10 in or to a lower po-si-tion than\n", - "\n", - "Underfull \\hbox (badness 1194) in paragraph at lines 135--136\n", - "\\OT1/phv/m/n/10 some-body/something; un-der some-\n", - "\n", - "Underfull \\hbox (badness 6316) in paragraph at lines 137--138\n", - "[]\\OT1/phv/m/n/10 to give in-for-ma-tion about some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 148--149\n", - "[]\\OT1/phv/m/n/10 to ask God to pro-tect some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 135--157\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 160--160\n", - "[]\\OT1/phv/m/n/10 breakthrough\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 168--169\n", - "\\OT1/phv/m/n/10 or pro-tects some-body/something\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 157--179\n", - "[] \n", - "[19]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 179--179\n", - "[]\\OT1/phv/m/n/10 capitalist \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1509) in paragraph at lines 196--197\n", - "[]\\OT1/phv/m/n/10 a writ-ten state-ment de-scrib-ing the\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 179--207\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 207--207\n", - "[]\\OT1/phv/m/n/10 classification\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 208--209\n", - "[]\\OT1/phv/m/n/10 to hold on tightly to some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 215--215\n", - "[]\\OT1/phv/m/n/10 cognitive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 218--218\n", - "[]\\OT1/phv/m/n/10 collaboration\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 219--219\n", - "[]\\OT1/phv/m/n/10 collective \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1924) in paragraph at lines 221--222\n", - "[]\\OT1/phv/m/n/10 connected with or be-long-ing to a\n", - "\n", - "Underfull \\hbox (badness 4673) in paragraph at lines 224--225\n", - "[]\\OT1/phv/m/n/10 to stop some-thing un-pleas-ant or\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 227--227\n", - "[]\\OT1/phv/m/n/10 commentator\n", - "\n", - "Underfull \\hbox (badness 1371) in paragraph at lines 227--228\n", - "[]\\OT1/phv/m/n/10 a per-son who de-scribes an event\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 229--229\n", - "[]\\OT1/phv/m/n/10 commissioner\n", - "\n", - "Underfull \\hbox (badness 2970) in paragraph at lines 231--231\n", - "[]\\OT1/phv/m/n/10 communist \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 207--232\n", - "[] \n", - "[20]\n", - "Underfull \\hbox (badness 3826) in paragraph at lines 236--236\n", - "[]\\OT1/phv/m/n/10 compelling \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 238--238\n", - "[]\\OT1/phv/m/n/10 compensation\n", - "\n", - "Underfull \\hbox (badness 2418) in paragraph at lines 238--239\n", - "[]\\OT1/phv/m/n/10 something, es-pe-cially money, that\n", - "\n", - "Underfull \\hbox (badness 6542) in paragraph at lines 240--240\n", - "[]\\OT1/phv/m/n/10 competent \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2027) in paragraph at lines 248--249\n", - "[]\\OT1/phv/m/n/10 an agree-ment made be-tween two\n", - "\n", - "Underfull \\hbox (badness 5274) in paragraph at lines 254--255\n", - "[]\\OT1/phv/m/n/10 an un-der-stand-ing or a be-lief of\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 232--255\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 259--259\n", - "[]\\OT1/phv/m/n/10 configuration\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 263--263\n", - "[]\\OT1/phv/m/n/10 confrontation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 265--265\n", - "[]\\OT1/phv/m/n/10 congregation\n", - "\n", - "Underfull \\hbox (badness 2088) in paragraph at lines 266--266\n", - "[]\\OT1/phv/m/n/10 congressional \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 2088) in paragraph at lines 268--269\n", - "\\OT1/phv/m/n/10 whether your ac-tions are right or\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 269--269\n", - "[]\\OT1/phv/m/n/10 consciousness\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 255--276\n", - "[] \n", - "[21]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 280--280\n", - "[]\\OT1/phv/m/n/10 constitutional \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 291--291\n", - "[]\\OT1/phv/m/n/10 contradiction\n", - "\n", - "Underfull \\hbox (badness 1092) in paragraph at lines 294--295\n", - "\\OT1/phv/m/n/10 talks on a ra-dio or tele-vi-sion pro-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 276--301\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1062) in paragraph at lines 307--308\n", - "\\OT1/phv/m/n/10 re-lates with an-other, the facts are\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 310--310\n", - "[]\\OT1/phv/m/n/10 correspondence\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 311--311\n", - "[]\\OT1/phv/m/n/10 correspondent\n", - "\n", - "Underfull \\hbox (badness 1337) in paragraph at lines 315--316\n", - "[]\\OT1/phv/m/n/10 costing a lot of money, es-pe-cially\n", - "\n", - "Underfull \\hbox (badness 1019) in paragraph at lines 319--320\n", - "[]\\OT1/phv/m/n/10 to re-ply to some-body by try-ing to\n", - "\n", - "Underfull \\hbox (badness 4765) in paragraph at lines 320--321\n", - "[]\\OT1/phv/m/n/10 a per-son or thing that has the\n", - "\n", - "Underfull \\hbox (badness 1675) in paragraph at lines 320--321\n", - "\\OT1/phv/m/n/10 body/something else in a dif-fer-ent\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 321--321\n", - "[]\\OT1/phv/m/n/10 countless \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 301--324\n", - "[] \n", - "[22]\n", - "Underfull \\hbox (badness 3323) in paragraph at lines 324--325\n", - "[]\\OT1/phv/m/n/10 to make some-thing us-ing spe-cial\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 343--343\n", - "[]\\OT1/phv/m/n/10 damaging \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 347--347\n", - "[]\\OT1/phv/m/n/10 decision-making\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 324--348\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 350--350\n", - "[]\\OT1/phv/m/n/10 dedicated \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1087) in paragraph at lines 353--354\n", - "[]\\OT1/phv/m/n/10 to have a par-tic-u-lar opin-ion about\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 356--356\n", - "[]\\OT1/phv/m/n/10 defensive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 356--357\n", - "[]\\OT1/phv/m/n/10 protecting some-body/something\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 365--366\n", - "[]\\OT1/phv/m/n/10 to strongly crit-i-cize some-\n", - "\n", - "Underfull \\hbox (badness 4467) in paragraph at lines 365--366\n", - "\\OT1/phv/m/n/10 body/something that you think is\n", - "\n", - "Underfull \\hbox (badness 1264) in paragraph at lines 366--367\n", - "[]\\OT1/phv/m/n/10 containing a lot of peo-ple, things,\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 369--370\n", - "[]\\OT1/phv/m/n/10 to show an im-age of some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 348--371\n", - "[] \n", - "[23]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 377--378\n", - "[]\\OT1/phv/m/n/10 to say of-fi-cially that some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 377--378\n", - "\\OT1/phv/m/n/10 body/something has a par-tic-u-lar\n", - "\n", - "Underfull \\hbox (badness 6842) in paragraph at lines 377--378\n", - "\\OT1/phv/m/n/10 char-ac-ter or name; to de-scribe\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 378--378\n", - "[]\\OT1/phv/m/n/10 desirable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2951) in paragraph at lines 380--380\n", - "[]\\OT1/phv/m/n/10 destructive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 371--395\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 3138) in paragraph at lines 396--397\n", - "[]\\OT1/phv/m/n/10 to be-come smaller, weaker, etc.;\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 399--399\n", - "[]\\OT1/phv/m/n/10 diplomatic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1490) in paragraph at lines 399--400\n", - "[]\\OT1/phv/m/n/10 connected with man-ag-ing re-la-tions\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 401--401\n", - "[]\\OT1/phv/m/n/10 disastrous \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1845) in paragraph at lines 403--404\n", - "\\OT1/phv/m/n/10 to leave the po-lice or the armed\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 408--408\n", - "[]\\OT1/phv/m/n/10 discrimination\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 410--411\n", - "[]\\OT1/phv/m/n/10 to take the place of some-\n", - "\n", - "Underfull \\hbox (badness 1377) in paragraph at lines 413--414\n", - "[]\\OT1/phv/m/n/10 an ar-gu-ment be-tween two peo-ple,\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 395--417\n", - "[] \n", - "[24]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 419--419\n", - "[]\\OT1/phv/m/n/10 distinctive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1521) in paragraph at lines 420--421\n", - "[]\\OT1/phv/m/n/10 to change the shape, ap-pear-ance\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 423--423\n", - "[]\\OT1/phv/m/n/10 disturbing \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 424--425\n", - "[]\\OT1/phv/m/n/10 to make some-body/something\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 427--427\n", - "[]\\OT1/phv/m/n/10 documentation\n", - "\n", - "Underfull \\hbox (badness 2735) in paragraph at lines 430--431\n", - "[]\\OT1/phv/m/n/10 a per-son or an or-ga-ni-za-tion that\n", - "\n", - "Underfull \\hbox (badness 1043) in paragraph at lines 435--436\n", - "\\OT1/phv/m/n/10 der-wa-ter too long and you can-not\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 417--441\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 447--447\n", - "[]\\OT1/phv/m/n/10 ecological \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 449--449\n", - "[]\\OT1/phv/m/n/10 effectiveness\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 452--452\n", - "[]\\OT1/phv/m/n/10 elaborate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 458--458\n", - "[]\\OT1/phv/m/n/10 embarrassment\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 441--463\n", - "[] \n", - "[25]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 463--463\n", - "[]\\OT1/phv/m/n/10 empirical \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 467--467\n", - "[]\\OT1/phv/m/n/10 encouragement\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 468--468\n", - "[]\\OT1/phv/m/n/10 encouraging \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 468--469\n", - "[]\\OT1/phv/m/n/10 that gives some-body sup-port,\n", - "\n", - "Underfull \\hbox (badness 1400) in paragraph at lines 470--471\n", - "[]\\OT1/phv/m/n/10 very large in size or amount and\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 472--472\n", - "[]\\OT1/phv/m/n/10 endorsement\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 472--473\n", - "[]\\OT1/phv/m/n/10 a pub-lic state-ment or ac-tion\n", - "\n", - "Underfull \\hbox (badness 4981) in paragraph at lines 472--473\n", - "\\OT1/phv/m/n/10 show-ing that you sup-port some-\n", - "\n", - "Underfull \\hbox (badness 1286) in paragraph at lines 473--474\n", - "\\OT1/phv/m/n/10 thing that is painful or un-pleas-ant\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 477--477\n", - "[]\\OT1/phv/m/n/10 engaging \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 488--489\n", - "[]\\OT1/phv/m/n/10 a state-ment show-ing that two\n", - "\n", - "Underfull \\hbox (badness 1924) in paragraph at lines 488--489\n", - "\\OT1/phv/m/n/10 amounts or val-ues are equal, for\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 463--489\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 492--492\n", - "[]\\OT1/phv/m/n/10 establishment\n", - "\n", - "Underfull \\hbox (badness 1067) in paragraph at lines 496--497\n", - "\\OT1/phv/m/n/10 with slow steady de-vel-op-ment and\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 502--503\n", - "[]\\OT1/phv/m/n/10 the act of pre-vent-ing some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 502--503\n", - "\\OT1/phv/m/n/10 body/something from en-ter-ing a\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 503--503\n", - "[]\\OT1/phv/m/n/10 exclusive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 504--504\n", - "[]\\OT1/phv/m/n/10 exclusively \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 511--511\n", - "[]\\OT1/phv/m/n/10 experimental \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 489--515\n", - "[] \n", - "[26]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 516--516\n", - "[]\\OT1/phv/m/n/10 explosive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1895) in paragraph at lines 526--527\n", - "\\OT1/phv/m/n/10 will hap-pen or have hap-pened to\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 527--527\n", - "[]\\OT1/phv/m/n/10 favourable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 3482) in paragraph at lines 534--535\n", - "[]\\OT1/phv/m/n/10 a de-vice con-tain-ing pa-per, sand,\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 515--538\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2698) in paragraph at lines 543--544\n", - "[]\\OT1/phv/m/n/10 to leave a per-son or place very\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 560--560\n", - "[]\\OT1/phv/m/n/10 frustrated \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1496) in paragraph at lines 560--561\n", - "[]\\OT1/phv/m/n/10 feeling an-noyed and im-pa-tient be-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 561--561\n", - "[]\\OT1/phv/m/n/10 frustrating \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1112) in paragraph at lines 561--562\n", - "\\OT1/phv/m/n/10 pa-tient be-cause you can-not do or\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 563--563\n", - "[]\\OT1/phv/m/n/10 functional \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 538--564\n", - "[] \n", - "[27]\n", - "Underfull \\hbox (badness 4621) in paragraph at lines 567--568\n", - "[]\\OT1/phv/m/n/10 the ac-tiv-ity of play-ing games of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 569--570\n", - "[]\\OT1/phv/m/n/10 a long, steady look at some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 570--571\n", - "[]\\OT1/phv/m/n/10 to look steadily at some-\n", - "\n", - "Underfull \\hbox (badness 6842) in paragraph at lines 570--571\n", - "\\OT1/phv/m/n/10 body/something for a long time,\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 575--576\n", - "[]\\OT1/phv/m/n/10 to look quickly at some-\n", - "\n", - "Underfull \\hbox (badness 4013) in paragraph at lines 582--583\n", - "[]\\OT1/phv/m/n/10 to take a strong hold of some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 564--583\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1215) in paragraph at lines 586--587\n", - "[]\\OT1/phv/m/n/10 a pat-tern of straight lines, usu-ally\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 591--592\n", - "[]\\OT1/phv/m/n/10 an act of hold-ing some-\n", - "\n", - "Underfull \\hbox (badness 1019) in paragraph at lines 599--600\n", - "[]\\OT1/phv/m/n/10 at an equal dis-tance be-tween two\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 601--602\n", - "[]\\OT1/phv/m/n/10 to stop; to make some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 583--606\n", - "[] \n", - "[28]\n", - "Underfull \\hbox (badness 1466) in paragraph at lines 607--608\n", - "[]\\OT1/phv/m/n/10 a state of peace-ful ex-is-tence and\n", - "\n", - "Underfull \\hbox (badness 1320) in paragraph at lines 617--617\n", - "[]\\OT1/phv/m/n/10 high-profile (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 628--628\n", - "[]\\OT1/phv/m/n/10 humanitarian \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 606--629\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 4940) in paragraph at lines 632--633\n", - "[]\\OT1/phv/m/n/10 the pro-cess of show-ing, prov-ing\n", - "\n", - "Underfull \\hbox (badness 5064) in paragraph at lines 633--633\n", - "[]\\OT1/phv/m/n/10 ideological \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 638--638\n", - "[]\\OT1/phv/m/n/10 immense \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 639--639\n", - "[]\\OT1/phv/m/n/10 imminent \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 640--640\n", - "[]\\OT1/phv/m/n/10 implementation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 642--642\n", - "[]\\OT1/phv/m/n/10 imprisonment\n", - "\n", - "Underfull \\hbox (badness 1478) in paragraph at lines 642--643\n", - "[]\\OT1/phv/m/n/10 the act of putting some-body in a\n", - "\n", - "Underfull \\hbox (badness 1297) in paragraph at lines 644--644\n", - "[]\\OT1/phv/m/n/10 inadequate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 645--645\n", - "[]\\OT1/phv/m/n/10 inappropriate \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 648--649\n", - "[]\\OT1/phv/m/n/10 the fact of in-clud-ing some-\n", - "\n", - "Underfull \\hbox (badness 1694) in paragraph at lines 648--649\n", - "\\OT1/phv/m/n/10 body/something; the fact of be-ing\n", - "\n", - "Underfull \\hbox (badness 1077) in paragraph at lines 649--650\n", - "[]\\OT1/phv/m/n/10 if you in-cur some-thing un-pleas-ant,\n", - "\n", - "Underfull \\hbox (badness 2772) in paragraph at lines 652--652\n", - "[]\\OT1/phv/m/n/10 indigenous \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 629--653\n", - "[] \n", - "[29]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 656--656\n", - "[]\\OT1/phv/m/n/10 infamous \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 660--660\n", - "[]\\OT1/phv/m/n/10 influential \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 670--671\n", - "[]\\OT1/phv/m/n/10 to look closely at some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 653--673\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1565) in paragraph at lines 673--674\n", - "\\OT1/phv/m/n/10 and an-i-mals tend to be-have in a\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 676--676\n", - "[]\\OT1/phv/m/n/10 instrumental \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 5064) in paragraph at lines 677--677\n", - "[]\\OT1/phv/m/n/10 insufficient \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 683--683\n", - "[]\\OT1/phv/m/n/10 integrated \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1803) in paragraph at lines 683--684\n", - "[]\\OT1/phv/m/n/10 in which many dif-fer-ent parts are\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 689--689\n", - "[]\\OT1/phv/m/n/10 intensive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 691--691\n", - "[]\\OT1/phv/m/n/10 interactive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1968) in paragraph at lines 696--697\n", - "[]\\OT1/phv/m/n/10 connected with the in-side part of\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 673--697\n", - "[] \n", - "[30]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 698--698\n", - "[]\\OT1/phv/m/n/10 intermediate \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 702--702\n", - "[]\\OT1/phv/m/n/10 intriguing \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 710--710\n", - "[]\\OT1/phv/m/n/10 irrelevant \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 711--712\n", - "[]\\OT1/phv/m/n/10 the act of sep-a-rat-ing some-\n", - "\n", - "Underfull \\hbox (badness 3323) in paragraph at lines 715--716\n", - "[]\\OT1/phv/m/n/10 that most peo-ple con-sider to be\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 697--723\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1968) in paragraph at lines 724--724\n", - "[]\\OT1/phv/m/n/10 large-scale (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1533) in paragraph at lines 725--726\n", - "\\OT1/phv/m/n/10 light that can be used for cut-ting\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 736--736\n", - "[]\\OT1/phv/m/n/10 legendary \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 738--738\n", - "[]\\OT1/phv/m/n/10 legislative \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 740--740\n", - "[]\\OT1/phv/m/n/10 legitimate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1024) in paragraph at lines 742--743\n", - "[]\\OT1/phv/m/n/10 sexually at-tracted to other women;\n", - "\n", - "Underfull \\hbox (badness 2744) in paragraph at lines 746--747\n", - "[]\\OT1/phv/m/n/10 willing to un-der-stand and re-spect\n", - "\n", - "Underfull \\hbox (badness 1237) in paragraph at lines 746--747\n", - "\\OT1/phv/m/n/10 other peo-ple's be-haviour, opin-ions,\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 723--747\n", - "[] \n", - "[31]\n", - "Underfull \\hbox (badness 5036) in paragraph at lines 765--765\n", - "[]\\OT1/phv/m/n/10 long-standing (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 766--766\n", - "[]\\OT1/phv/m/n/10 long-time (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 773--773\n", - "[]\\OT1/phv/m/n/10 magnetic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 747--775\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 4467) in paragraph at lines 777--778\n", - "[]\\OT1/phv/m/n/10 the ideas and opin-ions that are\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 778--778\n", - "[]\\OT1/phv/m/n/10 maintenance\n", - "\n", - "Underfull \\hbox (badness 4353) in paragraph at lines 780--780\n", - "[]\\OT1/phv/m/n/10 mandatory \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 782--783\n", - "[]\\OT1/phv/m/n/10 to con-trol or in-flu-ence some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 783--783\n", - "[]\\OT1/phv/m/n/10 manipulation\n", - "\n", - "Underfull \\hbox (badness 6575) in paragraph at lines 792--792\n", - "[]\\OT1/phv/m/n/10 mathematical \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1953) in paragraph at lines 796--796\n", - "[]\\OT1/phv/m/n/10 meaningful \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 775--798\n", - "[] \n", - "[32]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 798--798\n", - "[]\\OT1/phv/m/n/10 medieval \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 5359) in paragraph at lines 798--799\n", - "[]\\OT1/phv/m/n/10 connected with the Mid-dle Ages\n", - "\n", - "Underfull \\hbox (badness 3199) in paragraph at lines 802--803\n", - "[]\\OT1/phv/m/n/10 an ac-count writ-ten by some-body,\n", - "\n", - "Underfull \\hbox (badness 1253) in paragraph at lines 809--810\n", - "[]\\OT1/phv/m/n/10 to com-bine or make two or more\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 812--812\n", - "[]\\OT1/phv/m/n/10 methodology\n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 814--815\n", - "[]\\OT1/phv/m/n/10 the move-ment ev-ery year of large\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 798--819\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 820--821\n", - "[]\\OT1/phv/m/n/10 to re-duce some-thing, es-pe-cially\n", - "\n", - "Underfull \\hbox (badness 3826) in paragraph at lines 826--826\n", - "[]\\OT1/phv/m/n/10 misleading \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 831--831\n", - "[]\\OT1/phv/m/n/10 moderate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 839--839\n", - "[]\\OT1/phv/m/n/10 municipal \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1924) in paragraph at lines 839--840\n", - "[]\\OT1/phv/m/n/10 connected with or be-long-ing to a\n", - "\n", - "Underfull \\hbox (badness 1028) in paragraph at lines 840--841\n", - "[]\\OT1/phv/m/n/10 used to de-scribe feel-ings that two\n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 841--842\n", - "[]\\OT1/phv/m/n/10 used to in-tro-duce more ex-act and\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 819--842\n", - "[] \n", - "[33]\n", - "Underfull \\hbox (badness 3803) in paragraph at lines 842--842\n", - "[]\\OT1/phv/m/n/10 nationwide \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 845--846\n", - "[]\\OT1/phv/m/n/10 to fail to take care of some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 846--846\n", - "[]\\OT1/phv/m/n/10 neighbouring \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1824) in paragraph at lines 851--852\n", - "\\OT1/phv/m/n/10 i-ties that peo-ple ad-mire, such as\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 853--854\n", - "[]\\OT1/phv/m/n/10 to for-mally sug-gest that some-\n", - "\n", - "Underfull \\hbox (badness 1286) in paragraph at lines 854--855\n", - "[]\\OT1/phv/m/n/10 the act of sug-gest-ing or choos-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 856--856\n", - "[]\\OT1/phv/m/n/10 non-profit (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 857--857\n", - "[]\\OT1/phv/m/n/10 nonetheless \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 863--863\n", - "[]\\OT1/phv/m/n/10 notorious \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1221) in paragraph at lines 865--866\n", - "[]\\OT1/phv/m/n/10 a place where young chil-dren are\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 842--866\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 5064) in paragraph at lines 870--870\n", - "[]\\OT1/phv/m/n/10 occasional \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1424) in paragraph at lines 872--873\n", - "[]\\OT1/phv/m/n/10 the de-gree to which some-thing is\n", - "\n", - "Underfull \\hbox (badness 1412) in paragraph at lines 875--875\n", - "[]\\OT1/phv/m/n/10 operational \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2359) in paragraph at lines 875--876\n", - "[]\\OT1/phv/m/n/10 connected with the way in which\n", - "\n", - "Underfull \\hbox (badness 1082) in paragraph at lines 877--878\n", - "[]\\OT1/phv/m/n/10 connected with the sense of sight\n", - "\n", - "Underfull \\hbox (badness 1308) in paragraph at lines 880--880\n", - "[]\\OT1/phv/m/n/10 organizational \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1342) in paragraph at lines 892--893\n", - "[]\\OT1/phv/m/n/10 to watch some-body/something and\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 866--893\n", - "[] \n", - "[34]\n", - "Underfull \\hbox (badness 2538) in paragraph at lines 895--895\n", - "[]\\OT1/phv/m/n/10 overwhelming \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 2970) in paragraph at lines 900--900\n", - "[]\\OT1/phv/m/n/10 parliamentary \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 916--916\n", - "[]\\OT1/phv/m/n/10 persistent \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 893--917\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 920--920\n", - "[]\\OT1/phv/m/n/10 philosophical \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1442) in paragraph at lines 930--931\n", - "[]\\OT1/phv/m/n/10 to for-mally promise to give or do\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 933--934\n", - "[]\\OT1/phv/m/n/10 to move or make some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 933--934\n", - "\\OT1/phv/m/n/10 body/something move sud-denly\n", - "\n", - "Underfull \\hbox (badness 1584) in paragraph at lines 935--936\n", - "[]\\OT1/phv/m/n/10 the pro-cess of ques-tion-ing peo-ple\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 939--940\n", - "[]\\OT1/phv/m/n/10 to show some-body/something\n", - "\n", - "Underfull \\hbox (badness 4353) in paragraph at lines 939--940\n", - "\\OT1/phv/m/n/10 in a pic-ture; to de-scribe some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 917--940\n", - "[] \n", - "[35]\n", - "Underfull \\hbox (badness 1609) in paragraph at lines 951--951\n", - "[]\\OT1/phv/m/n/10 preliminary \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2781) in paragraph at lines 962--962\n", - "[]\\OT1/phv/m/n/10 prestigious \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 963--963\n", - "[]\\OT1/phv/m/n/10 presumably \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 940--964\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1048) in paragraph at lines 973--974\n", - "\\OT1/phv/m/n/10 se-cret or hid-den in-for-ma-tion about\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 980--980\n", - "[]\\OT1/phv/m/n/10 productive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 982--982\n", - "[]\\OT1/phv/m/n/10 profitable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 983--983\n", - "[]\\OT1/phv/m/n/10 profound \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 985--985\n", - "[]\\OT1/phv/m/n/10 prominent \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 4699) in paragraph at lines 986--987\n", - "[]\\OT1/phv/m/n/10 very ob-vi-ous, easy to no-tice or\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 964--987\n", - "[] \n", - "[36]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 994--994\n", - "[]\\OT1/phv/m/n/10 protective \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 997--997\n", - "[]\\OT1/phv/m/n/10 provincial \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 4726) in paragraph at lines 1000--1000\n", - "[]\\OT1/phv/m/n/10 psychiatric \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2042) in paragraph at lines 1006--1007\n", - "\\OT1/phv/m/n/10 in-for-ma-tion or ex-press-ing a doubt\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 987--1007\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1007--1031\n", - "[] \n", - "[37]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1032--1032\n", - "[]\\OT1/phv/m/n/10 reconstruction\n", - "\n", - "Underfull \\hbox (badness 1622) in paragraph at lines 1033--1034\n", - "[]\\OT1/phv/m/n/10 sound or pic-tures that have been\n", - "\n", - "Underfull \\hbox (badness 2293) in paragraph at lines 1038--1039\n", - "[]\\OT1/phv/m/n/10 shelter or pro-tec-tion from dan-ger,\n", - "\n", - "Underfull \\hbox (badness 2073) in paragraph at lines 1042--1043\n", - "\\OT1/phv/m/n/10 es-pe-cially one that has not been\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1044--1044\n", - "[]\\OT1/phv/m/n/10 regulatory \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1045--1045\n", - "[]\\OT1/phv/m/n/10 rehabilitation\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1031--1054\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1609) in paragraph at lines 1055--1056\n", - "\\OT1/phv/m/n/10 or re-mem-ber some-body/something,\n", - "\n", - "Underfull \\hbox (badness 2393) in paragraph at lines 1058--1059\n", - "[]\\OT1/phv/m/n/10 to be-gin some-thing again af-ter it\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1059--1059\n", - "[]\\OT1/phv/m/n/10 renowned \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1063--1063\n", - "[]\\OT1/phv/m/n/10 representation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1063--1064\n", - "[]\\OT1/phv/m/n/10 the act of pre-sent-ing some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1070--1070\n", - "[]\\OT1/phv/m/n/10 residential \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1137) in paragraph at lines 1070--1071\n", - "[]\\OT1/phv/m/n/10 suitable for liv-ing in; con-sist-ing of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1074--1074\n", - "[]\\OT1/phv/m/n/10 respective \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1314) in paragraph at lines 1074--1075\n", - "[]\\OT1/phv/m/n/10 belonging or re-lat-ing sep-a-rately to\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1075--1075\n", - "[]\\OT1/phv/m/n/10 respectively \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1054--1079\n", - "[] \n", - "[38]\n", - "Underfull \\hbox (badness 7344) in paragraph at lines 1088--1089\n", - "[]\\OT1/phv/m/n/10 to be-come, or to make some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1089--1089\n", - "[]\\OT1/phv/m/n/10 revolutionary \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 2980) in paragraph at lines 1096--1097\n", - "\\OT1/phv/m/n/10 some-body/something move in this\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1079--1104\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1110--1110\n", - "[]\\OT1/phv/m/n/10 scattered \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1111--1111\n", - "[]\\OT1/phv/m/n/10 sceptical \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1226) in paragraph at lines 1112--1113\n", - "[]\\OT1/phv/m/n/10 the op-por-tu-nity or abil-ity to do or\n", - "\n", - "Underfull \\hbox (badness 1533) in paragraph at lines 1114--1115\n", - "[]\\OT1/phv/m/n/10 to fas-ten one thing to an-other or\n", - "\n", - "Underfull \\hbox (badness 1448) in paragraph at lines 1123--1124\n", - "[]\\OT1/phv/m/n/10 affecting or in-volv-ing only a small\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1104--1124\n", - "[] \n", - "[39]\n", - "Underfull \\hbox (badness 3068) in paragraph at lines 1131--1132\n", - "\\OT1/phv/m/n/10 ar-gu-ment be-tween two peo-ple or\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1124--1149\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1161--1162\n", - "[]\\OT1/phv/m/n/10 only; not in-volv-ing some-\n", - "\n", - "Underfull \\hbox (badness 3291) in paragraph at lines 1163--1164\n", - "[]\\OT1/phv/m/n/10 support by one per-son or group\n", - "\n", - "Underfull \\hbox (badness 2134) in paragraph at lines 1171--1172\n", - "[]\\OT1/phv/m/n/10 to make some-thing such as time\n", - "\n", - "Underfull \\hbox (badness 1478) in paragraph at lines 1173--1173\n", - "[]\\OT1/phv/m/n/10 specialized \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1149--1175\n", - "[] \n", - "[40]\n", - "Underfull \\hbox (badness 1184) in paragraph at lines 1175--1176\n", - "[]\\OT1/phv/m/n/10 a small amount of some-thing that\n", - "\n", - "Underfull \\hbox (badness 1024) in paragraph at lines 1183--1184\n", - "\\OT1/phv/m/n/10 place or per-son, es-pe-cially a per-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1195--1195\n", - "[]\\OT1/phv/m/n/10 statistical \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1635) in paragraph at lines 1197--1198\n", - "\\OT1/phv/m/n/10 above the ground from which the\n", - "\n", - "Underfull \\hbox (badness 1057) in paragraph at lines 1197--1198\n", - "\\OT1/phv/m/n/10 that grows from this and sup-ports\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1175--1198\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1200--1201\n", - "[]\\OT1/phv/m/n/10 something that helps some-\n", - "\n", - "Underfull \\hbox (badness 5475) in paragraph at lines 1200--1201\n", - "\\OT1/phv/m/n/10 body/something to de-velop bet-ter\n", - "\n", - "Underfull \\hbox (badness 1052) in paragraph at lines 1204--1205\n", - "\\OT1/phv/m/n/10 be-cause great de-mands are be-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1211--1211\n", - "[]\\OT1/phv/m/n/10 structural \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2359) in paragraph at lines 1211--1212\n", - "[]\\OT1/phv/m/n/10 connected with the way in which\n", - "\n", - "Underfull \\hbox (badness 1281) in paragraph at lines 1212--1213\n", - "[]\\OT1/phv/m/n/10 to hit your foot against some-thing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1198--1218\n", - "[] \n", - "[41]\n", - "Underfull \\hbox (badness 3803) in paragraph at lines 1218--1218\n", - "[]\\OT1/phv/m/n/10 substantial \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1219--1219\n", - "[]\\OT1/phv/m/n/10 substantially \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1221--1222\n", - "[]\\OT1/phv/m/n/10 to take the place of some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1221--1222\n", - "\\OT1/phv/m/n/10 body/something else; to use\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1221--1222\n", - "\\OT1/phv/m/n/10 some-body/something in-stead of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1224--1224\n", - "[]\\OT1/phv/m/n/10 suburban \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2318) in paragraph at lines 1226--1226\n", - "[]\\OT1/phv/m/n/10 successive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1234--1235\n", - "[]\\OT1/phv/m/n/10 better in qual-ity than some-\n", - "\n", - "Underfull \\hbox (badness 1762) in paragraph at lines 1234--1235\n", - "\\OT1/phv/m/n/10 body/something else; greater than\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1235--1236\n", - "[]\\OT1/phv/m/n/10 to be in charge of some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1235--1236\n", - "\\OT1/phv/m/n/10 body/something and make sure\n", - "\n", - "Underfull \\hbox (badness 4441) in paragraph at lines 1235--1236\n", - "\\OT1/phv/m/n/10 that ev-ery-thing is done cor-rectly,\n", - "\n", - "Underfull \\hbox (badness 5175) in paragraph at lines 1237--1238\n", - "[]\\OT1/phv/m/n/10 a per-son who su-per-vises some-\n", - "\n", - "Underfull \\hbox (badness 7832) in paragraph at lines 1240--1240\n", - "[]\\OT1/phv/m/n/10 supportive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1240--1241\n", - "[]\\OT1/phv/m/n/10 encouraging some-body or giv-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1241--1241\n", - "[]\\OT1/phv/m/n/10 supposedly \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1218--1243\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1243--1243\n", - "[]\\OT1/phv/m/n/10 supreme \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 6575) in paragraph at lines 1252--1252\n", - "[]\\OT1/phv/m/n/10 suspicious \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 5189) in paragraph at lines 1252--1253\n", - "[]\\OT1/phv/m/n/10 feeling that some-body has done\n", - "\n", - "Underfull \\hbox (badness 1558) in paragraph at lines 1253--1254\n", - "[]\\OT1/phv/m/n/10 to pro-vide enough of what some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1257--1257\n", - "[]\\OT1/phv/m/n/10 symbolic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 5091) in paragraph at lines 1260--1260\n", - "[]\\OT1/phv/m/n/10 systematic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2173) in paragraph at lines 1262--1263\n", - "[]\\OT1/phv/m/n/10 the par-tic-u-lar method you use to\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1243--1265\n", - "[] \n", - "[42]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1277--1277\n", - "[]\\OT1/phv/m/n/10 theatrical \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1279--1279\n", - "[]\\OT1/phv/m/n/10 theoretical \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1282--1282\n", - "[]\\OT1/phv/m/n/10 thought-provoking\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1283--1283\n", - "[]\\OT1/phv/m/n/10 thoughtful \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1265--1289\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 6910) in paragraph at lines 1305--1306\n", - "[]\\OT1/phv/m/n/10 to pull some-thing be-hind some-\n", - "\n", - "Underfull \\hbox (badness 2158) in paragraph at lines 1305--1306\n", - "\\OT1/phv/m/n/10 body/something, usu-ally along the\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1309--1309\n", - "[]\\OT1/phv/m/n/10 transformation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1309--1310\n", - "[]\\OT1/phv/m/n/10 a com-plete change in some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1311--1311\n", - "[]\\OT1/phv/m/n/10 transmission\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1312--1312\n", - "[]\\OT1/phv/m/n/10 transparency\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1289--1313\n", - "[] \n", - "[43]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1331--1331\n", - "[]\\OT1/phv/m/n/10 undergraduate\n", - "\n", - "Underfull \\hbox (badness 7832) in paragraph at lines 1332--1332\n", - "[]\\OT1/phv/m/n/10 underlying \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1334--1334\n", - "[]\\OT1/phv/m/n/10 undoubtedly \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1313--1338\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1338--1338\n", - "[]\\OT1/phv/m/n/10 upcoming \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1359--1359\n", - "[]\\OT1/phv/m/n/10 versus \\OT1/phv/m/sl/10 (prepo-si-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1338--1365\n", - "[] \n", - "[44]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1373--1373\n", - "[]\\OT1/phv/m/n/10 vulnerable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1565) in paragraph at lines 1380--1381\n", - "[]\\OT1/phv/m/n/10 to make some-body/something less\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1386--1386\n", - "[]\\OT1/phv/m/n/10 whatsoever \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1365--1390\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1005) in paragraph at lines 1399--1400\n", - "\\OT1/phv/m/n/10 God or a god, by say-ing prayers,\n", - "\n", - "Underfull \\hbox (badness 4378) in paragraph at lines 1401--1401\n", - "[]\\OT1/phv/m/n/10 worthwhile \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 4132) in paragraph at lines 1402--1403\n", - "[]\\OT1/phv/m/n/10 having the qual-i-ties that de-serve\n", - ")\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1390--29\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1390--29\n", - "\n", - "\n", - "(/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_by_cefr.a\n", - "ux) )\n", - "(see the transcript file for additional information){/usr/share/texlive/texmf-d\n", - "ist/fonts/enc/dvips/base/8r.enc}\n", - "Output written on /home/jelle/wd/words/english/output/oxford_5000_exclusive_two\n", - "_column_by_cefr.pdf (44 pages, 201957 bytes).\n", - "Transcript written on /home/jelle/wd/words/english/output/oxford_5000_exclusive\n", - "_two_column_by_cefr.log.\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Latexmk: Log file says output to '/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_by_cefr.pdf'\n", - "Latexmk: Undoing directory change\n", - "Latexmk: Changing directory to 'format/'\n", - "Rule 'pdflatex': File changes, etc:\n", - " Changed files, or newly in use since previous run(s):\n", - " 'oxford_5000_exclusive_two_column_by_cefr_shuffle.tex'\n", - "------------\n", - "Run number 1 of rule 'pdflatex'\n", - "------------\n", - "------------\n", - "Running 'pdflatex -recorder -output-directory=\"/home/jelle/wd/words/english/output\" \"oxford_5000_exclusive_two_column_by_cefr_shuffle.tex\"'\n", - "------------\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Latexmk: Examining '/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_by_cefr.log'\n", - "=== TeX engine is 'pdfTeX'\n", - "Latexmk: All targets (/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_by_cefr.pdf) are up-to-date\n", - "Latexmk: applying rule 'pdflatex'...\n", - "This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2022/dev/Debian) (preloaded format=pdflatex)\n", - " restricted \\write18 enabled.\n", - "entering extended mode\n", - "(./oxford_5000_exclusive_two_column_by_cefr_shuffle.tex\n", - "LaTeX2e <2021-11-15> patch level 1\n", - "L3 programming layer <2022-01-21>\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls\n", - "Document Class: article 2021/10/04 v1.4n Standard LaTeX document class\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty\n", - "(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty)))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/blindtext/blindtext.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/tools/xspace.sty))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/utf8x.def))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucs.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-global.def))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/supertabular/supertabular.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/psnfss/helvet.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1phv.fd)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def)\n", - "(/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_by_cefr_s\n", - "huffle.aux)\n", - "*geometry* driver: auto-detecting\n", - "*geometry* detected driver: pdftex\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucsencs.def)\n", - "No file oxford_5000_exclusive_two_column_by_cefr_shuffle.toc.\n", - "\n", - "(/home/jelle/wd/words/english/output/../build/oxford_5000_exclusive_shuffle_B2.\n", - "tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 6--6\n", - "[]\\OT1/phv/m/n/10 championship\n", - "\n", - "Underfull \\hbox (badness 1199) in paragraph at lines 7--8\n", - "[]\\OT1/phv/m/n/10 the state or pro-cess of be-ing de-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 9--9\n", - "[]\\OT1/phv/m/n/10 comprehensive\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-32.def)\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--23\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 23--23\n", - "[]\\OT1/phv/m/n/10 probable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1092) in paragraph at lines 27--28\n", - "[]\\OT1/phv/m/n/10 the gen-eral health, hap-pi-ness and\n", - "\n", - "Underfull \\hbox (badness 2103) in paragraph at lines 31--31\n", - "[]\\OT1/phv/m/n/10 democratic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 23--41\n", - "[] \n", - "[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}]\n", - "Underfull \\hbox (badness 1221) in paragraph at lines 42--43\n", - "\\OT1/phv/m/n/10 things, that forms the struc-ture of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 47--47\n", - "[]\\OT1/phv/m/n/10 part-time (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 54--54\n", - "[]\\OT1/phv/m/n/10 conventional \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1092) in paragraph at lines 55--56\n", - "[]\\OT1/phv/m/n/10 when a vol-cano erupts or burn-ing\n", - "\n", - "Underfull \\hbox (badness 1552) in paragraph at lines 55--56\n", - "\\OT1/phv/m/n/10 rocks, smoke, etc. erupt or are\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 41--63\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 70--70\n", - "[]\\OT1/phv/m/n/10 spokesperson\n", - "\n", - "Underfull \\hbox (badness 5592) in paragraph at lines 72--73\n", - "[]\\OT1/phv/m/n/10 to make your-self re-spon-si-ble for\n", - "\n", - "Underfull \\hbox (badness 1406) in paragraph at lines 76--77\n", - "[]\\OT1/phv/m/n/10 a per-son whose job is pre-sent-ing\n", - "\n", - "Underfull \\hbox (badness 2261) in paragraph at lines 81--82\n", - "[]\\OT1/phv/m/n/10 to make a feel-ing, an idea, etc.\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 63--87\n", - "[] \n", - "[2]\n", - "Underfull \\hbox (badness 1082) in paragraph at lines 87--87\n", - "[]\\OT1/phv/m/n/10 memorable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1009) in paragraph at lines 87--88\n", - "[]\\OT1/phv/m/n/10 worth re-mem-ber-ing or easy to re-\n", - "\n", - "Underfull \\hbox (badness 1596) in paragraph at lines 88--89\n", - "\\OT1/phv/m/n/10 stance from the sur-face or space\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 94--94\n", - "[]\\OT1/phv/m/n/10 extensive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 101--101\n", - "[]\\OT1/phv/m/n/10 beside \\OT1/phv/m/sl/10 (prepo-si-\n", - "\n", - "Underfull \\hbox (badness 2556) in paragraph at lines 101--102\n", - "[]\\OT1/phv/m/n/10 next to or at the side of some-\n", - "\n", - "Underfull \\hbox (badness 3657) in paragraph at lines 110--111\n", - "[]\\OT1/phv/m/n/10 an act of run-ning or driv-ing af-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 87--113\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2809) in paragraph at lines 120--121\n", - "[]\\OT1/phv/m/n/10 the ac-tiv-ity of buy-ing and sell-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 124--124\n", - "[]\\OT1/phv/m/n/10 ridiculous \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 131--131\n", - "[]\\OT1/phv/m/n/10 reasonably \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1308) in paragraph at lines 134--134\n", - "[]\\OT1/phv/m/n/10 fundamentally \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 113--137\n", - "[] \n", - "[3]\n", - "Underfull \\hbox (badness 2293) in paragraph at lines 142--143\n", - "[]\\OT1/phv/m/n/10 a plant whose leaves, flow-ers or\n", - "\n", - "Underfull \\hbox (badness 1565) in paragraph at lines 142--143\n", - "\\OT1/phv/m/n/10 pars-ley, mint and oregano are all\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 145--145\n", - "[]\\OT1/phv/m/n/10 promising \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 150--150\n", - "[]\\OT1/phv/m/n/10 extensively \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 152--152\n", - "[]\\OT1/phv/m/n/10 desperately \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 153--154\n", - "[]\\OT1/phv/m/n/10 having warm or lov-ing feel-ings for\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 157--157\n", - "[]\\OT1/phv/m/n/10 dominant \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 137--159\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 5064) in paragraph at lines 160--160\n", - "[]\\OT1/phv/m/n/10 psychological \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 162--162\n", - "[]\\OT1/phv/m/n/10 interpretation\n", - "\n", - "Underfull \\hbox (badness 5064) in paragraph at lines 163--163\n", - "[]\\OT1/phv/m/n/10 intellectual \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2799) in paragraph at lines 166--167\n", - "[]\\OT1/phv/m/n/10 to run, drive, etc. af-ter some-\n", - "\n", - "Underfull \\hbox (badness 3229) in paragraph at lines 166--167\n", - "\\OT1/phv/m/n/10 body/something in or-der to catch\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 167--167\n", - "[]\\OT1/phv/m/n/10 shocking \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 176--176\n", - "[]\\OT1/phv/m/n/10 biological \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 177--177\n", - "[]\\OT1/phv/m/n/10 convenience\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 184--184\n", - "[]\\OT1/phv/m/n/10 downtown \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 159--186\n", - "[] \n", - "[4]\n", - "Underfull \\hbox (badness 1389) in paragraph at lines 186--187\n", - "[]\\OT1/phv/m/n/10 a re-mark or sign that shows that\n", - "\n", - "Underfull \\hbox (badness 5359) in paragraph at lines 186--187\n", - "\\OT1/phv/m/n/10 some-thing is hap-pen-ing or what\n", - "\n", - "Underfull \\hbox (badness 3623) in paragraph at lines 198--199\n", - "[]\\OT1/phv/m/n/10 knowing some-thing; know-ing that\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 205--205\n", - "[]\\OT1/phv/m/n/10 spokeswoman\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 186--208\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 208--208\n", - "[]\\OT1/phv/m/n/10 enjoyable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1635) in paragraph at lines 212--213\n", - "[]\\OT1/phv/m/n/10 to try to pre-vent some-thing or to\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 215--215\n", - "[]\\OT1/phv/m/n/10 fortunate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 224--224\n", - "[]\\OT1/phv/m/n/10 programming\n", - "\n", - "Underfull \\hbox (badness 1371) in paragraph at lines 224--225\n", - "[]\\OT1/phv/m/n/10 the pro-cess of writ-ing and test-ing\n", - "\n", - "Underfull \\hbox (badness 5548) in paragraph at lines 225--226\n", - "[]\\OT1/phv/m/n/10 the rea-son why some-body does\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 226--226\n", - "[]\\OT1/phv/m/n/10 consequently \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 230--230\n", - "[]\\OT1/phv/m/n/10 optimistic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 208--231\n", - "[] \n", - "[5]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 231--231\n", - "[]\\OT1/phv/m/n/10 manufacturing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 236--236\n", - "[]\\OT1/phv/m/n/10 gorgeous \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 241--242\n", - "[]\\OT1/phv/m/n/10 a short dis-tance from some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 244--244\n", - "[]\\OT1/phv/m/n/10 disagreement\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 250--250\n", - "[]\\OT1/phv/m/n/10 remarkably \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 231--254\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 3199) in paragraph at lines 256--257\n", - "\\OT1/phv/m/n/10 come more ac-tive; to en-cour-age\n", - "\n", - "Underfull \\hbox (badness 1924) in paragraph at lines 258--259\n", - "[]\\OT1/phv/m/n/10 connected with or be-long-ing to a\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 263--263\n", - "[]\\OT1/phv/m/n/10 overseas \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1533) in paragraph at lines 265--266\n", - "[]\\OT1/phv/m/n/10 a class at a uni-ver-sity or col-lege\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 254--272\n", - "[] \n", - "[6]\n", - "Underfull \\hbox (badness 1014) in paragraph at lines 274--275\n", - "[]\\OT1/phv/m/n/10 pictures and pho-tographs pre-pared\n", - "\n", - "Underfull \\hbox (badness 1789) in paragraph at lines 275--276\n", - "[]\\OT1/phv/m/n/10 a con-di-tion or ill-ness that causes\n", - "\n", - "Underfull \\hbox (badness 2443) in paragraph at lines 282--283\n", - "\\OT1/phv/m/n/10 por-tant or ba-sic na-ture of some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 287--287\n", - "[]\\OT1/phv/m/n/10 automatic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 3302) in paragraph at lines 287--288\n", - "[]\\OT1/phv/m/n/10 having con-trols that work with-out\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 295--295\n", - "[]\\OT1/phv/m/n/10 beneficial \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 297--297\n", - "[]\\OT1/phv/m/n/10 technological \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 272--299\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 301--301\n", - "[]\\OT1/phv/m/n/10 innovative \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 5008) in paragraph at lines 303--303\n", - "[]\\OT1/phv/m/n/10 dependent \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1082) in paragraph at lines 305--306\n", - "[]\\OT1/phv/m/n/10 used to show that you are dis-ap-\n", - "\n", - "Underfull \\hbox (badness 2856) in paragraph at lines 306--307\n", - "[]\\OT1/phv/m/n/10 a ve-hi-cle with spe-cial equip-ment,\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 321--321\n", - "[]\\OT1/phv/m/n/10 homeless \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1742) in paragraph at lines 323--324\n", - "[]\\OT1/phv/m/n/10 the work of col-lect-ing and writ-ing\n", - "\n", - "Underfull \\hbox (badness 1454) in paragraph at lines 326--327\n", - "[]\\OT1/phv/m/n/10 a greater in-ter-est in or de-sire for\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 326--327\n", - "\\OT1/phv/m/n/10 some-body/something than some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 299--327\n", - "[] \n", - "[7]\n", - "Underfull \\hbox (badness 1521) in paragraph at lines 344--345\n", - "[]\\OT1/phv/m/n/10 a per-son who be-lieves that some\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 345--345\n", - "[]\\OT1/phv/m/n/10 conservation\n", - "\n", - "Underfull \\hbox (badness 3039) in paragraph at lines 346--347\n", - "\\OT1/phv/m/n/10 tances, es-pe-cially one con-nect-ing\n", - "\n", - "Underfull \\hbox (badness 1418) in paragraph at lines 348--349\n", - "[]\\OT1/phv/m/n/10 the fact of be-ing male or fe-male,\n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 349--350\n", - "\\OT1/phv/m/n/10 peo-ple can go for spe-cial med-i-cal\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 327--353\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2486) in paragraph at lines 355--356\n", - "[]\\OT1/phv/m/n/10 a small de-vice con-tain-ing pow-der\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 362--362\n", - "[]\\OT1/phv/m/n/10 subsequently \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 364--364\n", - "[]\\OT1/phv/m/n/10 affordable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 369--370\n", - "[]\\OT1/phv/m/n/10 a per-son who watches some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 376--376\n", - "[]\\OT1/phv/m/n/10 excessive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 353--381\n", - "[] \n", - "[8]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 388--388\n", - "[]\\OT1/phv/m/n/10 besides \\OT1/phv/m/sl/10 (prepo-si-\n", - "\n", - "Underfull \\hbox (badness 2894) in paragraph at lines 389--390\n", - "\\OT1/phv/m/n/10 of the peo-ple or things that are\n", - "\n", - "Underfull \\hbox (badness 6608) in paragraph at lines 393--394\n", - "[]\\OT1/phv/m/n/10 the slow steady de-vel-op-ment of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 395--395\n", - "[]\\OT1/phv/m/n/10 considerable \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 399--399\n", - "[]\\OT1/phv/m/n/10 adequately \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 400--400\n", - "[]\\OT1/phv/m/n/10 temporarily \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 381--401\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 416--416\n", - "[]\\OT1/phv/m/n/10 voluntary \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 418--418\n", - "[]\\OT1/phv/m/n/10 controversial \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 401--427\n", - "[] \n", - "[9]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 428--428\n", - "[]\\OT1/phv/m/n/10 automatically \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1014) in paragraph at lines 430--431\n", - "[]\\OT1/phv/m/n/10 behaviour or an event that peo-ple\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 431--431\n", - "[]\\OT1/phv/m/n/10 dramatically \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1014) in paragraph at lines 434--435\n", - "[]\\OT1/phv/m/n/10 not use-ful; not do-ing or achiev-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 446--446\n", - "[]\\OT1/phv/m/n/10 transportation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 447--447\n", - "[]\\OT1/phv/m/n/10 awkward \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 427--450\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 457--457\n", - "[]\\OT1/phv/m/n/10 infrastructure\n", - "\n", - "Underfull \\hbox (badness 2027) in paragraph at lines 460--461\n", - "[]\\OT1/phv/m/n/10 to hit some-body/something quickly\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 469--469\n", - "[]\\OT1/phv/m/n/10 entrepreneur\n", - "\n", - "Underfull \\hbox (badness 1635) in paragraph at lines 469--470\n", - "\\OT1/phv/m/n/10 when this in-volves tak-ing fi-nan-cial\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 474--474\n", - "[]\\OT1/phv/m/n/10 considerably \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 450--475\n", - "[] \n", - "[10]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 481--481\n", - "[]\\OT1/phv/m/n/10 emotionally \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 483--483\n", - "[]\\OT1/phv/m/n/10 accommodate\n", - "\n", - "Underfull \\hbox (badness 8056) in paragraph at lines 487--487\n", - "[]\\OT1/phv/m/n/10 short-term (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 495--495\n", - "[]\\OT1/phv/m/n/10 sophisticated \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 475--499\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 511--511\n", - "[]\\OT1/phv/m/n/10 permanently \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 512--513\n", - "[]\\OT1/phv/m/n/10 to find or dis-cover some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 499--521\n", - "[] \n", - "[11]\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 526--526\n", - "[]\\OT1/phv/m/n/10 elementary \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 528--529\n", - "[]\\OT1/phv/m/n/10 the ac-tion of choos-ing some-\n", - "\n", - "Underfull \\hbox (badness 3758) in paragraph at lines 528--529\n", - "\\OT1/phv/m/n/10 body/something in an elec-tion or\n", - "\n", - "Underfull \\hbox (badness 1221) in paragraph at lines 530--531\n", - "[]\\OT1/phv/m/n/10 to con-trol some-thing by means of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 531--532\n", - "[]\\OT1/phv/m/n/10 the ac-tiv-ity of test-ing some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 531--532\n", - "\\OT1/phv/m/n/10 body/something in or-der to find\n", - "\n", - "Underfull \\hbox (badness 2772) in paragraph at lines 532--532\n", - "[]\\OT1/phv/m/n/10 passionate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 535--536\n", - "[]\\OT1/phv/m/n/10 to be dif-fer-ent from some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 539--539\n", - "[]\\OT1/phv/m/n/10 thorough \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2229) in paragraph at lines 545--545\n", - "[]\\OT1/phv/m/n/10 predictable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1062) in paragraph at lines 547--548\n", - "[]\\OT1/phv/m/n/10 coloured liq-uid for writ-ing, draw-ing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 521--548\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 552--552\n", - "[]\\OT1/phv/m/n/10 demonstration\n", - "\n", - "Underfull \\hbox (badness 3039) in paragraph at lines 552--553\n", - "[]\\OT1/phv/m/n/10 a pub-lic meet-ing or a march (=\n", - "\n", - "Underfull \\hbox (badness 2103) in paragraph at lines 552--553\n", - "\\OT1/phv/m/n/10 an or-ga-nized walk by many peo-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 565--565\n", - "[]\\OT1/phv/m/n/10 adequate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 570--570\n", - "[]\\OT1/phv/m/n/10 balanced \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 548--571\n", - "[] \n", - "[12]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 571--572\n", - "[]\\OT1/phv/m/n/10 to pro-vide your-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 571--572\n", - "\\OT1/phv/m/n/10 self/somebody/something with the\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 578--578\n", - "[]\\OT1/phv/m/n/10 questionnaire\n", - "\n", - "Underfull \\hbox (badness 3158) in paragraph at lines 580--581\n", - "[]\\OT1/phv/m/n/10 formal dis-cus-sion be-tween peo-ple\n", - "\n", - "Underfull \\hbox (badness 2088) in paragraph at lines 586--587\n", - "[]\\OT1/phv/m/n/10 a build-ing used for re-li-gious wor-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 587--587\n", - "[]\\OT1/phv/m/n/10 headquarters\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 588--588\n", - "[]\\OT1/phv/m/n/10 independence\n", - "\n", - "Underfull \\hbox (badness 7116) in paragraph at lines 591--591\n", - "[]\\OT1/phv/m/n/10 unacceptable \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 571--594\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 599--599\n", - "[]\\OT1/phv/m/n/10 accidentally \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 5578) in paragraph at lines 616--616\n", - "[]\\OT1/phv/m/n/10 convincing \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1205) in paragraph at lines 616--617\n", - "[]\\OT1/phv/m/n/10 that makes some-body be-lieve that\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 619--619\n", - "[]\\OT1/phv/m/n/10 comparative \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 594--621\n", - "[] \n", - "[13]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 626--626\n", - "[]\\OT1/phv/m/n/10 so-called (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 627--627\n", - "[]\\OT1/phv/m/n/10 charming \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1248) in paragraph at lines 628--629\n", - "[]\\OT1/phv/m/n/10 a mark, a cut or an in-jury made\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 638--638\n", - "[]\\OT1/phv/m/n/10 disappointment\n", - "\n", - "Underfull \\hbox (badness 1997) in paragraph at lines 638--639\n", - "[]\\OT1/phv/m/n/10 the feel-ing of be-ing sad be-cause\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 621--645\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 657--657\n", - "[]\\OT1/phv/m/n/10 appropriately \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 658--658\n", - "[]\\OT1/phv/m/n/10 universal \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 663--663\n", - "[]\\OT1/phv/m/n/10 miserable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 665--666\n", - "[]\\OT1/phv/m/n/10 to sep-a-rate some-body/something\n", - "\n", - "Underfull \\hbox (badness 7168) in paragraph at lines 665--666\n", - "\\OT1/phv/m/n/10 phys-i-cally or so-cially from other\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 645--672\n", - "[] \n", - "[14]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 678--678\n", - "[]\\OT1/phv/m/n/10 consistently \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1831) in paragraph at lines 680--681\n", - "[]\\OT1/phv/m/n/10 to make some-body feel ex-tremely\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 683--683\n", - "[]\\OT1/phv/m/n/10 determination\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 684--684\n", - "[]\\OT1/phv/m/n/10 inevitable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2626) in paragraph at lines 694--695\n", - "[]\\OT1/phv/m/n/10 to make some-body de-cide to do\n", - "\n", - "Underfull \\hbox (badness 1117) in paragraph at lines 694--695\n", - "\\OT1/phv/m/n/10 some-thing; to cause some-thing to\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 672--699\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 699--699\n", - "[]\\OT1/phv/m/n/10 additionally \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 3758) in paragraph at lines 701--702\n", - "[]\\OT1/phv/m/n/10 to un-der-stand or think of some-\n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 708--709\n", - "[]\\OT1/phv/m/n/10 a small sym-bol on a com-puter or\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 709--709\n", - "[]\\OT1/phv/m/n/10 consumption\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 710--710\n", - "[]\\OT1/phv/m/n/10 sufficient \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 712--713\n", - "[]\\OT1/phv/m/n/10 to have some-body/something as\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 723--724\n", - "[]\\OT1/phv/m/n/10 to fas-ten a tag onto some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 699--727\n", - "[] \n", - "[15]\n", - "Underfull \\hbox (badness 2150) in paragraph at lines 728--729\n", - "[]\\OT1/phv/m/n/10 building ma-te-rial that is made by\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 731--731\n", - "[]\\OT1/phv/m/n/10 equivalent \\OT1/phv/m/sl/10 (ad-jec-\n", - ")\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 727--27\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 727--27\n", - "\n", - "\n", - "(/home/jelle/wd/words/english/output/../build/oxford_5000_exclusive_shuffle_C1.\n", - "tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1924) in paragraph at lines 4--5\n", - "[]\\OT1/phv/m/n/10 connected with or be-long-ing to a\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 14--14\n", - "[]\\OT1/phv/m/n/10 documentation\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--16\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 17--17\n", - "[]\\OT1/phv/m/n/10 undoubtedly \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1286) in paragraph at lines 18--19\n", - "[]\\OT1/phv/m/n/10 the act of sug-gest-ing or choos-ing\n", - "\n", - "Underfull \\hbox (badness 1558) in paragraph at lines 21--22\n", - "[]\\OT1/phv/m/n/10 to pro-vide enough of what some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 24--24\n", - "[]\\OT1/phv/m/n/10 medieval \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 5359) in paragraph at lines 24--25\n", - "[]\\OT1/phv/m/n/10 connected with the Mid-dle Ages\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 30--30\n", - "[]\\OT1/phv/m/n/10 intermediate \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 36--36\n", - "[]\\OT1/phv/m/n/10 notorious \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 39--39\n", - "[]\\OT1/phv/m/n/10 legitimate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 16--43\n", - "[] \n", - "[16]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 51--51\n", - "[]\\OT1/phv/m/n/10 collective \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 58--59\n", - "[]\\OT1/phv/m/n/10 to look steadily at some-\n", - "\n", - "Underfull \\hbox (badness 6842) in paragraph at lines 58--59\n", - "\\OT1/phv/m/n/10 body/something for a long time,\n", - "\n", - "Underfull \\hbox (badness 2735) in paragraph at lines 60--61\n", - "[]\\OT1/phv/m/n/10 a per-son or an or-ga-ni-za-tion that\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 43--67\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1509) in paragraph at lines 69--70\n", - "[]\\OT1/phv/m/n/10 a writ-ten state-ment de-scrib-ing the\n", - "\n", - "Underfull \\hbox (badness 3623) in paragraph at lines 71--72\n", - "[]\\OT1/phv/m/n/10 to show your ap-proval of some-\n", - "\n", - "Underfull \\hbox (badness 6910) in paragraph at lines 71--72\n", - "\\OT1/phv/m/n/10 body/something by clap-ping your\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 75--75\n", - "[]\\OT1/phv/m/n/10 undergraduate\n", - "\n", - "Underfull \\hbox (badness 1466) in paragraph at lines 80--81\n", - "[]\\OT1/phv/m/n/10 a state of peace-ful ex-is-tence and\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 86--87\n", - "[]\\OT1/phv/m/n/10 the act of pre-vent-ing some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 86--87\n", - "\\OT1/phv/m/n/10 body/something from en-ter-ing a\n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 87--88\n", - "[]\\OT1/phv/m/n/10 the move-ment ev-ery year of large\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 67--91\n", - "[] \n", - "[17]\n", - "Underfull \\hbox (badness 1521) in paragraph at lines 92--93\n", - "[]\\OT1/phv/m/n/10 to change the shape, ap-pear-ance\n", - "\n", - "Underfull \\hbox (badness 1824) in paragraph at lines 94--95\n", - "\\OT1/phv/m/n/10 i-ties that peo-ple ad-mire, such as\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 96--96\n", - "[]\\OT1/phv/m/n/10 reconstruction\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 100--100\n", - "[]\\OT1/phv/m/n/10 elaborate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2073) in paragraph at lines 102--103\n", - "\\OT1/phv/m/n/10 es-pe-cially one that has not been\n", - "\n", - "Underfull \\hbox (badness 3803) in paragraph at lines 106--106\n", - "[]\\OT1/phv/m/n/10 substantial \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1019) in paragraph at lines 114--115\n", - "[]\\OT1/phv/m/n/10 at an equal dis-tance be-tween two\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 91--117\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 118--118\n", - "[]\\OT1/phv/m/n/10 prominent \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 3323) in paragraph at lines 127--128\n", - "[]\\OT1/phv/m/n/10 to make some-thing us-ing spe-cial\n", - "\n", - "Underfull \\hbox (badness 2970) in paragraph at lines 134--134\n", - "[]\\OT1/phv/m/n/10 parliamentary \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 136--137\n", - "[]\\OT1/phv/m/n/10 the fact of in-clud-ing some-\n", - "\n", - "Underfull \\hbox (badness 1694) in paragraph at lines 136--137\n", - "\\OT1/phv/m/n/10 body/something; the fact of be-ing\n", - "\n", - "Underfull \\hbox (badness 1087) in paragraph at lines 138--139\n", - "[]\\OT1/phv/m/n/10 to have a par-tic-u-lar opin-ion about\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 117--140\n", - "[] \n", - "[18]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 153--153\n", - "[]\\OT1/phv/m/n/10 compensation\n", - "\n", - "Underfull \\hbox (badness 2418) in paragraph at lines 153--154\n", - "[]\\OT1/phv/m/n/10 something, es-pe-cially money, that\n", - "\n", - "Underfull \\hbox (badness 1062) in paragraph at lines 154--155\n", - "\\OT1/phv/m/n/10 re-lates with an-other, the facts are\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 140--159\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 165--165\n", - "[]\\OT1/phv/m/n/10 protective \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 170--170\n", - "[]\\OT1/phv/m/n/10 instrumental \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1281) in paragraph at lines 172--173\n", - "[]\\OT1/phv/m/n/10 to hit your foot against some-thing\n", - "\n", - "Underfull \\hbox (badness 1052) in paragraph at lines 177--178\n", - "\\OT1/phv/m/n/10 be-cause great de-mands are be-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 182--182\n", - "[]\\OT1/phv/m/n/10 accomplishment\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 159--184\n", - "[] \n", - "[19]\n", - "Underfull \\hbox (badness 6575) in paragraph at lines 184--184\n", - "[]\\OT1/phv/m/n/10 suspicious \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 5189) in paragraph at lines 184--185\n", - "[]\\OT1/phv/m/n/10 feeling that some-body has done\n", - "\n", - "Underfull \\hbox (badness 3323) in paragraph at lines 191--192\n", - "[]\\OT1/phv/m/n/10 that most peo-ple con-sider to be\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 192--192\n", - "[]\\OT1/phv/m/n/10 capitalist \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 195--195\n", - "[]\\OT1/phv/m/n/10 appealing \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 196--196\n", - "[]\\OT1/phv/m/n/10 neighbouring \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 206--206\n", - "[]\\OT1/phv/m/n/10 theoretical \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 184--207\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 210--210\n", - "[]\\OT1/phv/m/n/10 infamous \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 213--214\n", - "[]\\OT1/phv/m/n/10 to move or make some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 213--214\n", - "\\OT1/phv/m/n/10 body/something move sud-denly\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 214--214\n", - "[]\\OT1/phv/m/n/10 interactive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2781) in paragraph at lines 218--218\n", - "[]\\OT1/phv/m/n/10 prestigious \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 207--230\n", - "[] \n", - "[20]\n", - "Underfull \\hbox (badness 5064) in paragraph at lines 233--233\n", - "[]\\OT1/phv/m/n/10 ideological \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 237--238\n", - "[]\\OT1/phv/m/n/10 to con-trol or in-flu-ence some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 239--239\n", - "[]\\OT1/phv/m/n/10 constitutional \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 247--248\n", - "[]\\OT1/phv/m/n/10 used to in-tro-duce more ex-act and\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 249--249\n", - "[]\\OT1/phv/m/n/10 diplomatic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1490) in paragraph at lines 249--250\n", - "[]\\OT1/phv/m/n/10 connected with man-ag-ing re-la-tions\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 230--255\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 255--256\n", - "[]\\OT1/phv/m/n/10 only; not in-volv-ing some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 256--256\n", - "[]\\OT1/phv/m/n/10 configuration\n", - "\n", - "Underfull \\hbox (badness 1533) in paragraph at lines 263--264\n", - "\\OT1/phv/m/n/10 light that can be used for cut-ting\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 268--268\n", - "[]\\OT1/phv/m/n/10 explosive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2744) in paragraph at lines 270--271\n", - "[]\\OT1/phv/m/n/10 willing to un-der-stand and re-spect\n", - "\n", - "Underfull \\hbox (badness 1237) in paragraph at lines 270--271\n", - "\\OT1/phv/m/n/10 other peo-ple's be-haviour, opin-ions,\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 275--275\n", - "[]\\OT1/phv/m/n/10 structural \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2359) in paragraph at lines 275--276\n", - "[]\\OT1/phv/m/n/10 connected with the way in which\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 276--277\n", - "[]\\OT1/phv/m/n/10 the act of sep-a-rat-ing some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 255--279\n", - "[] \n", - "[21]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 280--280\n", - "[]\\OT1/phv/m/n/10 immense \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 4726) in paragraph at lines 285--285\n", - "[]\\OT1/phv/m/n/10 psychiatric \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 287--287\n", - "[]\\OT1/phv/m/n/10 aesthetic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 296--297\n", - "[]\\OT1/phv/m/n/10 to fail to take care of some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 279--301\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 301--302\n", - "[]\\OT1/phv/m/n/10 to for-mally sug-gest that some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 312--312\n", - "[]\\OT1/phv/m/n/10 countless \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 315--315\n", - "[]\\OT1/phv/m/n/10 transparency\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 318--318\n", - "[]\\OT1/phv/m/n/10 sceptical \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 321--321\n", - "[]\\OT1/phv/m/n/10 encouragement\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 301--328\n", - "[] \n", - "[22]\n", - "Underfull \\hbox (badness 1609) in paragraph at lines 328--328\n", - "[]\\OT1/phv/m/n/10 preliminary \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 329--329\n", - "[]\\OT1/phv/m/n/10 supreme \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1024) in paragraph at lines 331--332\n", - "[]\\OT1/phv/m/n/10 sexually at-tracted to other women;\n", - "\n", - "Underfull \\hbox (badness 5036) in paragraph at lines 332--332\n", - "[]\\OT1/phv/m/n/10 long-standing (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 343--343\n", - "[]\\OT1/phv/m/n/10 classification\n", - "\n", - "Underfull \\hbox (badness 5064) in paragraph at lines 348--348\n", - "[]\\OT1/phv/m/n/10 insufficient \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 349--349\n", - "[]\\OT1/phv/m/n/10 accumulation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 351--351\n", - "[]\\OT1/phv/m/n/10 experimental \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 328--353\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1448) in paragraph at lines 357--358\n", - "[]\\OT1/phv/m/n/10 affecting or in-volv-ing only a small\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 364--364\n", - "[]\\OT1/phv/m/n/10 theatrical \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 4378) in paragraph at lines 365--365\n", - "[]\\OT1/phv/m/n/10 worthwhile \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 367--367\n", - "[]\\OT1/phv/m/n/10 engaging \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 368--368\n", - "[]\\OT1/phv/m/n/10 philosophical \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1412) in paragraph at lines 371--371\n", - "[]\\OT1/phv/m/n/10 operational \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2359) in paragraph at lines 371--372\n", - "[]\\OT1/phv/m/n/10 connected with the way in which\n", - "\n", - "Underfull \\hbox (badness 5064) in paragraph at lines 376--376\n", - "[]\\OT1/phv/m/n/10 occasional \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 353--379\n", - "[] \n", - "[23]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 380--380\n", - "[]\\OT1/phv/m/n/10 persistent \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 383--384\n", - "[]\\OT1/phv/m/n/10 to ask God to pro-tect some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 386--386\n", - "[]\\OT1/phv/m/n/10 exclusive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 387--387\n", - "[]\\OT1/phv/m/n/10 embarrassment\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 391--391\n", - "[]\\OT1/phv/m/n/10 transmission\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 392--392\n", - "[]\\OT1/phv/m/n/10 maintenance\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 394--394\n", - "[]\\OT1/phv/m/n/10 profound \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1953) in paragraph at lines 397--397\n", - "[]\\OT1/phv/m/n/10 meaningful \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 379--403\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 413--413\n", - "[]\\OT1/phv/m/n/10 decision-making\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 417--418\n", - "[]\\OT1/phv/m/n/10 a state-ment show-ing that two\n", - "\n", - "Underfull \\hbox (badness 1924) in paragraph at lines 417--418\n", - "\\OT1/phv/m/n/10 amounts or val-ues are equal, for\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 418--418\n", - "[]\\OT1/phv/m/n/10 defensive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 418--419\n", - "[]\\OT1/phv/m/n/10 protecting some-body/something\n", - "\n", - "Underfull \\hbox (badness 2134) in paragraph at lines 420--421\n", - "[]\\OT1/phv/m/n/10 to make some-thing such as time\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 403--425\n", - "[] \n", - "[24]\n", - "Underfull \\hbox (badness 2173) in paragraph at lines 428--429\n", - "[]\\OT1/phv/m/n/10 the par-tic-u-lar method you use to\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 429--429\n", - "[]\\OT1/phv/m/n/10 integrated \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1803) in paragraph at lines 429--430\n", - "[]\\OT1/phv/m/n/10 in which many dif-fer-ent parts are\n", - "\n", - "Underfull \\hbox (badness 4467) in paragraph at lines 430--431\n", - "[]\\OT1/phv/m/n/10 according to a rule or the way\n", - "\n", - "Underfull \\hbox (badness 1005) in paragraph at lines 435--436\n", - "\\OT1/phv/m/n/10 God or a god, by say-ing prayers,\n", - "\n", - "Underfull \\hbox (badness 1286) in paragraph at lines 442--443\n", - "\\OT1/phv/m/n/10 thing that is painful or un-pleas-ant\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 425--445\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 3792) in paragraph at lines 449--450\n", - "[]\\OT1/phv/m/n/10 the crime of at-tack-ing some-body\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 450--450\n", - "[]\\OT1/phv/m/n/10 representation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 450--451\n", - "[]\\OT1/phv/m/n/10 the act of pre-sent-ing some-\n", - "\n", - "Underfull \\hbox (badness 1565) in paragraph at lines 453--454\n", - "\\OT1/phv/m/n/10 and an-i-mals tend to be-have in a\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 454--454\n", - "[]\\OT1/phv/m/n/10 revolutionary \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 458--458\n", - "[]\\OT1/phv/m/n/10 methodology\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 445--465\n", - "[] \n", - "[25]\n", - "Underfull \\hbox (badness 1342) in paragraph at lines 467--468\n", - "\\OT1/phv/m/n/10 usu-ally in se-cret; an oc-ca-sion on\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 469--470\n", - "[]\\OT1/phv/m/n/10 to strongly crit-i-cize some-\n", - "\n", - "Underfull \\hbox (badness 4467) in paragraph at lines 469--470\n", - "\\OT1/phv/m/n/10 body/something that you think is\n", - "\n", - "Underfull \\hbox (badness 1533) in paragraph at lines 470--471\n", - "[]\\OT1/phv/m/n/10 to fas-ten one thing to an-other or\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 473--473\n", - "[]\\OT1/phv/m/n/10 residential \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1137) in paragraph at lines 473--474\n", - "[]\\OT1/phv/m/n/10 suitable for liv-ing in; con-sist-ing of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 478--478\n", - "[]\\OT1/phv/m/n/10 statistical \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 489--489\n", - "[]\\OT1/phv/m/n/10 discrimination\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 465--490\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1342) in paragraph at lines 493--494\n", - "[]\\OT1/phv/m/n/10 to watch some-body/something and\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 503--503\n", - "[]\\OT1/phv/m/n/10 substantially \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 509--509\n", - "[]\\OT1/phv/m/n/10 renowned \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 4353) in paragraph at lines 513--513\n", - "[]\\OT1/phv/m/n/10 mandatory \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 517--517\n", - "[]\\OT1/phv/m/n/10 respective \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1314) in paragraph at lines 517--518\n", - "[]\\OT1/phv/m/n/10 belonging or re-lat-ing sep-a-rately to\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 490--518\n", - "[] \n", - "[26]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 522--522\n", - "[]\\OT1/phv/m/n/10 municipal \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1924) in paragraph at lines 522--523\n", - "[]\\OT1/phv/m/n/10 connected with or be-long-ing to a\n", - "\n", - "Underfull \\hbox (badness 1028) in paragraph at lines 523--524\n", - "[]\\OT1/phv/m/n/10 used to de-scribe feel-ings that two\n", - "\n", - "Underfull \\hbox (badness 1019) in paragraph at lines 529--530\n", - "[]\\OT1/phv/m/n/10 to re-ply to some-body by try-ing to\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 530--530\n", - "[]\\OT1/phv/m/n/10 damaging \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 518--540\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 550--550\n", - "[]\\OT1/phv/m/n/10 profitable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 4467) in paragraph at lines 555--556\n", - "[]\\OT1/phv/m/n/10 the ideas and opin-ions that are\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 556--556\n", - "[]\\OT1/phv/m/n/10 frustrated \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1496) in paragraph at lines 556--557\n", - "[]\\OT1/phv/m/n/10 feeling an-noyed and im-pa-tient be-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 559--559\n", - "[]\\OT1/phv/m/n/10 manipulation\n", - "\n", - "Underfull \\hbox (badness 1092) in paragraph at lines 561--562\n", - "\\OT1/phv/m/n/10 talks on a ra-dio or tele-vi-sion pro-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 540--562\n", - "[] \n", - "[27]\n", - "Underfull \\hbox (badness 2393) in paragraph at lines 562--563\n", - "[]\\OT1/phv/m/n/10 to be-gin some-thing again af-ter it\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 566--566\n", - "[]\\OT1/phv/m/n/10 long-time (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 5091) in paragraph at lines 573--573\n", - "[]\\OT1/phv/m/n/10 systematic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 562--588\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 588--588\n", - "[]\\OT1/phv/m/n/10 contradiction\n", - "\n", - "Underfull \\hbox (badness 1308) in paragraph at lines 591--591\n", - "[]\\OT1/phv/m/n/10 organizational \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 597--597\n", - "[]\\OT1/phv/m/n/10 architectural \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 2042) in paragraph at lines 601--602\n", - "\\OT1/phv/m/n/10 in-for-ma-tion or ex-press-ing a doubt\n", - "\n", - "Underfull \\hbox (badness 1024) in paragraph at lines 608--609\n", - "\\OT1/phv/m/n/10 place or per-son, es-pe-cially a per-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 610--610\n", - "[]\\OT1/phv/m/n/10 humanitarian \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 588--611\n", - "[] \n", - "[28]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 616--616\n", - "[]\\OT1/phv/m/n/10 disastrous \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1478) in paragraph at lines 618--618\n", - "[]\\OT1/phv/m/n/10 specialized \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1184) in paragraph at lines 625--626\n", - "[]\\OT1/phv/m/n/10 the ac-tion or pro-cess of chang-ing\n", - "\n", - "Underfull \\hbox (badness 1067) in paragraph at lines 627--628\n", - "\\OT1/phv/m/n/10 with slow steady de-vel-op-ment and\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 628--628\n", - "[]\\OT1/phv/m/n/10 accountability\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 611--636\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 636--637\n", - "[]\\OT1/phv/m/n/10 to make some-body/something\n", - "\n", - "Underfull \\hbox (badness 1490) in paragraph at lines 637--638\n", - "[]\\OT1/phv/m/n/10 to state clearly and def-i-nitely that\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 642--643\n", - "[]\\OT1/phv/m/n/10 a long, steady look at some-\n", - "\n", - "Underfull \\hbox (badness 2293) in paragraph at lines 650--651\n", - "[]\\OT1/phv/m/n/10 shelter or pro-tec-tion from dan-ger,\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 651--651\n", - "[]\\OT1/phv/m/n/10 vulnerable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 658--659\n", - "[]\\OT1/phv/m/n/10 a qual-ity or fea-ture of some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 636--662\n", - "[] \n", - "[29]\n", - "Underfull \\hbox (badness 2970) in paragraph at lines 662--662\n", - "[]\\OT1/phv/m/n/10 communist \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 4699) in paragraph at lines 665--666\n", - "[]\\OT1/phv/m/n/10 very ob-vi-ous, easy to no-tice or\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 671--671\n", - "[]\\OT1/phv/m/n/10 irrelevant \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2088) in paragraph at lines 680--681\n", - "\\OT1/phv/m/n/10 whether your ac-tions are right or\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 662--688\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1215) in paragraph at lines 691--692\n", - "[]\\OT1/phv/m/n/10 a pat-tern of straight lines, usu-ally\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 692--692\n", - "[]\\OT1/phv/m/n/10 provincial \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2772) in paragraph at lines 705--705\n", - "[]\\OT1/phv/m/n/10 indigenous \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 4940) in paragraph at lines 712--713\n", - "[]\\OT1/phv/m/n/10 the pro-cess of show-ing, prov-ing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 688--713\n", - "[] \n", - "[30]\n", - "Underfull \\hbox (badness 1077) in paragraph at lines 718--719\n", - "[]\\OT1/phv/m/n/10 if you in-cur some-thing un-pleas-ant,\n", - "\n", - "Underfull \\hbox (badness 1635) in paragraph at lines 722--723\n", - "\\OT1/phv/m/n/10 above the ground from which the\n", - "\n", - "Underfull \\hbox (badness 1057) in paragraph at lines 722--723\n", - "\\OT1/phv/m/n/10 that grows from this and sup-ports\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 725--725\n", - "[]\\OT1/phv/m/n/10 consciousness\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 726--726\n", - "[]\\OT1/phv/m/n/10 intriguing \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 6542) in paragraph at lines 732--732\n", - "[]\\OT1/phv/m/n/10 competent \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 713--738\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1024) in paragraph at lines 743--744\n", - "[]\\OT1/phv/m/n/10 an of-fi-cial ex-am-i-na-tion of busi-ness\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 745--745\n", - "[]\\OT1/phv/m/n/10 dedicated \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 746--746\n", - "[]\\OT1/phv/m/n/10 nonetheless \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 747--748\n", - "[]\\OT1/phv/m/n/10 better in qual-ity than some-\n", - "\n", - "Underfull \\hbox (badness 1762) in paragraph at lines 747--748\n", - "\\OT1/phv/m/n/10 body/something else; greater than\n", - "\n", - "Underfull \\hbox (badness 3826) in paragraph at lines 751--751\n", - "[]\\OT1/phv/m/n/10 misleading \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 761--761\n", - "[]\\OT1/phv/m/n/10 magnetic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 738--762\n", - "[] \n", - "[31]\n", - "Underfull \\hbox (badness 1377) in paragraph at lines 762--763\n", - "[]\\OT1/phv/m/n/10 an ar-gu-ment be-tween two peo-ple,\n", - "\n", - "Underfull \\hbox (badness 2027) in paragraph at lines 764--765\n", - "[]\\OT1/phv/m/n/10 an agree-ment made be-tween two\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 765--766\n", - "[]\\OT1/phv/m/n/10 to show an im-age of some-\n", - "\n", - "Underfull \\hbox (badness 3826) in paragraph at lines 766--766\n", - "[]\\OT1/phv/m/n/10 compelling \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 4621) in paragraph at lines 768--769\n", - "[]\\OT1/phv/m/n/10 the ac-tiv-ity of play-ing games of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 773--773\n", - "[]\\OT1/phv/m/n/10 presumably \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1845) in paragraph at lines 778--779\n", - "\\OT1/phv/m/n/10 to leave the po-lice or the armed\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 780--781\n", - "[]\\OT1/phv/m/n/10 to look quickly at some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 782--782\n", - "[]\\OT1/phv/m/n/10 versus \\OT1/phv/m/sl/10 (prepo-si-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 783--783\n", - "[]\\OT1/phv/m/n/10 thought-provoking\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 762--785\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 787--787\n", - "[]\\OT1/phv/m/n/10 intensive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 790--790\n", - "[]\\OT1/phv/m/n/10 accordingly \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 800--800\n", - "[]\\OT1/phv/m/n/10 productive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 6575) in paragraph at lines 804--804\n", - "[]\\OT1/phv/m/n/10 mathematical \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 785--809\n", - "[] \n", - "[32]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 810--811\n", - "[]\\OT1/phv/m/n/10 to pro-vide weapons for your-\n", - "\n", - "Underfull \\hbox (badness 2393) in paragraph at lines 810--811\n", - "\\OT1/phv/m/n/10 self/somebody in or-der to fight a\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 815--815\n", - "[]\\OT1/phv/m/n/10 authentic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 3199) in paragraph at lines 817--818\n", - "[]\\OT1/phv/m/n/10 an ac-count writ-ten by some-body,\n", - "\n", - "Underfull \\hbox (badness 2469) in paragraph at lines 825--825\n", - "[]\\OT1/phv/m/n/10 administrative \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 831--831\n", - "[]\\OT1/phv/m/n/10 rehabilitation\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 809--833\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 841--841\n", - "[]\\OT1/phv/m/n/10 symbolic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 843--843\n", - "[]\\OT1/phv/m/n/10 imprisonment\n", - "\n", - "Underfull \\hbox (badness 1478) in paragraph at lines 843--844\n", - "[]\\OT1/phv/m/n/10 the act of putting some-body in a\n", - "\n", - "Underfull \\hbox (badness 1895) in paragraph at lines 855--856\n", - "\\OT1/phv/m/n/10 will hap-pen or have hap-pened to\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 833--856\n", - "[] \n", - "[33]\n", - "Underfull \\hbox (badness 2698) in paragraph at lines 870--871\n", - "[]\\OT1/phv/m/n/10 to leave a per-son or place very\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 871--871\n", - "[]\\OT1/phv/m/n/10 implementation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 875--876\n", - "[]\\OT1/phv/m/n/10 to take the place of some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 856--877\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 881--881\n", - "[]\\OT1/phv/m/n/10 ecological \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1584) in paragraph at lines 883--884\n", - "[]\\OT1/phv/m/n/10 the pro-cess of ques-tion-ing peo-ple\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 897--897\n", - "[]\\OT1/phv/m/n/10 distinctive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1221) in paragraph at lines 898--899\n", - "[]\\OT1/phv/m/n/10 a place where young chil-dren are\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 877--900\n", - "[] \n", - "[34]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 912--912\n", - "[]\\OT1/phv/m/n/10 establishment\n", - "\n", - "Underfull \\hbox (badness 1184) in paragraph at lines 913--914\n", - "[]\\OT1/phv/m/n/10 a small amount of some-thing that\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 900--922\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 922--922\n", - "[]\\OT1/phv/m/n/10 applicable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 7186) in paragraph at lines 931--931\n", - "[]\\OT1/phv/m/n/10 accessible \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 933--933\n", - "[]\\OT1/phv/m/n/10 disturbing \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 4673) in paragraph at lines 936--937\n", - "[]\\OT1/phv/m/n/10 to stop some-thing un-pleas-ant or\n", - "\n", - "Underfull \\hbox (badness 1968) in paragraph at lines 937--938\n", - "[]\\OT1/phv/m/n/10 connected with the in-side part of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 938--939\n", - "[]\\OT1/phv/m/n/10 to look closely at some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 941--941\n", - "[]\\OT1/phv/m/n/10 imminent \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 922--947\n", - "[] \n", - "[35]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 947--947\n", - "[]\\OT1/phv/m/n/10 scattered \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 950--950\n", - "[]\\OT1/phv/m/n/10 functional \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1082) in paragraph at lines 958--959\n", - "[]\\OT1/phv/m/n/10 connected with the sense of sight\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 960--960\n", - "[]\\OT1/phv/m/n/10 correspondent\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 962--962\n", - "[]\\OT1/phv/m/n/10 whatsoever \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 947--971\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 973--973\n", - "[]\\OT1/phv/m/n/10 collaboration\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 978--978\n", - "[]\\OT1/phv/m/n/10 correspondence\n", - "\n", - "Underfull \\hbox (badness 2951) in paragraph at lines 985--985\n", - "[]\\OT1/phv/m/n/10 destructive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 971--995\n", - "[] \n", - "[36]\n", - "Underfull \\hbox (badness 1442) in paragraph at lines 997--998\n", - "[]\\OT1/phv/m/n/10 to for-mally promise to give or do\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1010--1011\n", - "[]\\OT1/phv/m/n/10 to take the place of some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1010--1011\n", - "\\OT1/phv/m/n/10 body/something else; to use\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1010--1011\n", - "\\OT1/phv/m/n/10 some-body/something in-stead of\n", - "\n", - "Underfull \\hbox (badness 1048) in paragraph at lines 1013--1014\n", - "\\OT1/phv/m/n/10 se-cret or hid-den in-for-ma-tion about\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 995--1016\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1043) in paragraph at lines 1016--1017\n", - "\\OT1/phv/m/n/10 der-wa-ter too long and you can-not\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1018--1018\n", - "[]\\OT1/phv/m/n/10 congregation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1023--1024\n", - "[]\\OT1/phv/m/n/10 to show some-body/something\n", - "\n", - "Underfull \\hbox (badness 4353) in paragraph at lines 1023--1024\n", - "\\OT1/phv/m/n/10 in a pic-ture; to de-scribe some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1029--1029\n", - "[]\\OT1/phv/m/n/10 thoughtful \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1032--1033\n", - "[]\\OT1/phv/m/n/10 to re-duce some-thing, es-pe-cially\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1016--1040\n", - "[] \n", - "[37]\n", - "Underfull \\hbox (badness 4132) in paragraph at lines 1045--1046\n", - "[]\\OT1/phv/m/n/10 having the qual-i-ties that de-serve\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1047--1047\n", - "[]\\OT1/phv/m/n/10 upcoming \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2318) in paragraph at lines 1048--1048\n", - "[]\\OT1/phv/m/n/10 successive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1056--1056\n", - "[]\\OT1/phv/m/n/10 legendary \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 5175) in paragraph at lines 1059--1060\n", - "[]\\OT1/phv/m/n/10 a per-son who su-per-vises some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1040--1063\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1068--1069\n", - "\\OT1/phv/m/n/10 or pro-tects some-body/something\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1070--1070\n", - "[]\\OT1/phv/m/n/10 inappropriate \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1076--1076\n", - "[]\\OT1/phv/m/n/10 desirable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1079--1079\n", - "[]\\OT1/phv/m/n/10 effectiveness\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1086--1087\n", - "[]\\OT1/phv/m/n/10 to stop; to make some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1063--1088\n", - "[] \n", - "[38]\n", - "Underfull \\hbox (badness 1565) in paragraph at lines 1095--1096\n", - "[]\\OT1/phv/m/n/10 to make some-body/something less\n", - "\n", - "Underfull \\hbox (badness 1968) in paragraph at lines 1097--1097\n", - "[]\\OT1/phv/m/n/10 large-scale (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1103--1103\n", - "[]\\OT1/phv/m/n/10 frustrating \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1112) in paragraph at lines 1103--1104\n", - "\\OT1/phv/m/n/10 pa-tient be-cause you can-not do or\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1088--1111\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1125--1125\n", - "[]\\OT1/phv/m/n/10 endorsement\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1125--1126\n", - "[]\\OT1/phv/m/n/10 a pub-lic state-ment or ac-tion\n", - "\n", - "Underfull \\hbox (badness 4981) in paragraph at lines 1125--1126\n", - "\\OT1/phv/m/n/10 show-ing that you sup-port some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1133--1133\n", - "[]\\OT1/phv/m/n/10 regulatory \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1111--1138\n", - "[] \n", - "[39]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1138--1138\n", - "[]\\OT1/phv/m/n/10 encouraging \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1138--1139\n", - "[]\\OT1/phv/m/n/10 that gives some-body sup-port,\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1141--1141\n", - "[]\\OT1/phv/m/n/10 administrator\n", - "\n", - "Underfull \\hbox (badness 3482) in paragraph at lines 1147--1148\n", - "[]\\OT1/phv/m/n/10 a de-vice con-tain-ing pa-per, sand,\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1138--1159\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1162--1162\n", - "[]\\OT1/phv/m/n/10 cognitive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1609) in paragraph at lines 1166--1167\n", - "\\OT1/phv/m/n/10 or re-mem-ber some-body/something,\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1174--1174\n", - "[]\\OT1/phv/m/n/10 influential \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1176--1176\n", - "[]\\OT1/phv/m/n/10 exclusively \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1159--1183\n", - "[] \n", - "[40]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1184--1184\n", - "[]\\OT1/phv/m/n/10 empirical \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1186--1186\n", - "[]\\OT1/phv/m/n/10 transformation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1186--1187\n", - "[]\\OT1/phv/m/n/10 a com-plete change in some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1189--1189\n", - "[]\\OT1/phv/m/n/10 breakthrough\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1183--1206\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1210--1211\n", - "[]\\OT1/phv/m/n/10 an act of hold-ing some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1211--1211\n", - "[]\\OT1/phv/m/n/10 supposedly \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1214--1214\n", - "[]\\OT1/phv/m/n/10 commissioner\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1227--1227\n", - "[]\\OT1/phv/m/n/10 commentator\n", - "\n", - "Underfull \\hbox (badness 1371) in paragraph at lines 1227--1228\n", - "[]\\OT1/phv/m/n/10 a per-son who de-scribes an event\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1206--1229\n", - "[] \n", - "[41]\n", - "Underfull \\hbox (badness 2088) in paragraph at lines 1230--1230\n", - "[]\\OT1/phv/m/n/10 congressional \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1231--1232\n", - "[]\\OT1/phv/m/n/10 something that helps some-\n", - "\n", - "Underfull \\hbox (badness 5475) in paragraph at lines 1231--1232\n", - "\\OT1/phv/m/n/10 body/something to de-velop bet-ter\n", - "\n", - "Underfull \\hbox (badness 6316) in paragraph at lines 1234--1235\n", - "[]\\OT1/phv/m/n/10 to give in-for-ma-tion about some-\n", - "\n", - "Underfull \\hbox (badness 4765) in paragraph at lines 1237--1238\n", - "[]\\OT1/phv/m/n/10 a per-son or thing that has the\n", - "\n", - "Underfull \\hbox (badness 1675) in paragraph at lines 1237--1238\n", - "\\OT1/phv/m/n/10 body/something else in a dif-fer-ent\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1239--1239\n", - "[]\\OT1/phv/m/n/10 legislative \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2035) in paragraph at lines 1240--1240\n", - "[]\\OT1/phv/m/n/10 agricultural \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1229--1251\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1253--1253\n", - "[]\\OT1/phv/m/n/10 favourable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 3803) in paragraph at lines 1256--1256\n", - "[]\\OT1/phv/m/n/10 nationwide \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 3291) in paragraph at lines 1264--1265\n", - "[]\\OT1/phv/m/n/10 support by one per-son or group\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1268--1268\n", - "[]\\OT1/phv/m/n/10 beneath \\OT1/phv/m/sl/10 (prepo-si-\n", - "\n", - "Underfull \\hbox (badness 7168) in paragraph at lines 1268--1269\n", - "[]\\OT1/phv/m/n/10 in or to a lower po-si-tion than\n", - "\n", - "Underfull \\hbox (badness 1194) in paragraph at lines 1268--1269\n", - "\\OT1/phv/m/n/10 some-body/something; un-der some-\n", - "\n", - "Underfull \\hbox (badness 1297) in paragraph at lines 1269--1269\n", - "[]\\OT1/phv/m/n/10 inadequate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1251--1278\n", - "[] \n", - "[42]\n", - "Underfull \\hbox (badness 1424) in paragraph at lines 1292--1293\n", - "[]\\OT1/phv/m/n/10 the de-gree to which some-thing is\n", - "\n", - "Underfull \\hbox (badness 3068) in paragraph at lines 1296--1297\n", - "\\OT1/phv/m/n/10 ar-gu-ment be-tween two peo-ple or\n", - "\n", - "Underfull \\hbox (badness 1226) in paragraph at lines 1297--1298\n", - "[]\\OT1/phv/m/n/10 the op-por-tu-nity or abil-ity to do or\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1298--1298\n", - "[]\\OT1/phv/m/n/10 suburban \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 4013) in paragraph at lines 1299--1300\n", - "[]\\OT1/phv/m/n/10 to take a strong hold of some-\n", - "\n", - "Underfull \\hbox (badness 1320) in paragraph at lines 1300--1300\n", - "[]\\OT1/phv/m/n/10 high-profile (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1278--1302\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1622) in paragraph at lines 1311--1312\n", - "[]\\OT1/phv/m/n/10 sound or pic-tures that have been\n", - "\n", - "Underfull \\hbox (badness 3138) in paragraph at lines 1315--1316\n", - "[]\\OT1/phv/m/n/10 to be-come smaller, weaker, etc.;\n", - "\n", - "Underfull \\hbox (badness 5274) in paragraph at lines 1319--1320\n", - "[]\\OT1/phv/m/n/10 an un-der-stand-ing or a be-lief of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1323--1324\n", - "[]\\OT1/phv/m/n/10 to be in charge of some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1323--1324\n", - "\\OT1/phv/m/n/10 body/something and make sure\n", - "\n", - "Underfull \\hbox (badness 4441) in paragraph at lines 1323--1324\n", - "\\OT1/phv/m/n/10 that ev-ery-thing is done cor-rectly,\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1302--1324\n", - "[] \n", - "[43]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1329--1329\n", - "[]\\OT1/phv/m/n/10 assassination\n", - "\n", - "Underfull \\hbox (badness 7832) in paragraph at lines 1332--1332\n", - "[]\\OT1/phv/m/n/10 underlying \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1400) in paragraph at lines 1335--1336\n", - "[]\\OT1/phv/m/n/10 very large in size or amount and\n", - "\n", - "Underfull \\hbox (badness 2538) in paragraph at lines 1342--1342\n", - "[]\\OT1/phv/m/n/10 overwhelming \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1324--1349\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 7832) in paragraph at lines 1350--1350\n", - "[]\\OT1/phv/m/n/10 supportive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1350--1351\n", - "[]\\OT1/phv/m/n/10 encouraging some-body or giv-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1360--1360\n", - "[]\\OT1/phv/m/n/10 non-profit (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1363--1363\n", - "[]\\OT1/phv/m/n/10 confrontation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1367--1368\n", - "[]\\OT1/phv/m/n/10 to say of-fi-cially that some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1367--1368\n", - "\\OT1/phv/m/n/10 body/something has a par-tic-u-lar\n", - "\n", - "Underfull \\hbox (badness 6842) in paragraph at lines 1367--1368\n", - "\\OT1/phv/m/n/10 char-ac-ter or name; to de-scribe\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1349--1371\n", - "[] \n", - "[44]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1384--1384\n", - "[]\\OT1/phv/m/n/10 respectively \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1385--1386\n", - "[]\\OT1/phv/m/n/10 to hold on tightly to some-\n", - "\n", - "Underfull \\hbox (badness 1337) in paragraph at lines 1387--1388\n", - "[]\\OT1/phv/m/n/10 costing a lot of money, es-pe-cially\n", - "\n", - "Underfull \\hbox (badness 7344) in paragraph at lines 1393--1394\n", - "[]\\OT1/phv/m/n/10 to be-come, or to make some-\n", - "\n", - "Underfull \\hbox (badness 2980) in paragraph at lines 1397--1398\n", - "\\OT1/phv/m/n/10 some-body/something move in this\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1371--1398\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1264) in paragraph at lines 1398--1399\n", - "[]\\OT1/phv/m/n/10 containing a lot of peo-ple, things,\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1399--1399\n", - "[]\\OT1/phv/m/n/10 moderate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 6910) in paragraph at lines 1402--1403\n", - "[]\\OT1/phv/m/n/10 to pull some-thing be-hind some-\n", - "\n", - "Underfull \\hbox (badness 2158) in paragraph at lines 1402--1403\n", - "\\OT1/phv/m/n/10 body/something, usu-ally along the\n", - "\n", - "Underfull \\hbox (badness 1253) in paragraph at lines 1403--1404\n", - "[]\\OT1/phv/m/n/10 to com-bine or make two or more\n", - ")\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1398--29\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1398--29\n", - "\n", - "\n", - "(/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_by_cefr_s\n", - "huffle.aux) )\n", - "(see the transcript file for additional information){/usr/share/texlive/texmf-d\n", - "ist/fonts/enc/dvips/base/8r.enc}\n", - "Output written on /home/jelle/wd/words/english/output/oxford_5000_exclusive_two\n", - "_column_by_cefr_shuffle.pdf (44 pages, 208512 bytes).\n", - "Transcript written on /home/jelle/wd/words/english/output/oxford_5000_exclusive\n", - "_two_column_by_cefr_shuffle.log.\n", - "Latexmk: Examining '/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_by_cefr_shuffle.log'\n", - "=== TeX engine is 'pdfTeX'\n", - "Latexmk: applying rule 'pdflatex'...\n", - "This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2022/dev/Debian) (preloaded format=pdflatex)\n", - " restricted \\write18 enabled.\n", - "entering extended mode\n", - "(./oxford_5000_exclusive_two_column_by_cefr_shuffle.tex\n", - "LaTeX2e <2021-11-15> patch level 1\n", - "L3 programming layer <2022-01-21>\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls\n", - "Document Class: article 2021/10/04 v1.4n Standard LaTeX document class\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty\n", - "(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty)))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/blindtext/blindtext.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/tools/xspace.sty))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/utf8x.def))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucs.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-global.def))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/supertabular/supertabular.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/psnfss/helvet.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1phv.fd)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def)\n", - "(/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_by_cefr_s\n", - "huffle.aux)\n", - "*geometry* driver: auto-detecting\n", - "*geometry* detected driver: pdftex\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucsencs.def)\n", - "(/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_by_cefr_s\n", - "huffle.toc)\n", - "(/home/jelle/wd/words/english/output/../build/oxford_5000_exclusive_shuffle_B2.\n", - "tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 6--6\n", - "[]\\OT1/phv/m/n/10 championship\n", - "\n", - "Underfull \\hbox (badness 1199) in paragraph at lines 7--8\n", - "[]\\OT1/phv/m/n/10 the state or pro-cess of be-ing de-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 9--9\n", - "[]\\OT1/phv/m/n/10 comprehensive\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-32.def)\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--21\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 23--23\n", - "[]\\OT1/phv/m/n/10 probable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1092) in paragraph at lines 27--28\n", - "[]\\OT1/phv/m/n/10 the gen-eral health, hap-pi-ness and\n", - "\n", - "Underfull \\hbox (badness 2103) in paragraph at lines 31--31\n", - "[]\\OT1/phv/m/n/10 democratic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 21--40\n", - "[] \n", - "[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}]\n", - "Underfull \\hbox (badness 1221) in paragraph at lines 42--43\n", - "\\OT1/phv/m/n/10 things, that forms the struc-ture of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 47--47\n", - "[]\\OT1/phv/m/n/10 part-time (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 54--54\n", - "[]\\OT1/phv/m/n/10 conventional \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1092) in paragraph at lines 55--56\n", - "[]\\OT1/phv/m/n/10 when a vol-cano erupts or burn-ing\n", - "\n", - "Underfull \\hbox (badness 1552) in paragraph at lines 55--56\n", - "\\OT1/phv/m/n/10 rocks, smoke, etc. erupt or are\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 40--62\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 70--70\n", - "[]\\OT1/phv/m/n/10 spokesperson\n", - "\n", - "Underfull \\hbox (badness 5592) in paragraph at lines 72--73\n", - "[]\\OT1/phv/m/n/10 to make your-self re-spon-si-ble for\n", - "\n", - "Underfull \\hbox (badness 1406) in paragraph at lines 76--77\n", - "[]\\OT1/phv/m/n/10 a per-son whose job is pre-sent-ing\n", - "\n", - "Underfull \\hbox (badness 2261) in paragraph at lines 81--82\n", - "[]\\OT1/phv/m/n/10 to make a feel-ing, an idea, etc.\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 62--85\n", - "[] \n", - "[2]\n", - "Underfull \\hbox (badness 1082) in paragraph at lines 87--87\n", - "[]\\OT1/phv/m/n/10 memorable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1009) in paragraph at lines 87--88\n", - "[]\\OT1/phv/m/n/10 worth re-mem-ber-ing or easy to re-\n", - "\n", - "Underfull \\hbox (badness 1596) in paragraph at lines 88--89\n", - "\\OT1/phv/m/n/10 stance from the sur-face or space\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 94--94\n", - "[]\\OT1/phv/m/n/10 extensive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 101--101\n", - "[]\\OT1/phv/m/n/10 beside \\OT1/phv/m/sl/10 (prepo-si-\n", - "\n", - "Underfull \\hbox (badness 2556) in paragraph at lines 101--102\n", - "[]\\OT1/phv/m/n/10 next to or at the side of some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 85--110\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 3657) in paragraph at lines 110--111\n", - "[]\\OT1/phv/m/n/10 an act of run-ning or driv-ing af-\n", - "\n", - "Underfull \\hbox (badness 2809) in paragraph at lines 120--121\n", - "[]\\OT1/phv/m/n/10 the ac-tiv-ity of buy-ing and sell-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 124--124\n", - "[]\\OT1/phv/m/n/10 ridiculous \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 110--130\n", - "[] \n", - "[3]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 131--131\n", - "[]\\OT1/phv/m/n/10 reasonably \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1308) in paragraph at lines 134--134\n", - "[]\\OT1/phv/m/n/10 fundamentally \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 2293) in paragraph at lines 142--143\n", - "[]\\OT1/phv/m/n/10 a plant whose leaves, flow-ers or\n", - "\n", - "Underfull \\hbox (badness 1565) in paragraph at lines 142--143\n", - "\\OT1/phv/m/n/10 pars-ley, mint and oregano are all\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 145--145\n", - "[]\\OT1/phv/m/n/10 promising \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 150--150\n", - "[]\\OT1/phv/m/n/10 extensively \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 152--152\n", - "[]\\OT1/phv/m/n/10 desperately \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 130--153\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 153--154\n", - "[]\\OT1/phv/m/n/10 having warm or lov-ing feel-ings for\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 157--157\n", - "[]\\OT1/phv/m/n/10 dominant \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 5064) in paragraph at lines 160--160\n", - "[]\\OT1/phv/m/n/10 psychological \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 162--162\n", - "[]\\OT1/phv/m/n/10 interpretation\n", - "\n", - "Underfull \\hbox (badness 5064) in paragraph at lines 163--163\n", - "[]\\OT1/phv/m/n/10 intellectual \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2799) in paragraph at lines 166--167\n", - "[]\\OT1/phv/m/n/10 to run, drive, etc. af-ter some-\n", - "\n", - "Underfull \\hbox (badness 3229) in paragraph at lines 166--167\n", - "\\OT1/phv/m/n/10 body/something in or-der to catch\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 167--167\n", - "[]\\OT1/phv/m/n/10 shocking \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 153--176\n", - "[] \n", - "[4]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 176--176\n", - "[]\\OT1/phv/m/n/10 biological \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 177--177\n", - "[]\\OT1/phv/m/n/10 convenience\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 184--184\n", - "[]\\OT1/phv/m/n/10 downtown \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1389) in paragraph at lines 186--187\n", - "[]\\OT1/phv/m/n/10 a re-mark or sign that shows that\n", - "\n", - "Underfull \\hbox (badness 5359) in paragraph at lines 186--187\n", - "\\OT1/phv/m/n/10 some-thing is hap-pen-ing or what\n", - "\n", - "Underfull \\hbox (badness 3623) in paragraph at lines 198--199\n", - "[]\\OT1/phv/m/n/10 knowing some-thing; know-ing that\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 176--201\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 205--205\n", - "[]\\OT1/phv/m/n/10 spokeswoman\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 208--208\n", - "[]\\OT1/phv/m/n/10 enjoyable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1635) in paragraph at lines 212--213\n", - "[]\\OT1/phv/m/n/10 to try to pre-vent some-thing or to\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 215--215\n", - "[]\\OT1/phv/m/n/10 fortunate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 224--224\n", - "[]\\OT1/phv/m/n/10 programming\n", - "\n", - "Underfull \\hbox (badness 1371) in paragraph at lines 224--225\n", - "[]\\OT1/phv/m/n/10 the pro-cess of writ-ing and test-ing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 201--225\n", - "[] \n", - "[5]\n", - "Underfull \\hbox (badness 5548) in paragraph at lines 225--226\n", - "[]\\OT1/phv/m/n/10 the rea-son why some-body does\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 226--226\n", - "[]\\OT1/phv/m/n/10 consequently \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 230--230\n", - "[]\\OT1/phv/m/n/10 optimistic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 231--231\n", - "[]\\OT1/phv/m/n/10 manufacturing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 236--236\n", - "[]\\OT1/phv/m/n/10 gorgeous \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 241--242\n", - "[]\\OT1/phv/m/n/10 a short dis-tance from some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 244--244\n", - "[]\\OT1/phv/m/n/10 disagreement\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 225--248\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 250--250\n", - "[]\\OT1/phv/m/n/10 remarkably \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 3199) in paragraph at lines 256--257\n", - "\\OT1/phv/m/n/10 come more ac-tive; to en-cour-age\n", - "\n", - "Underfull \\hbox (badness 1924) in paragraph at lines 258--259\n", - "[]\\OT1/phv/m/n/10 connected with or be-long-ing to a\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 263--263\n", - "[]\\OT1/phv/m/n/10 overseas \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1533) in paragraph at lines 265--266\n", - "[]\\OT1/phv/m/n/10 a class at a uni-ver-sity or col-lege\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 248--267\n", - "[] \n", - "[6]\n", - "Underfull \\hbox (badness 1014) in paragraph at lines 274--275\n", - "[]\\OT1/phv/m/n/10 pictures and pho-tographs pre-pared\n", - "\n", - "Underfull \\hbox (badness 1789) in paragraph at lines 275--276\n", - "[]\\OT1/phv/m/n/10 a con-di-tion or ill-ness that causes\n", - "\n", - "Underfull \\hbox (badness 2443) in paragraph at lines 282--283\n", - "\\OT1/phv/m/n/10 por-tant or ba-sic na-ture of some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 287--287\n", - "[]\\OT1/phv/m/n/10 automatic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 3302) in paragraph at lines 287--288\n", - "[]\\OT1/phv/m/n/10 having con-trols that work with-out\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 267--294\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 295--295\n", - "[]\\OT1/phv/m/n/10 beneficial \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 297--297\n", - "[]\\OT1/phv/m/n/10 technological \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 301--301\n", - "[]\\OT1/phv/m/n/10 innovative \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 5008) in paragraph at lines 303--303\n", - "[]\\OT1/phv/m/n/10 dependent \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1082) in paragraph at lines 305--306\n", - "[]\\OT1/phv/m/n/10 used to show that you are dis-ap-\n", - "\n", - "Underfull \\hbox (badness 2856) in paragraph at lines 306--307\n", - "[]\\OT1/phv/m/n/10 a ve-hi-cle with spe-cial equip-ment,\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 294--321\n", - "[] \n", - "[7]" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Latexmk: Missing input file 'oxford_5000_exclusive_two_column_by_cefr_shuffle.toc' (or dependence on it) from following:\n", - " 'No file oxford_5000_exclusive_two_column_by_cefr_shuffle.toc.'\n", - "Latexmk: Log file says output to '/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_by_cefr_shuffle.pdf'\n", - "Rule 'pdflatex': File changes, etc:\n", - " Changed files, or newly in use since previous run(s):\n", - " '/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_by_cefr_shuffle.aux'\n", - " '/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_by_cefr_shuffle.toc'\n", - "------------\n", - "Run number 2 of rule 'pdflatex'\n", - "------------\n", - "------------\n", - "Running 'pdflatex -recorder -output-directory=\"/home/jelle/wd/words/english/output\" \"oxford_5000_exclusive_two_column_by_cefr_shuffle.tex\"'\n", - "------------\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 321--321\n", - "[]\\OT1/phv/m/n/10 homeless \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1742) in paragraph at lines 323--324\n", - "[]\\OT1/phv/m/n/10 the work of col-lect-ing and writ-ing\n", - "\n", - "Underfull \\hbox (badness 1454) in paragraph at lines 326--327\n", - "[]\\OT1/phv/m/n/10 a greater in-ter-est in or de-sire for\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 326--327\n", - "\\OT1/phv/m/n/10 some-body/something than some-\n", - "\n", - "Underfull \\hbox (badness 1521) in paragraph at lines 344--345\n", - "[]\\OT1/phv/m/n/10 a per-son who be-lieves that some\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 321--345\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 345--345\n", - "[]\\OT1/phv/m/n/10 conservation\n", - "\n", - "Underfull \\hbox (badness 3039) in paragraph at lines 346--347\n", - "\\OT1/phv/m/n/10 tances, es-pe-cially one con-nect-ing\n", - "\n", - "Underfull \\hbox (badness 1418) in paragraph at lines 348--349\n", - "[]\\OT1/phv/m/n/10 the fact of be-ing male or fe-male,\n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 349--350\n", - "\\OT1/phv/m/n/10 peo-ple can go for spe-cial med-i-cal\n", - "\n", - "Underfull \\hbox (badness 2486) in paragraph at lines 355--356\n", - "[]\\OT1/phv/m/n/10 a small de-vice con-tain-ing pow-der\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 362--362\n", - "[]\\OT1/phv/m/n/10 subsequently \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 364--364\n", - "[]\\OT1/phv/m/n/10 affordable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 369--370\n", - "[]\\OT1/phv/m/n/10 a per-son who watches some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 345--374\n", - "[] \n", - "[8]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 376--376\n", - "[]\\OT1/phv/m/n/10 excessive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 388--388\n", - "[]\\OT1/phv/m/n/10 besides \\OT1/phv/m/sl/10 (prepo-si-\n", - "\n", - "Underfull \\hbox (badness 2894) in paragraph at lines 389--390\n", - "\\OT1/phv/m/n/10 of the peo-ple or things that are\n", - "\n", - "Underfull \\hbox (badness 6608) in paragraph at lines 393--394\n", - "[]\\OT1/phv/m/n/10 the slow steady de-vel-op-ment of\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 374--394\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 395--395\n", - "[]\\OT1/phv/m/n/10 considerable \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 399--399\n", - "[]\\OT1/phv/m/n/10 adequately \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 400--400\n", - "[]\\OT1/phv/m/n/10 temporarily \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 416--416\n", - "[]\\OT1/phv/m/n/10 voluntary \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 394--418\n", - "[] \n", - "[9]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 418--418\n", - "[]\\OT1/phv/m/n/10 controversial \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 428--428\n", - "[]\\OT1/phv/m/n/10 automatically \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1014) in paragraph at lines 430--431\n", - "[]\\OT1/phv/m/n/10 behaviour or an event that peo-ple\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 431--431\n", - "[]\\OT1/phv/m/n/10 dramatically \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1014) in paragraph at lines 434--435\n", - "[]\\OT1/phv/m/n/10 not use-ful; not do-ing or achiev-ing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 418--445\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 446--446\n", - "[]\\OT1/phv/m/n/10 transportation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 447--447\n", - "[]\\OT1/phv/m/n/10 awkward \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 457--457\n", - "[]\\OT1/phv/m/n/10 infrastructure\n", - "\n", - "Underfull \\hbox (badness 2027) in paragraph at lines 460--461\n", - "[]\\OT1/phv/m/n/10 to hit some-body/something quickly\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 469--469\n", - "[]\\OT1/phv/m/n/10 entrepreneur\n", - "\n", - "Underfull \\hbox (badness 1635) in paragraph at lines 469--470\n", - "\\OT1/phv/m/n/10 when this in-volves tak-ing fi-nan-cial\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 445--470\n", - "[] \n", - "[10]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 474--474\n", - "[]\\OT1/phv/m/n/10 considerably \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 481--481\n", - "[]\\OT1/phv/m/n/10 emotionally \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 483--483\n", - "[]\\OT1/phv/m/n/10 accommodate\n", - "\n", - "Underfull \\hbox (badness 8056) in paragraph at lines 487--487\n", - "[]\\OT1/phv/m/n/10 short-term (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 470--492\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 495--495\n", - "[]\\OT1/phv/m/n/10 sophisticated \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 511--511\n", - "[]\\OT1/phv/m/n/10 permanently \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 512--513\n", - "[]\\OT1/phv/m/n/10 to find or dis-cover some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 492--516\n", - "[] \n", - "[11]\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 526--526\n", - "[]\\OT1/phv/m/n/10 elementary \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 528--529\n", - "[]\\OT1/phv/m/n/10 the ac-tion of choos-ing some-\n", - "\n", - "Underfull \\hbox (badness 3758) in paragraph at lines 528--529\n", - "\\OT1/phv/m/n/10 body/something in an elec-tion or\n", - "\n", - "Underfull \\hbox (badness 1221) in paragraph at lines 530--531\n", - "[]\\OT1/phv/m/n/10 to con-trol some-thing by means of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 531--532\n", - "[]\\OT1/phv/m/n/10 the ac-tiv-ity of test-ing some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 531--532\n", - "\\OT1/phv/m/n/10 body/something in or-der to find\n", - "\n", - "Underfull \\hbox (badness 2772) in paragraph at lines 532--532\n", - "[]\\OT1/phv/m/n/10 passionate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 535--536\n", - "[]\\OT1/phv/m/n/10 to be dif-fer-ent from some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 539--539\n", - "[]\\OT1/phv/m/n/10 thorough \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 516--541\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2229) in paragraph at lines 545--545\n", - "[]\\OT1/phv/m/n/10 predictable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1062) in paragraph at lines 547--548\n", - "[]\\OT1/phv/m/n/10 coloured liq-uid for writ-ing, draw-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 552--552\n", - "[]\\OT1/phv/m/n/10 demonstration\n", - "\n", - "Underfull \\hbox (badness 3039) in paragraph at lines 552--553\n", - "[]\\OT1/phv/m/n/10 a pub-lic meet-ing or a march (=\n", - "\n", - "Underfull \\hbox (badness 2103) in paragraph at lines 552--553\n", - "\\OT1/phv/m/n/10 an or-ga-nized walk by many peo-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 565--565\n", - "[]\\OT1/phv/m/n/10 adequate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 541--566\n", - "[] \n", - "[12]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 570--570\n", - "[]\\OT1/phv/m/n/10 balanced \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 571--572\n", - "[]\\OT1/phv/m/n/10 to pro-vide your-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 571--572\n", - "\\OT1/phv/m/n/10 self/somebody/something with the\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 578--578\n", - "[]\\OT1/phv/m/n/10 questionnaire\n", - "\n", - "Underfull \\hbox (badness 3158) in paragraph at lines 580--581\n", - "[]\\OT1/phv/m/n/10 formal dis-cus-sion be-tween peo-ple\n", - "\n", - "Underfull \\hbox (badness 2088) in paragraph at lines 586--587\n", - "[]\\OT1/phv/m/n/10 a build-ing used for re-li-gious wor-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 587--587\n", - "[]\\OT1/phv/m/n/10 headquarters\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 588--588\n", - "[]\\OT1/phv/m/n/10 independence\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 566--591\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 7116) in paragraph at lines 591--591\n", - "[]\\OT1/phv/m/n/10 unacceptable \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 599--599\n", - "[]\\OT1/phv/m/n/10 accidentally \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 591--615\n", - "[] \n", - "[13]\n", - "Underfull \\hbox (badness 5578) in paragraph at lines 616--616\n", - "[]\\OT1/phv/m/n/10 convincing \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1205) in paragraph at lines 616--617\n", - "[]\\OT1/phv/m/n/10 that makes some-body be-lieve that\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 619--619\n", - "[]\\OT1/phv/m/n/10 comparative \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 626--626\n", - "[]\\OT1/phv/m/n/10 so-called (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 627--627\n", - "[]\\OT1/phv/m/n/10 charming \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1248) in paragraph at lines 628--629\n", - "[]\\OT1/phv/m/n/10 a mark, a cut or an in-jury made\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 638--638\n", - "[]\\OT1/phv/m/n/10 disappointment\n", - "\n", - "Underfull \\hbox (badness 1997) in paragraph at lines 638--639\n", - "[]\\OT1/phv/m/n/10 the feel-ing of be-ing sad be-cause\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 615--639\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 657--657\n", - "[]\\OT1/phv/m/n/10 appropriately \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 658--658\n", - "[]\\OT1/phv/m/n/10 universal \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 663--663\n", - "[]\\OT1/phv/m/n/10 miserable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 639--665\n", - "[] \n", - "[14]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 665--666\n", - "[]\\OT1/phv/m/n/10 to sep-a-rate some-body/something\n", - "\n", - "Underfull \\hbox (badness 7168) in paragraph at lines 665--666\n", - "\\OT1/phv/m/n/10 phys-i-cally or so-cially from other\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 678--678\n", - "[]\\OT1/phv/m/n/10 consistently \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1831) in paragraph at lines 680--681\n", - "[]\\OT1/phv/m/n/10 to make some-body feel ex-tremely\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 683--683\n", - "[]\\OT1/phv/m/n/10 determination\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 684--684\n", - "[]\\OT1/phv/m/n/10 inevitable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 665--691\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2626) in paragraph at lines 694--695\n", - "[]\\OT1/phv/m/n/10 to make some-body de-cide to do\n", - "\n", - "Underfull \\hbox (badness 1117) in paragraph at lines 694--695\n", - "\\OT1/phv/m/n/10 some-thing; to cause some-thing to\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 699--699\n", - "[]\\OT1/phv/m/n/10 additionally \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 3758) in paragraph at lines 701--702\n", - "[]\\OT1/phv/m/n/10 to un-der-stand or think of some-\n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 708--709\n", - "[]\\OT1/phv/m/n/10 a small sym-bol on a com-puter or\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 709--709\n", - "[]\\OT1/phv/m/n/10 consumption\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 710--710\n", - "[]\\OT1/phv/m/n/10 sufficient \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 712--713\n", - "[]\\OT1/phv/m/n/10 to have some-body/something as\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 691--719\n", - "[] \n", - "[15]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 723--724\n", - "[]\\OT1/phv/m/n/10 to fas-ten a tag onto some-\n", - "\n", - "Underfull \\hbox (badness 2150) in paragraph at lines 728--729\n", - "[]\\OT1/phv/m/n/10 building ma-te-rial that is made by\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 731--731\n", - "[]\\OT1/phv/m/n/10 equivalent \\OT1/phv/m/sl/10 (ad-jec-\n", - ")\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 719--27\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 719--27\n", - "\n", - "\n", - "(/home/jelle/wd/words/english/output/../build/oxford_5000_exclusive_shuffle_C1.\n", - "tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1924) in paragraph at lines 4--5\n", - "[]\\OT1/phv/m/n/10 connected with or be-long-ing to a\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--11\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 14--14\n", - "[]\\OT1/phv/m/n/10 documentation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 17--17\n", - "[]\\OT1/phv/m/n/10 undoubtedly \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1286) in paragraph at lines 18--19\n", - "[]\\OT1/phv/m/n/10 the act of sug-gest-ing or choos-ing\n", - "\n", - "Underfull \\hbox (badness 1558) in paragraph at lines 21--22\n", - "[]\\OT1/phv/m/n/10 to pro-vide enough of what some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 24--24\n", - "[]\\OT1/phv/m/n/10 medieval \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 5359) in paragraph at lines 24--25\n", - "[]\\OT1/phv/m/n/10 connected with the Mid-dle Ages\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 30--30\n", - "[]\\OT1/phv/m/n/10 intermediate \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 11--35\n", - "[] \n", - "[16]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 36--36\n", - "[]\\OT1/phv/m/n/10 notorious \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 39--39\n", - "[]\\OT1/phv/m/n/10 legitimate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 51--51\n", - "[]\\OT1/phv/m/n/10 collective \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 58--59\n", - "[]\\OT1/phv/m/n/10 to look steadily at some-\n", - "\n", - "Underfull \\hbox (badness 6842) in paragraph at lines 58--59\n", - "\\OT1/phv/m/n/10 body/something for a long time,\n", - "\n", - "Underfull \\hbox (badness 2735) in paragraph at lines 60--61\n", - "[]\\OT1/phv/m/n/10 a per-son or an or-ga-ni-za-tion that\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 35--61\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1509) in paragraph at lines 69--70\n", - "[]\\OT1/phv/m/n/10 a writ-ten state-ment de-scrib-ing the\n", - "\n", - "Underfull \\hbox (badness 3623) in paragraph at lines 71--72\n", - "[]\\OT1/phv/m/n/10 to show your ap-proval of some-\n", - "\n", - "Underfull \\hbox (badness 6910) in paragraph at lines 71--72\n", - "\\OT1/phv/m/n/10 body/something by clap-ping your\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 75--75\n", - "[]\\OT1/phv/m/n/10 undergraduate\n", - "\n", - "Underfull \\hbox (badness 1466) in paragraph at lines 80--81\n", - "[]\\OT1/phv/m/n/10 a state of peace-ful ex-is-tence and\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 61--85\n", - "[] \n", - "[17]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 86--87\n", - "[]\\OT1/phv/m/n/10 the act of pre-vent-ing some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 86--87\n", - "\\OT1/phv/m/n/10 body/something from en-ter-ing a\n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 87--88\n", - "[]\\OT1/phv/m/n/10 the move-ment ev-ery year of large\n", - "\n", - "Underfull \\hbox (badness 1521) in paragraph at lines 92--93\n", - "[]\\OT1/phv/m/n/10 to change the shape, ap-pear-ance\n", - "\n", - "Underfull \\hbox (badness 1824) in paragraph at lines 94--95\n", - "\\OT1/phv/m/n/10 i-ties that peo-ple ad-mire, such as\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 96--96\n", - "[]\\OT1/phv/m/n/10 reconstruction\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 100--100\n", - "[]\\OT1/phv/m/n/10 elaborate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2073) in paragraph at lines 102--103\n", - "\\OT1/phv/m/n/10 es-pe-cially one that has not been\n", - "\n", - "Underfull \\hbox (badness 3803) in paragraph at lines 106--106\n", - "[]\\OT1/phv/m/n/10 substantial \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 85--109\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1019) in paragraph at lines 114--115\n", - "[]\\OT1/phv/m/n/10 at an equal dis-tance be-tween two\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 118--118\n", - "[]\\OT1/phv/m/n/10 prominent \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 3323) in paragraph at lines 127--128\n", - "[]\\OT1/phv/m/n/10 to make some-thing us-ing spe-cial\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 109--133\n", - "[] \n", - "[18]\n", - "Underfull \\hbox (badness 2970) in paragraph at lines 134--134\n", - "[]\\OT1/phv/m/n/10 parliamentary \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 136--137\n", - "[]\\OT1/phv/m/n/10 the fact of in-clud-ing some-\n", - "\n", - "Underfull \\hbox (badness 1694) in paragraph at lines 136--137\n", - "\\OT1/phv/m/n/10 body/something; the fact of be-ing\n", - "\n", - "Underfull \\hbox (badness 1087) in paragraph at lines 138--139\n", - "[]\\OT1/phv/m/n/10 to have a par-tic-u-lar opin-ion about\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 153--153\n", - "[]\\OT1/phv/m/n/10 compensation\n", - "\n", - "Underfull \\hbox (badness 2418) in paragraph at lines 153--154\n", - "[]\\OT1/phv/m/n/10 something, es-pe-cially money, that\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 133--154\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1062) in paragraph at lines 154--155\n", - "\\OT1/phv/m/n/10 re-lates with an-other, the facts are\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 165--165\n", - "[]\\OT1/phv/m/n/10 protective \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 170--170\n", - "[]\\OT1/phv/m/n/10 instrumental \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1281) in paragraph at lines 172--173\n", - "[]\\OT1/phv/m/n/10 to hit your foot against some-thing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 154--177\n", - "[] \n", - "[19]\n", - "Underfull \\hbox (badness 1052) in paragraph at lines 177--178\n", - "\\OT1/phv/m/n/10 be-cause great de-mands are be-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 182--182\n", - "[]\\OT1/phv/m/n/10 accomplishment\n", - "\n", - "Underfull \\hbox (badness 6575) in paragraph at lines 184--184\n", - "[]\\OT1/phv/m/n/10 suspicious \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 5189) in paragraph at lines 184--185\n", - "[]\\OT1/phv/m/n/10 feeling that some-body has done\n", - "\n", - "Underfull \\hbox (badness 3323) in paragraph at lines 191--192\n", - "[]\\OT1/phv/m/n/10 that most peo-ple con-sider to be\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 192--192\n", - "[]\\OT1/phv/m/n/10 capitalist \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 195--195\n", - "[]\\OT1/phv/m/n/10 appealing \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 196--196\n", - "[]\\OT1/phv/m/n/10 neighbouring \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 177--201\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 206--206\n", - "[]\\OT1/phv/m/n/10 theoretical \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 210--210\n", - "[]\\OT1/phv/m/n/10 infamous \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 213--214\n", - "[]\\OT1/phv/m/n/10 to move or make some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 213--214\n", - "\\OT1/phv/m/n/10 body/something move sud-denly\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 214--214\n", - "[]\\OT1/phv/m/n/10 interactive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2781) in paragraph at lines 218--218\n", - "[]\\OT1/phv/m/n/10 prestigious \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 201--225\n", - "[] \n", - "[20]\n", - "Underfull \\hbox (badness 5064) in paragraph at lines 233--233\n", - "[]\\OT1/phv/m/n/10 ideological \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 237--238\n", - "[]\\OT1/phv/m/n/10 to con-trol or in-flu-ence some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 239--239\n", - "[]\\OT1/phv/m/n/10 constitutional \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1038) in paragraph at lines 247--248\n", - "[]\\OT1/phv/m/n/10 used to in-tro-duce more ex-act and\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 225--248\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 249--249\n", - "[]\\OT1/phv/m/n/10 diplomatic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1490) in paragraph at lines 249--250\n", - "[]\\OT1/phv/m/n/10 connected with man-ag-ing re-la-tions\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 255--256\n", - "[]\\OT1/phv/m/n/10 only; not in-volv-ing some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 256--256\n", - "[]\\OT1/phv/m/n/10 configuration\n", - "\n", - "Underfull \\hbox (badness 1533) in paragraph at lines 263--264\n", - "\\OT1/phv/m/n/10 light that can be used for cut-ting\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 268--268\n", - "[]\\OT1/phv/m/n/10 explosive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2744) in paragraph at lines 270--271\n", - "[]\\OT1/phv/m/n/10 willing to un-der-stand and re-spect\n", - "\n", - "Underfull \\hbox (badness 1237) in paragraph at lines 270--271\n", - "\\OT1/phv/m/n/10 other peo-ple's be-haviour, opin-ions,\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 248--271\n", - "[] \n", - "[21]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 275--275\n", - "[]\\OT1/phv/m/n/10 structural \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2359) in paragraph at lines 275--276\n", - "[]\\OT1/phv/m/n/10 connected with the way in which\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 276--277\n", - "[]\\OT1/phv/m/n/10 the act of sep-a-rat-ing some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 280--280\n", - "[]\\OT1/phv/m/n/10 immense \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 4726) in paragraph at lines 285--285\n", - "[]\\OT1/phv/m/n/10 psychiatric \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 287--287\n", - "[]\\OT1/phv/m/n/10 aesthetic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 271--293\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 296--297\n", - "[]\\OT1/phv/m/n/10 to fail to take care of some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 301--302\n", - "[]\\OT1/phv/m/n/10 to for-mally sug-gest that some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 312--312\n", - "[]\\OT1/phv/m/n/10 countless \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 315--315\n", - "[]\\OT1/phv/m/n/10 transparency\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 318--318\n", - "[]\\OT1/phv/m/n/10 sceptical \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 293--319\n", - "[] \n", - "[22]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 321--321\n", - "[]\\OT1/phv/m/n/10 encouragement\n", - "\n", - "Underfull \\hbox (badness 1609) in paragraph at lines 328--328\n", - "[]\\OT1/phv/m/n/10 preliminary \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 329--329\n", - "[]\\OT1/phv/m/n/10 supreme \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1024) in paragraph at lines 331--332\n", - "[]\\OT1/phv/m/n/10 sexually at-tracted to other women;\n", - "\n", - "Underfull \\hbox (badness 5036) in paragraph at lines 332--332\n", - "[]\\OT1/phv/m/n/10 long-standing (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 343--343\n", - "[]\\OT1/phv/m/n/10 classification\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 319--345\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 5064) in paragraph at lines 348--348\n", - "[]\\OT1/phv/m/n/10 insufficient \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 349--349\n", - "[]\\OT1/phv/m/n/10 accumulation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 351--351\n", - "[]\\OT1/phv/m/n/10 experimental \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 1448) in paragraph at lines 357--358\n", - "[]\\OT1/phv/m/n/10 affecting or in-volv-ing only a small\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 364--364\n", - "[]\\OT1/phv/m/n/10 theatrical \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 4378) in paragraph at lines 365--365\n", - "[]\\OT1/phv/m/n/10 worthwhile \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 367--367\n", - "[]\\OT1/phv/m/n/10 engaging \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 368--368\n", - "[]\\OT1/phv/m/n/10 philosophical \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 345--371\n", - "[] \n", - "[23]\n", - "Underfull \\hbox (badness 1412) in paragraph at lines 371--371\n", - "[]\\OT1/phv/m/n/10 operational \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2359) in paragraph at lines 371--372\n", - "[]\\OT1/phv/m/n/10 connected with the way in which\n", - "\n", - "Underfull \\hbox (badness 5064) in paragraph at lines 376--376\n", - "[]\\OT1/phv/m/n/10 occasional \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 380--380\n", - "[]\\OT1/phv/m/n/10 persistent \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 383--384\n", - "[]\\OT1/phv/m/n/10 to ask God to pro-tect some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 386--386\n", - "[]\\OT1/phv/m/n/10 exclusive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 387--387\n", - "[]\\OT1/phv/m/n/10 embarrassment\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 391--391\n", - "[]\\OT1/phv/m/n/10 transmission\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 392--392\n", - "[]\\OT1/phv/m/n/10 maintenance\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 394--394\n", - "[]\\OT1/phv/m/n/10 profound \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 371--396\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1953) in paragraph at lines 397--397\n", - "[]\\OT1/phv/m/n/10 meaningful \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 413--413\n", - "[]\\OT1/phv/m/n/10 decision-making\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 417--418\n", - "[]\\OT1/phv/m/n/10 a state-ment show-ing that two\n", - "\n", - "Underfull \\hbox (badness 1924) in paragraph at lines 417--418\n", - "\\OT1/phv/m/n/10 amounts or val-ues are equal, for\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 418--418\n", - "[]\\OT1/phv/m/n/10 defensive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 418--419\n", - "[]\\OT1/phv/m/n/10 protecting some-body/something\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 396--420\n", - "[] \n", - "[24]\n", - "Underfull \\hbox (badness 2134) in paragraph at lines 420--421\n", - "[]\\OT1/phv/m/n/10 to make some-thing such as time\n", - "\n", - "Underfull \\hbox (badness 2173) in paragraph at lines 428--429\n", - "[]\\OT1/phv/m/n/10 the par-tic-u-lar method you use to\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 429--429\n", - "[]\\OT1/phv/m/n/10 integrated \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1803) in paragraph at lines 429--430\n", - "[]\\OT1/phv/m/n/10 in which many dif-fer-ent parts are\n", - "\n", - "Underfull \\hbox (badness 4467) in paragraph at lines 430--431\n", - "[]\\OT1/phv/m/n/10 according to a rule or the way\n", - "\n", - "Underfull \\hbox (badness 1005) in paragraph at lines 435--436\n", - "\\OT1/phv/m/n/10 God or a god, by say-ing prayers,\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 420--439\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1286) in paragraph at lines 442--443\n", - "\\OT1/phv/m/n/10 thing that is painful or un-pleas-ant\n", - "\n", - "Underfull \\hbox (badness 3792) in paragraph at lines 449--450\n", - "[]\\OT1/phv/m/n/10 the crime of at-tack-ing some-body\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 450--450\n", - "[]\\OT1/phv/m/n/10 representation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 450--451\n", - "[]\\OT1/phv/m/n/10 the act of pre-sent-ing some-\n", - "\n", - "Underfull \\hbox (badness 1565) in paragraph at lines 453--454\n", - "\\OT1/phv/m/n/10 and an-i-mals tend to be-have in a\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 454--454\n", - "[]\\OT1/phv/m/n/10 revolutionary \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 458--458\n", - "[]\\OT1/phv/m/n/10 methodology\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 439--461\n", - "[] \n", - "[25]\n", - "Underfull \\hbox (badness 1342) in paragraph at lines 467--468\n", - "\\OT1/phv/m/n/10 usu-ally in se-cret; an oc-ca-sion on\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 469--470\n", - "[]\\OT1/phv/m/n/10 to strongly crit-i-cize some-\n", - "\n", - "Underfull \\hbox (badness 4467) in paragraph at lines 469--470\n", - "\\OT1/phv/m/n/10 body/something that you think is\n", - "\n", - "Underfull \\hbox (badness 1533) in paragraph at lines 470--471\n", - "[]\\OT1/phv/m/n/10 to fas-ten one thing to an-other or\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 473--473\n", - "[]\\OT1/phv/m/n/10 residential \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1137) in paragraph at lines 473--474\n", - "[]\\OT1/phv/m/n/10 suitable for liv-ing in; con-sist-ing of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 478--478\n", - "[]\\OT1/phv/m/n/10 statistical \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 461--484\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 489--489\n", - "[]\\OT1/phv/m/n/10 discrimination\n", - "\n", - "Underfull \\hbox (badness 1342) in paragraph at lines 493--494\n", - "[]\\OT1/phv/m/n/10 to watch some-body/something and\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 503--503\n", - "[]\\OT1/phv/m/n/10 substantially \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 509--509\n", - "[]\\OT1/phv/m/n/10 renowned \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 484--511\n", - "[] \n", - "[26]\n", - "Underfull \\hbox (badness 4353) in paragraph at lines 513--513\n", - "[]\\OT1/phv/m/n/10 mandatory \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 517--517\n", - "[]\\OT1/phv/m/n/10 respective \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1314) in paragraph at lines 517--518\n", - "[]\\OT1/phv/m/n/10 belonging or re-lat-ing sep-a-rately to\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 522--522\n", - "[]\\OT1/phv/m/n/10 municipal \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1924) in paragraph at lines 522--523\n", - "[]\\OT1/phv/m/n/10 connected with or be-long-ing to a\n", - "\n", - "Underfull \\hbox (badness 1028) in paragraph at lines 523--524\n", - "[]\\OT1/phv/m/n/10 used to de-scribe feel-ings that two\n", - "\n", - "Underfull \\hbox (badness 1019) in paragraph at lines 529--530\n", - "[]\\OT1/phv/m/n/10 to re-ply to some-body by try-ing to\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 530--530\n", - "[]\\OT1/phv/m/n/10 damaging \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 511--533\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 550--550\n", - "[]\\OT1/phv/m/n/10 profitable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 4467) in paragraph at lines 555--556\n", - "[]\\OT1/phv/m/n/10 the ideas and opin-ions that are\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 533--556\n", - "[] \n", - "[27]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 556--556\n", - "[]\\OT1/phv/m/n/10 frustrated \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1496) in paragraph at lines 556--557\n", - "[]\\OT1/phv/m/n/10 feeling an-noyed and im-pa-tient be-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 559--559\n", - "[]\\OT1/phv/m/n/10 manipulation\n", - "\n", - "Underfull \\hbox (badness 1092) in paragraph at lines 561--562\n", - "\\OT1/phv/m/n/10 talks on a ra-dio or tele-vi-sion pro-\n", - "\n", - "Underfull \\hbox (badness 2393) in paragraph at lines 562--563\n", - "[]\\OT1/phv/m/n/10 to be-gin some-thing again af-ter it\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 566--566\n", - "[]\\OT1/phv/m/n/10 long-time (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 5091) in paragraph at lines 573--573\n", - "[]\\OT1/phv/m/n/10 systematic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 556--581\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 588--588\n", - "[]\\OT1/phv/m/n/10 contradiction\n", - "\n", - "Underfull \\hbox (badness 1308) in paragraph at lines 591--591\n", - "[]\\OT1/phv/m/n/10 organizational \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 597--597\n", - "[]\\OT1/phv/m/n/10 architectural \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 2042) in paragraph at lines 601--602\n", - "\\OT1/phv/m/n/10 in-for-ma-tion or ex-press-ing a doubt\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 581--602\n", - "[] \n", - "[28]\n", - "Underfull \\hbox (badness 1024) in paragraph at lines 608--609\n", - "\\OT1/phv/m/n/10 place or per-son, es-pe-cially a per-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 610--610\n", - "[]\\OT1/phv/m/n/10 humanitarian \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 616--616\n", - "[]\\OT1/phv/m/n/10 disastrous \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1478) in paragraph at lines 618--618\n", - "[]\\OT1/phv/m/n/10 specialized \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1184) in paragraph at lines 625--626\n", - "[]\\OT1/phv/m/n/10 the ac-tion or pro-cess of chang-ing\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 602--626\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1067) in paragraph at lines 627--628\n", - "\\OT1/phv/m/n/10 with slow steady de-vel-op-ment and\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 628--628\n", - "[]\\OT1/phv/m/n/10 accountability\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 636--637\n", - "[]\\OT1/phv/m/n/10 to make some-body/something\n", - "\n", - "Underfull \\hbox (badness 1490) in paragraph at lines 637--638\n", - "[]\\OT1/phv/m/n/10 to state clearly and def-i-nitely that\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 642--643\n", - "[]\\OT1/phv/m/n/10 a long, steady look at some-\n", - "\n", - "Underfull \\hbox (badness 2293) in paragraph at lines 650--651\n", - "[]\\OT1/phv/m/n/10 shelter or pro-tec-tion from dan-ger,\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 651--651\n", - "[]\\OT1/phv/m/n/10 vulnerable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 626--652\n", - "[] \n", - "[29]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 658--659\n", - "[]\\OT1/phv/m/n/10 a qual-ity or fea-ture of some-\n", - "\n", - "Underfull \\hbox (badness 2970) in paragraph at lines 662--662\n", - "[]\\OT1/phv/m/n/10 communist \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 4699) in paragraph at lines 665--666\n", - "[]\\OT1/phv/m/n/10 very ob-vi-ous, easy to no-tice or\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 671--671\n", - "[]\\OT1/phv/m/n/10 irrelevant \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 652--679\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2088) in paragraph at lines 680--681\n", - "\\OT1/phv/m/n/10 whether your ac-tions are right or\n", - "\n", - "Underfull \\hbox (badness 1215) in paragraph at lines 691--692\n", - "[]\\OT1/phv/m/n/10 a pat-tern of straight lines, usu-ally\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 692--692\n", - "[]\\OT1/phv/m/n/10 provincial \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 679--704\n", - "[] \n", - "[30]\n", - "Underfull \\hbox (badness 2772) in paragraph at lines 705--705\n", - "[]\\OT1/phv/m/n/10 indigenous \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 4940) in paragraph at lines 712--713\n", - "[]\\OT1/phv/m/n/10 the pro-cess of show-ing, prov-ing\n", - "\n", - "Underfull \\hbox (badness 1077) in paragraph at lines 718--719\n", - "[]\\OT1/phv/m/n/10 if you in-cur some-thing un-pleas-ant,\n", - "\n", - "Underfull \\hbox (badness 1635) in paragraph at lines 722--723\n", - "\\OT1/phv/m/n/10 above the ground from which the\n", - "\n", - "Underfull \\hbox (badness 1057) in paragraph at lines 722--723\n", - "\\OT1/phv/m/n/10 that grows from this and sup-ports\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 725--725\n", - "[]\\OT1/phv/m/n/10 consciousness\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 726--726\n", - "[]\\OT1/phv/m/n/10 intriguing \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 704--728\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 6542) in paragraph at lines 732--732\n", - "[]\\OT1/phv/m/n/10 competent \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1024) in paragraph at lines 743--744\n", - "[]\\OT1/phv/m/n/10 an of-fi-cial ex-am-i-na-tion of busi-ness\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 745--745\n", - "[]\\OT1/phv/m/n/10 dedicated \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 746--746\n", - "[]\\OT1/phv/m/n/10 nonetheless \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 747--748\n", - "[]\\OT1/phv/m/n/10 better in qual-ity than some-\n", - "\n", - "Underfull \\hbox (badness 1762) in paragraph at lines 747--748\n", - "\\OT1/phv/m/n/10 body/something else; greater than\n", - "\n", - "Underfull \\hbox (badness 3826) in paragraph at lines 751--751\n", - "[]\\OT1/phv/m/n/10 misleading \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 728--752\n", - "[] \n", - "[31]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 761--761\n", - "[]\\OT1/phv/m/n/10 magnetic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1377) in paragraph at lines 762--763\n", - "[]\\OT1/phv/m/n/10 an ar-gu-ment be-tween two peo-ple,\n", - "\n", - "Underfull \\hbox (badness 2027) in paragraph at lines 764--765\n", - "[]\\OT1/phv/m/n/10 an agree-ment made be-tween two\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 765--766\n", - "[]\\OT1/phv/m/n/10 to show an im-age of some-\n", - "\n", - "Underfull \\hbox (badness 3826) in paragraph at lines 766--766\n", - "[]\\OT1/phv/m/n/10 compelling \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 4621) in paragraph at lines 768--769\n", - "[]\\OT1/phv/m/n/10 the ac-tiv-ity of play-ing games of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 773--773\n", - "[]\\OT1/phv/m/n/10 presumably \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 752--776\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1845) in paragraph at lines 778--779\n", - "\\OT1/phv/m/n/10 to leave the po-lice or the armed\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 780--781\n", - "[]\\OT1/phv/m/n/10 to look quickly at some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 782--782\n", - "[]\\OT1/phv/m/n/10 versus \\OT1/phv/m/sl/10 (prepo-si-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 783--783\n", - "[]\\OT1/phv/m/n/10 thought-provoking\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 787--787\n", - "[]\\OT1/phv/m/n/10 intensive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 790--790\n", - "[]\\OT1/phv/m/n/10 accordingly \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 776--800\n", - "[] \n", - "[32]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 800--800\n", - "[]\\OT1/phv/m/n/10 productive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 6575) in paragraph at lines 804--804\n", - "[]\\OT1/phv/m/n/10 mathematical \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 810--811\n", - "[]\\OT1/phv/m/n/10 to pro-vide weapons for your-\n", - "\n", - "Underfull \\hbox (badness 2393) in paragraph at lines 810--811\n", - "\\OT1/phv/m/n/10 self/somebody in or-der to fight a\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 815--815\n", - "[]\\OT1/phv/m/n/10 authentic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 3199) in paragraph at lines 817--818\n", - "[]\\OT1/phv/m/n/10 an ac-count writ-ten by some-body,\n", - "\n", - "Underfull \\hbox (badness 2469) in paragraph at lines 825--825\n", - "[]\\OT1/phv/m/n/10 administrative \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 800--826\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 831--831\n", - "[]\\OT1/phv/m/n/10 rehabilitation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 841--841\n", - "[]\\OT1/phv/m/n/10 symbolic \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 843--843\n", - "[]\\OT1/phv/m/n/10 imprisonment\n", - "\n", - "Underfull \\hbox (badness 1478) in paragraph at lines 843--844\n", - "[]\\OT1/phv/m/n/10 the act of putting some-body in a\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 826--847\n", - "[] \n", - "[33]\n", - "Underfull \\hbox (badness 1895) in paragraph at lines 855--856\n", - "\\OT1/phv/m/n/10 will hap-pen or have hap-pened to\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 847--870\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2698) in paragraph at lines 870--871\n", - "[]\\OT1/phv/m/n/10 to leave a per-son or place very\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 871--871\n", - "[]\\OT1/phv/m/n/10 implementation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 875--876\n", - "[]\\OT1/phv/m/n/10 to take the place of some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 881--881\n", - "[]\\OT1/phv/m/n/10 ecological \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1584) in paragraph at lines 883--884\n", - "[]\\OT1/phv/m/n/10 the pro-cess of ques-tion-ing peo-ple\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 870--893\n", - "[] \n", - "[34]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 897--897\n", - "[]\\OT1/phv/m/n/10 distinctive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1221) in paragraph at lines 898--899\n", - "[]\\OT1/phv/m/n/10 a place where young chil-dren are\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 912--912\n", - "[]\\OT1/phv/m/n/10 establishment\n", - "\n", - "Underfull \\hbox (badness 1184) in paragraph at lines 913--914\n", - "[]\\OT1/phv/m/n/10 a small amount of some-thing that\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 893--916\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 922--922\n", - "[]\\OT1/phv/m/n/10 applicable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 7186) in paragraph at lines 931--931\n", - "[]\\OT1/phv/m/n/10 accessible \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 933--933\n", - "[]\\OT1/phv/m/n/10 disturbing \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 4673) in paragraph at lines 936--937\n", - "[]\\OT1/phv/m/n/10 to stop some-thing un-pleas-ant or\n", - "\n", - "Underfull \\hbox (badness 1968) in paragraph at lines 937--938\n", - "[]\\OT1/phv/m/n/10 connected with the in-side part of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 938--939\n", - "[]\\OT1/phv/m/n/10 to look closely at some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 916--940\n", - "[] \n", - "[35]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 941--941\n", - "[]\\OT1/phv/m/n/10 imminent \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 947--947\n", - "[]\\OT1/phv/m/n/10 scattered \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 950--950\n", - "[]\\OT1/phv/m/n/10 functional \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1082) in paragraph at lines 958--959\n", - "[]\\OT1/phv/m/n/10 connected with the sense of sight\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 960--960\n", - "[]\\OT1/phv/m/n/10 correspondent\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 962--962\n", - "[]\\OT1/phv/m/n/10 whatsoever \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 940--964\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 973--973\n", - "[]\\OT1/phv/m/n/10 collaboration\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 978--978\n", - "[]\\OT1/phv/m/n/10 correspondence\n", - "\n", - "Underfull \\hbox (badness 2951) in paragraph at lines 985--985\n", - "[]\\OT1/phv/m/n/10 destructive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 964--988\n", - "[] \n", - "[36]\n", - "Underfull \\hbox (badness 1442) in paragraph at lines 997--998\n", - "[]\\OT1/phv/m/n/10 to for-mally promise to give or do\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 988--1008\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1010--1011\n", - "[]\\OT1/phv/m/n/10 to take the place of some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1010--1011\n", - "\\OT1/phv/m/n/10 body/something else; to use\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1010--1011\n", - "\\OT1/phv/m/n/10 some-body/something in-stead of\n", - "\n", - "Underfull \\hbox (badness 1048) in paragraph at lines 1013--1014\n", - "\\OT1/phv/m/n/10 se-cret or hid-den in-for-ma-tion about\n", - "\n", - "Underfull \\hbox (badness 1043) in paragraph at lines 1016--1017\n", - "\\OT1/phv/m/n/10 der-wa-ter too long and you can-not\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1018--1018\n", - "[]\\OT1/phv/m/n/10 congregation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1023--1024\n", - "[]\\OT1/phv/m/n/10 to show some-body/something\n", - "\n", - "Underfull \\hbox (badness 4353) in paragraph at lines 1023--1024\n", - "\\OT1/phv/m/n/10 in a pic-ture; to de-scribe some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1029--1029\n", - "[]\\OT1/phv/m/n/10 thoughtful \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1008--1030\n", - "[] \n", - "[37]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1032--1033\n", - "[]\\OT1/phv/m/n/10 to re-duce some-thing, es-pe-cially\n", - "\n", - "Underfull \\hbox (badness 4132) in paragraph at lines 1045--1046\n", - "[]\\OT1/phv/m/n/10 having the qual-i-ties that de-serve\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1047--1047\n", - "[]\\OT1/phv/m/n/10 upcoming \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2318) in paragraph at lines 1048--1048\n", - "[]\\OT1/phv/m/n/10 successive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1030--1055\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1056--1056\n", - "[]\\OT1/phv/m/n/10 legendary \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 5175) in paragraph at lines 1059--1060\n", - "[]\\OT1/phv/m/n/10 a per-son who su-per-vises some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1068--1069\n", - "\\OT1/phv/m/n/10 or pro-tects some-body/something\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1070--1070\n", - "[]\\OT1/phv/m/n/10 inappropriate \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1076--1076\n", - "[]\\OT1/phv/m/n/10 desirable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1055--1079\n", - "[] \n", - "[38]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1079--1079\n", - "[]\\OT1/phv/m/n/10 effectiveness\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1086--1087\n", - "[]\\OT1/phv/m/n/10 to stop; to make some-\n", - "\n", - "Underfull \\hbox (badness 1565) in paragraph at lines 1095--1096\n", - "[]\\OT1/phv/m/n/10 to make some-body/something less\n", - "\n", - "Underfull \\hbox (badness 1968) in paragraph at lines 1097--1097\n", - "[]\\OT1/phv/m/n/10 large-scale (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1079--1102\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1103--1103\n", - "[]\\OT1/phv/m/n/10 frustrating \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1112) in paragraph at lines 1103--1104\n", - "\\OT1/phv/m/n/10 pa-tient be-cause you can-not do or\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1125--1125\n", - "[]\\OT1/phv/m/n/10 endorsement\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1125--1126\n", - "[]\\OT1/phv/m/n/10 a pub-lic state-ment or ac-tion\n", - "\n", - "Underfull \\hbox (badness 4981) in paragraph at lines 1125--1126\n", - "\\OT1/phv/m/n/10 show-ing that you sup-port some-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1102--1129\n", - "[] \n", - "[39]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1133--1133\n", - "[]\\OT1/phv/m/n/10 regulatory \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1138--1138\n", - "[]\\OT1/phv/m/n/10 encouraging \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1138--1139\n", - "[]\\OT1/phv/m/n/10 that gives some-body sup-port,\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1141--1141\n", - "[]\\OT1/phv/m/n/10 administrator\n", - "\n", - "Underfull \\hbox (badness 3482) in paragraph at lines 1147--1148\n", - "[]\\OT1/phv/m/n/10 a de-vice con-tain-ing pa-per, sand,\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1129--1152\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1162--1162\n", - "[]\\OT1/phv/m/n/10 cognitive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1609) in paragraph at lines 1166--1167\n", - "\\OT1/phv/m/n/10 or re-mem-ber some-body/something,\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1174--1174\n", - "[]\\OT1/phv/m/n/10 influential \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1152--1175\n", - "[] \n", - "[40]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1176--1176\n", - "[]\\OT1/phv/m/n/10 exclusively \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1184--1184\n", - "[]\\OT1/phv/m/n/10 empirical \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1186--1186\n", - "[]\\OT1/phv/m/n/10 transformation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1186--1187\n", - "[]\\OT1/phv/m/n/10 a com-plete change in some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1189--1189\n", - "[]\\OT1/phv/m/n/10 breakthrough\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1175--1197\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1210--1211\n", - "[]\\OT1/phv/m/n/10 an act of hold-ing some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1211--1211\n", - "[]\\OT1/phv/m/n/10 supposedly \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1214--1214\n", - "[]\\OT1/phv/m/n/10 commissioner\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1197--1219\n", - "[] \n", - "[41]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1227--1227\n", - "[]\\OT1/phv/m/n/10 commentator\n", - "\n", - "Underfull \\hbox (badness 1371) in paragraph at lines 1227--1228\n", - "[]\\OT1/phv/m/n/10 a per-son who de-scribes an event\n", - "\n", - "Underfull \\hbox (badness 2088) in paragraph at lines 1230--1230\n", - "[]\\OT1/phv/m/n/10 congressional \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1231--1232\n", - "[]\\OT1/phv/m/n/10 something that helps some-\n", - "\n", - "Underfull \\hbox (badness 5475) in paragraph at lines 1231--1232\n", - "\\OT1/phv/m/n/10 body/something to de-velop bet-ter\n", - "\n", - "Underfull \\hbox (badness 6316) in paragraph at lines 1234--1235\n", - "[]\\OT1/phv/m/n/10 to give in-for-ma-tion about some-\n", - "\n", - "Underfull \\hbox (badness 4765) in paragraph at lines 1237--1238\n", - "[]\\OT1/phv/m/n/10 a per-son or thing that has the\n", - "\n", - "Underfull \\hbox (badness 1675) in paragraph at lines 1237--1238\n", - "\\OT1/phv/m/n/10 body/something else in a dif-fer-ent\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1239--1239\n", - "[]\\OT1/phv/m/n/10 legislative \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 2035) in paragraph at lines 1240--1240\n", - "[]\\OT1/phv/m/n/10 agricultural \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1219--1244\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1253--1253\n", - "[]\\OT1/phv/m/n/10 favourable \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 3803) in paragraph at lines 1256--1256\n", - "[]\\OT1/phv/m/n/10 nationwide \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 3291) in paragraph at lines 1264--1265\n", - "[]\\OT1/phv/m/n/10 support by one per-son or group\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1244--1267\n", - "[] \n", - "[42]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1268--1268\n", - "[]\\OT1/phv/m/n/10 beneath \\OT1/phv/m/sl/10 (prepo-si-\n", - "\n", - "Underfull \\hbox (badness 7168) in paragraph at lines 1268--1269\n", - "[]\\OT1/phv/m/n/10 in or to a lower po-si-tion than\n", - "\n", - "Underfull \\hbox (badness 1194) in paragraph at lines 1268--1269\n", - "\\OT1/phv/m/n/10 some-body/something; un-der some-\n", - "\n", - "Underfull \\hbox (badness 1297) in paragraph at lines 1269--1269\n", - "[]\\OT1/phv/m/n/10 inadequate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1267--1291\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 1424) in paragraph at lines 1292--1293\n", - "[]\\OT1/phv/m/n/10 the de-gree to which some-thing is\n", - "\n", - "Underfull \\hbox (badness 3068) in paragraph at lines 1296--1297\n", - "\\OT1/phv/m/n/10 ar-gu-ment be-tween two peo-ple or\n", - "\n", - "Underfull \\hbox (badness 1226) in paragraph at lines 1297--1298\n", - "[]\\OT1/phv/m/n/10 the op-por-tu-nity or abil-ity to do or\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1298--1298\n", - "[]\\OT1/phv/m/n/10 suburban \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 4013) in paragraph at lines 1299--1300\n", - "[]\\OT1/phv/m/n/10 to take a strong hold of some-\n", - "\n", - "Underfull \\hbox (badness 1320) in paragraph at lines 1300--1300\n", - "[]\\OT1/phv/m/n/10 high-profile (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1622) in paragraph at lines 1311--1312\n", - "[]\\OT1/phv/m/n/10 sound or pic-tures that have been\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1291--1315\n", - "[] \n", - "[43]\n", - "Underfull \\hbox (badness 3138) in paragraph at lines 1315--1316\n", - "[]\\OT1/phv/m/n/10 to be-come smaller, weaker, etc.;\n", - "\n", - "Underfull \\hbox (badness 5274) in paragraph at lines 1319--1320\n", - "[]\\OT1/phv/m/n/10 an un-der-stand-ing or a be-lief of\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1323--1324\n", - "[]\\OT1/phv/m/n/10 to be in charge of some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1323--1324\n", - "\\OT1/phv/m/n/10 body/something and make sure\n", - "\n", - "Underfull \\hbox (badness 4441) in paragraph at lines 1323--1324\n", - "\\OT1/phv/m/n/10 that ev-ery-thing is done cor-rectly,\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1329--1329\n", - "[]\\OT1/phv/m/n/10 assassination\n", - "\n", - "Underfull \\hbox (badness 7832) in paragraph at lines 1332--1332\n", - "[]\\OT1/phv/m/n/10 underlying \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 1400) in paragraph at lines 1335--1336\n", - "[]\\OT1/phv/m/n/10 very large in size or amount and\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1315--1340\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 2538) in paragraph at lines 1342--1342\n", - "[]\\OT1/phv/m/n/10 overwhelming \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 7832) in paragraph at lines 1350--1350\n", - "[]\\OT1/phv/m/n/10 supportive \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1350--1351\n", - "[]\\OT1/phv/m/n/10 encouraging some-body or giv-ing\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1360--1360\n", - "[]\\OT1/phv/m/n/10 non-profit (ad-jec-\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1340--1363\n", - "[] \n", - "[44]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1363--1363\n", - "[]\\OT1/phv/m/n/10 confrontation\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1367--1368\n", - "[]\\OT1/phv/m/n/10 to say of-fi-cially that some-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1367--1368\n", - "\\OT1/phv/m/n/10 body/something has a par-tic-u-lar\n", - "\n", - "Underfull \\hbox (badness 6842) in paragraph at lines 1367--1368\n", - "\\OT1/phv/m/n/10 char-ac-ter or name; to de-scribe\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1384--1384\n", - "[]\\OT1/phv/m/n/10 respectively \\OT1/phv/m/sl/10 (ad-\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1385--1386\n", - "[]\\OT1/phv/m/n/10 to hold on tightly to some-\n", - "\n", - "Underfull \\hbox (badness 1337) in paragraph at lines 1387--1388\n", - "[]\\OT1/phv/m/n/10 costing a lot of money, es-pe-cially\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1363--1389\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 7344) in paragraph at lines 1393--1394\n", - "[]\\OT1/phv/m/n/10 to be-come, or to make some-\n", - "\n", - "Underfull \\hbox (badness 2980) in paragraph at lines 1397--1398\n", - "\\OT1/phv/m/n/10 some-body/something move in this\n", - "\n", - "Underfull \\hbox (badness 1264) in paragraph at lines 1398--1399\n", - "[]\\OT1/phv/m/n/10 containing a lot of peo-ple, things,\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1399--1399\n", - "[]\\OT1/phv/m/n/10 moderate \\OT1/phv/m/sl/10 (ad-jec-\n", - "\n", - "Underfull \\hbox (badness 6910) in paragraph at lines 1402--1403\n", - "[]\\OT1/phv/m/n/10 to pull some-thing be-hind some-\n", - "\n", - "Underfull \\hbox (badness 2158) in paragraph at lines 1402--1403\n", - "\\OT1/phv/m/n/10 body/something, usu-ally along the\n", - "\n", - "Underfull \\hbox (badness 1253) in paragraph at lines 1403--1404\n", - "[]\\OT1/phv/m/n/10 to com-bine or make two or more\n", - ")\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1389--29\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1389--29\n", - "\n", - "\n", - "(/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_by_cefr_s\n", - "huffle.aux) )\n", - "(see the transcript file for additional information){/usr/share/texlive/texmf-d\n", - "ist/fonts/enc/dvips/base/8r.enc}\n", - "Output written on /home/jelle/wd/words/english/output/oxford_5000_exclusive_two\n", - "_column_by_cefr_shuffle.pdf (44 pages, 207634 bytes).\n", - "Transcript written on /home/jelle/wd/words/english/output/oxford_5000_exclusive\n", - "_two_column_by_cefr_shuffle.log.\n", - "Latexmk: Examining '/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_by_cefr_shuffle.log'\n", - "=== TeX engine is 'pdfTeX'\n", - "Latexmk: All targets (/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_by_cefr_shuffle.pdf) are up-to-date\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Latexmk: Log file says output to '/home/jelle/wd/words/english/output/oxford_5000_exclusive_two_column_by_cefr_shuffle.pdf'\n", - "Latexmk: Undoing directory change\n" - ] - }, - { - "data": { - "text/plain": [ - "0" - ] - }, - "execution_count": 15, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Run terminal cd format latexmk oxford*.tex to finish build pdfs\n", - "cmd_build = f\"latexmk -pdf -cd format/{DATASET}*.tex -outdir=../output\" \n", - "os.system(cmd_build)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "rm: cannot remove 'format/*.fls': No such file or directory\n", - "rm: cannot remove 'format/*.log': No such file or directory\n", - "rm: cannot remove 'format/*.html': No such file or directory\n", - "rm: cannot remove 'format/*.toc': No such file or directory\n", - "rm: cannot remove 'format/*.synctex*': No such file or directory\n", - "rm: cannot remove 'format/*.fdb*': No such file or directory\n", - "rm: cannot remove 'format/*.aux': No such file or directory\n", - "rm: cannot remove 'format/*.pdf': No such file or directory\n", - "rm: cannot remove './*.fls': No such file or directory\n", - "rm: cannot remove './*.log': No such file or directory\n", - "rm: cannot remove './*.html': No such file or directory\n", - "rm: cannot remove './*.toc': No such file or directory\n", - "rm: cannot remove './*.synctex*': No such file or directory\n", - "rm: cannot remove './*.fdb*': No such file or directory\n", - "rm: cannot remove './*.aux': No such file or directory\n", - "rm: cannot remove 'output/*.synctex*': No such file or directory\n" - ] - }, - { - "data": { - "text/plain": [ - "256" - ] - }, - "execution_count": 16, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# Clean any build files in output/\n", - "files_to_remove = [\"*.fls\", \"*.log\", \"*.html\", \"*.toc\", \"*.synctex*\", \"*.fdb*\", \"*.aux\"]\n", - "cmd_cleanup_output = \"rm \"+\" \".join(f\"output/{f}\" for f in files_to_remove)\n", - "cmd_cleanup_format = \"rm \"+\" \".join(f\"format/{f}\" for f in files_to_remove+[\"*.pdf\"])\n", - "cmd_cleanup_main = \"rm \"+\" \".join(f\"./{f}\" for f in files_to_remove)\n", - "os.system(\";\".join((cmd_cleanup_format, cmd_cleanup_main, cmd_cleanup_output)))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3.10.4 ('words')", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.10.12" - }, - "vscode": { - "interpreter": { - "hash": "18f31073cf804094dd95fd57955d17dd2adebf1ed8efc5124bc1efb23479e449" - } - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/english/img/oxford_5000_exclusive_by_cefr_sample.jpg b/img/oxford_5000_exclusive_by_cefr_sample.jpg similarity index 100% rename from english/img/oxford_5000_exclusive_by_cefr_sample.jpg rename to img/oxford_5000_exclusive_by_cefr_sample.jpg diff --git a/english/img/oxford_5000_exclusive_by_cefr_sample.pdf b/img/oxford_5000_exclusive_by_cefr_sample.pdf similarity index 100% rename from english/img/oxford_5000_exclusive_by_cefr_sample.pdf rename to img/oxford_5000_exclusive_by_cefr_sample.pdf diff --git a/english/img/oxford_5000_exclusive_two_column_by_cefr_shuffle_sample.jpg b/img/oxford_5000_exclusive_two_column_by_cefr_shuffle_sample.jpg similarity index 100% rename from english/img/oxford_5000_exclusive_two_column_by_cefr_shuffle_sample.jpg rename to img/oxford_5000_exclusive_two_column_by_cefr_shuffle_sample.jpg diff --git a/english/img/oxford_5000_exclusive_two_column_by_cefr_shuffle_sample.pdf b/img/oxford_5000_exclusive_two_column_by_cefr_shuffle_sample.pdf similarity index 100% rename from english/img/oxford_5000_exclusive_two_column_by_cefr_shuffle_sample.pdf rename to img/oxford_5000_exclusive_two_column_by_cefr_shuffle_sample.pdf diff --git a/english/img/preview.jpg b/img/preview.jpg similarity index 100% rename from english/img/preview.jpg rename to img/preview.jpg diff --git a/english/img/preview.xcf b/img/preview.xcf similarity index 100% rename from english/img/preview.xcf rename to img/preview.xcf diff --git a/spanish/format.ipynb b/spanish/format.ipynb deleted file mode 100644 index 4fa57f8..0000000 --- a/spanish/format.ipynb +++ /dev/null @@ -1,3542 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Format Spanish data to word lists\n", - "format Spanish in the following formats:\n", - "\n", - "* all data text spanish: \"word\", \"type\", \"english\", \"frequency_rank\"\n", - "* 2 column: word, type, definiton" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [], - "source": [ - "import pandas as pd\n", - "import os\n", - "import re" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
wordtypeenglishfrequency_rank
0aprepto, at8
0abajoadvdown, below, downward788
0abandonadoadjabandoned2896
0abandonarvto abandon, leave (a place)680
0abandononmabandonment, desertion3463
\n", - "
" - ], - "text/plain": [ - " word type english frequency_rank\n", - "0 a prep to, at 8\n", - "0 abajo adv down, below, downward 788\n", - "0 abandonado adj abandoned 2896\n", - "0 abandonar v to abandon, leave (a place) 680\n", - "0 abandono nm abandonment, desertion 3463" - ] - }, - "execution_count": 2, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "DATASET = 'spanish_5000'\n", - "df = pd.read_pickle(f\"./data/spanish.pkl\")\n", - "df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [ - { - "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
wordtypeenglishfrequency_rankexample_spanishexample_english
0elartthe (1el diccionario tenía también frases útilesthe dictionary also had useful phrases
0deprepof, from2es el hijo de un amigo míohe is the son of a friend of mine
0queconjthat, which3dice que no quiere estudiarhe says that he doesn’t want to study
0yconjand4saben leer y escribirthey know how to read and write
0enprepin, on5vivo en el segundo pisoI live on the second floor
\n", - "
" - ], - "text/plain": [ - " word type english frequency_rank \\\n", - "0 el art the ( 1 \n", - "0 de prep of, from 2 \n", - "0 que conj that, which 3 \n", - "0 y conj and 4 \n", - "0 en prep in, on 5 \n", - "\n", - " example_spanish \\\n", - "0 el diccionario tenía también frases útiles \n", - "0 es el hijo de un amigo mío \n", - "0 dice que no quiere estudiar \n", - "0 saben leer y escribir \n", - "0 vivo en el segundo piso \n", - "\n", - " example_english \n", - "0 the dictionary also had useful phrases \n", - "0 he is the son of a friend of mine \n", - "0 he says that he doesn’t want to study \n", - "0 they know how to read and write \n", - "0 I live on the second floor " - ] - }, - "execution_count": 3, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "df2 = pd.read_pickle(f\"./data/spanish2.pkl\")\n", - "df2.head()" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [], - "source": [ - "# \"word\": word, \"type\": type, \"english\": english, \"frequency_rank\": frequency_rank\n", - "def load_data():\n", - " data = df[[\"word\", \"type\", \"english\", \"frequency_rank\"]]\n", - " #data = data.rename(columns={'english' : 'English'})\n", - " #data = data.rename(columns={'frequency_rank' : 'frequency rank'})\n", - " return data\n", - "\n", - "# \"word\": word, \"type\": type, \"english\": english, \"frequency_rank\": frequency_rank, \"example_spanish\": example_spanish, \"example_english\": example_english\n", - "def load_data2():\n", - " data = df2[[\"word\", \"type\", \"english\", \"example_spanish\", \"example_english\", \"frequency_rank\"]]\n", - " #data = data.rename(columns={'english' : 'English'})\n", - " #data = data.rename(columns={'spanish' : 'Spanish'})\n", - " #data = data.rename(columns={'frequency_rank' : 'frequency rank'})\n", - " return data" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [], - "source": [ - "# Replaces given word in field with '_'\n", - "def replace_word_in_field_with_underscore(word, field):\n", - " field_split = field.split(' ')\n", - " def _replace(e):\n", - " if word not in e:\n", - " return e\n", - " if not re.match(f\"^{word}.*?$\", e, re.IGNORECASE):\n", - " return e\n", - " return e.replace(word, '_')\n", - " field_split_replaced = list(map(lambda e: _replace(e), field_split))\n", - " return ' '.join(field_split_replaced)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## HTML+PDF all columns" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Loading pages (1/6)\n", - "Counting pages (2/6) \n", - "Resolving links (4/6) \n", - "Loading headers and footers (5/6) \n", - "Printing pages (6/6)\n", - "Done \n", - "Loading pages (1/6)\n", - "Counting pages (2/6) \n", - "Resolving links (4/6) \n", - "Loading headers and footers (5/6) \n", - "Printing pages (6/6)\n", - "Done \n" - ] - }, - { - "data": { - "text/plain": [ - "0" - ] - }, - "execution_count": 6, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# HTML, Underscore, Shuffled and Alphabetical\n", - "data = load_data2()\n", - "\n", - "data[\"example_spanish\"] = data.apply(lambda row: replace_word_in_field_with_underscore(row.word, row.example_spanish) , axis=1)\n", - "data = data.drop(['frequency_rank'], axis=1)\n", - "data = data.rename(columns={'example_english' : 'example (English)'})\n", - "data = data.rename(columns={'example_spanish' : 'example (Spanish)'})\n", - "\n", - "data = data.sample(frac=1) # shuffle\n", - "\n", - "style = data.style.format(\n", - " escape=\"html\",\n", - " )\n", - "style = style.hide(axis='index')\n", - "\n", - "html = style.to_html()\n", - "filename = DATASET+'_underscore_shuffled'\n", - "with open(f'output/{filename}.html', 'w') as f:\n", - " f.write(''+html)\n", - "\n", - "cmd = f'pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle=\"{filename}\" -V margin-top=1cm -V margin-bottom=1cm -V margin-left=1cm -V margin-right=1cm -c format/table.css --pdf-engine-opt=--enable-local-file-access'\n", - "os.system(cmd)\n", - "\n", - "####### Sort Alphabetical\n", - "\n", - "data.sort_values('word') # alphabetical\n", - "filename = DATASET + '_underscore_alphabetical'\n", - "with open(f'output/{filename}.html', 'w') as f:\n", - " f.write(''+html)\n", - "cmd = f'pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle=\"{filename}\" -V margin-top=1cm -V margin-bottom=1cm -V margin-left=1cm -V margin-right=1cm -c format/table.css --pdf-engine-opt=--enable-local-file-access'\n", - "os.system(cmd)" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Loading pages (1/6)\n", - "Counting pages (2/6) \n", - "Resolving links (4/6) \n", - "Loading headers and footers (5/6) \n", - "Printing pages (6/6)\n", - "Done \n", - "Loading pages (1/6)\n", - "Counting pages (2/6) \n", - "Resolving links (4/6) \n", - "Loading headers and footers (5/6) \n", - "Printing pages (6/6)\n", - "Done \n" - ] - }, - { - "data": { - "text/plain": [ - "0" - ] - }, - "execution_count": 7, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# HTML, Shuffled and Alphabetical, without underscore\n", - "data = load_data2()\n", - "\n", - "# data[\"example_spanish\"] = data.apply(lambda row: replace_word_in_field_with_underscore(row.word, row.example_spanish) , axis=1)\n", - "data = data.drop(['frequency_rank'], axis=1)\n", - "data = data.rename(columns={'example_english' : 'example (English)'})\n", - "data = data.rename(columns={'example_spanish' : 'example (Spanish)'})\n", - "\n", - "data = data.sample(frac=1) # shuffle\n", - "\n", - "style = data.style.format(\n", - " escape=\"html\",\n", - " )\n", - "style = style.hide(axis='index')\n", - "\n", - "html = style.to_html()\n", - "filename = DATASET+'_shuffled'\n", - "with open(f'output/{filename}.html', 'w') as f:\n", - " f.write(''+html)\n", - "\n", - "cmd = f'pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle=\"{filename}\" -V margin-top=1cm -V margin-bottom=1cm -V margin-left=1cm -V margin-right=1cm -c format/table.css --pdf-engine-opt=--enable-local-file-access'\n", - "os.system(cmd)\n", - "\n", - "####### Sort Alphabetical\n", - "\n", - "data.sort_values('word') # alphabetical\n", - "filename = DATASET + '_alphabetical'\n", - "with open(f'output/{filename}.html', 'w') as f:\n", - " f.write(''+html)\n", - "cmd = f'pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle=\"{filename}\" -V margin-top=1cm -V margin-bottom=1cm -V margin-left=1cm -V margin-right=1cm -c format/table.css --pdf-engine-opt=--enable-local-file-access'\n", - "os.system(cmd)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## HTML+PDF all columns grouped by CEFR" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Loading pages (1/6)\n", - "Counting pages (2/6) \n", - "Resolving links (4/6) \n", - "Loading headers and footers (5/6) \n", - "Printing pages (6/6)\n", - "Done \n" - ] - }, - { - "data": { - "text/plain": [ - "0" - ] - }, - "execution_count": 8, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# By Ranking / pseudo-cefr. Shuffled\n", - "data = load_data2()\n", - "data[\"example_spanish\"] = data.apply(lambda row: replace_word_in_field_with_underscore(row.word, row.example_spanish) , axis=1)\n", - "data.head()\n", - "\n", - "data_by_cefr = [\n", - " data.iloc[:1000],\n", - " data.iloc[1000:2000],\n", - " data.iloc[2000:3000],\n", - " data.iloc[3000:4000],\n", - " data.iloc[4000:],\n", - " ]\n", - "\n", - "data_by_cefr[1].head()\n", - "cefrs = ['A1', 'A2', 'B1', 'B2', 'C1']\n", - "\n", - "# Complete to HTML\n", - "html_out = ''\n", - "for i, data_slice in enumerate(data_by_cefr):\n", - " if data_slice.empty:\n", - " continue\n", - " #cefr = data_slice['cefr'].iloc[0]\n", - " cefr = cefrs[i]\n", - " html_out += f'

{cefr}

'\n", - " data_slice = data_slice.drop(['frequency_rank'], axis=1)\n", - " data_slice = data_slice.rename(columns={'word' : f'word ({cefr})'})\n", - " data_slice = data_slice.rename(columns={'example_english' : 'example (English)'})\n", - " data_slice = data_slice.rename(columns={'example_spanish' : 'example (Spanish)'})\n", - "\n", - " data_slice = data_slice.sample(frac=1) # shuffle\n", - "\n", - " style = data_slice.style.format(\n", - " escape=\"html\",\n", - " )\n", - " style = style.hide(axis='index')\n", - " html_out += style.to_html()\n", - "\n", - "filename = DATASET+'_underscore_by_cefr_shuffled'\n", - "with open(f'output/{filename}.html', 'w', encoding='utf-8') as f:\n", - " f.write(html_out)\n", - "\n", - "# to pdf\n", - "cmd = f\"\"\"pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle=\"{filename}\" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css --pdf-engine-opt=--enable-local-file-access --title '{filename}'\"\"\"\n", - "os.system(cmd)\n" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Loading pages (1/6)\n", - "Counting pages (2/6) \n", - "Resolving links (4/6) \n", - "Loading headers and footers (5/6) \n", - "Printing pages (6/6)\n", - "Done \n" - ] - }, - { - "data": { - "text/plain": [ - "0" - ] - }, - "execution_count": 9, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# By Ranking / pseudo-cefr. Alphabetical\n", - "data = load_data2()\n", - "data[\"example_spanish\"] = data.apply(lambda row: replace_word_in_field_with_underscore(row.word, row.example_spanish) , axis=1)\n", - "data.head()\n", - "\n", - "data_by_cefr = [\n", - " data.iloc[:1000], #A1\n", - " data.iloc[1000:2000], #A2\n", - " data.iloc[2000:3000], #B1\n", - " data.iloc[3000:4000], #B2\n", - " data.iloc[4000:], #C1\n", - " ]\n", - "\n", - "data_by_cefr[1].head()\n", - "cefrs = ['A1', 'A2', 'B1', 'B2', 'C1']\n", - "\n", - "# Complete to HTML\n", - "html_out = ''\n", - "for i, data_slice in enumerate(data_by_cefr):\n", - " if data_slice.empty:\n", - " continue\n", - " cefr = cefrs[i]\n", - " html_out += f'

{cefr}

'\n", - " data_slice = data_slice.drop(['frequency_rank'], axis=1)\n", - " data_slice = data_slice.sort_values('word')\n", - " data_slice = data_slice.rename(columns={'word' : f'word ({cefr})'})\n", - " data_slice = data_slice.rename(columns={'example_english' : 'example (English)'})\n", - " data_slice = data_slice.rename(columns={'example_spanish' : 'example (Spanish)'})\n", - "\n", - " style = data_slice.style.format(\n", - " escape=\"html\",\n", - " )\n", - " style = style.hide(axis='index')\n", - " html_out += style.to_html()\n", - "\n", - "filename = DATASET+'_underscore_by_cefr_alphabetical'\n", - "with open(f'output/{filename}.html', 'w', encoding='utf-8') as f:\n", - " f.write(html_out)\n", - "\n", - "# to pdf\n", - "cmd = f\"\"\"pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle=\"{filename}\" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css --pdf-engine-opt=--enable-local-file-access --title '{filename}'\"\"\"\n", - "os.system(cmd)\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## 2 Column LateX word, type and definition" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Rc files read:\n", - " /etc/LatexMk\n", - "Latexmk: This is Latexmk, John Collins, 20 November 2021, version: 4.76.\n", - "Latexmk: Changing directory to 'format/'\n", - "Latexmk: Undoing directory change\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Nothing to do\n", - "Latexmk: All targets (/home/jelle/wd/words/spanish/output/spanish_5000_two_column_alphabetical.pdf) are up-to-date\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Rc files read:\n", - " /etc/LatexMk\n", - "Latexmk: This is Latexmk, John Collins, 20 November 2021, version: 4.76.\n", - "Latexmk: Changing directory to 'format/'\n", - "Rule 'pdflatex': File changes, etc:\n", - " Changed files, or newly in use since previous run(s):\n", - " '/home/jelle/wd/words/spanish/output/../build/spanish_5000_two_column_shuffle.tex'\n", - "------------\n", - "Run number 1 of rule 'pdflatex'\n", - "------------\n", - "------------\n", - "Running 'pdflatex -recorder -output-directory=\"/home/jelle/wd/words/spanish/output\" \"spanish_5000_two_column_shuffle.tex\"'\n", - "------------\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Latexmk: applying rule 'pdflatex'...\n", - "This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2022/dev/Debian) (preloaded format=pdflatex)\n", - " restricted \\write18 enabled.\n", - "entering extended mode\n", - "(./spanish_5000_two_column_shuffle.tex\n", - "LaTeX2e <2021-11-15> patch level 1\n", - "L3 programming layer <2022-01-21>\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls\n", - "Document Class: article 2021/10/04 v1.4n Standard LaTeX document class\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty\n", - "(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty)))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/blindtext/blindtext.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/tools/xspace.sty))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/utf8x.def))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucs.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-global.def))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/supertabular/supertabular.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/psnfss/helvet.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1phv.fd)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def)\n", - "(/home/jelle/wd/words/spanish/output/spanish_5000_two_column_shuffle.aux)\n", - "*geometry* driver: auto-detecting\n", - "*geometry* detected driver: pdftex\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucsencs.def)\n", - "(/home/jelle/wd/words/spanish/output/spanish_5000_two_column_shuffle.toc)\n", - "(/home/jelle/wd/words/spanish/output/../build/spanish_5000_two_column_shuffle.t\n", - "ex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-0.def)\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 9--9\n", - "[]\\OT1/phv/m/n/10 contempor[]aneo\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 32--32\n", - "[]\\OT1/phv/m/n/10 responsabilidad\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 44--44\n", - "[]\\OT1/phv/m/n/10 necesariamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--53\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 53--108\n", - "[] \n", - "[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 145--145\n", - "[]\\OT1/phv/m/n/10 respectivamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 108--170\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 170--233\n", - "[] \n", - "[2]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 233--296\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 338--338\n", - "[]\\OT1/phv/m/n/10 simult[]aneamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 296--358\n", - "[] \n", - "[3]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 358--421\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 421--484\n", - "[] \n", - "[4]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 484--547\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 567--567\n", - "[]\\OT1/phv/m/n/10 esencialmente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 591--591\n", - "[]\\OT1/phv/m/n/10 reconocimiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 547--608\n", - "[] \n", - "[5]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 664--664\n", - "[]\\OT1/phv/m/n/10 habitualmente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 608--670\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 688--688\n", - "[]\\OT1/phv/m/n/10 aparentemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 670--732\n", - "[] \n", - "[6]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 747--747\n", - "[]\\OT1/phv/m/n/10 fundamentalmente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 732--794\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 825--825\n", - "[]\\OT1/phv/m/n/10 exclusivamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 855--855\n", - "[]\\OT1/phv/m/n/10 entretenimiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 794--856\n", - "[] \n", - "[7]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 863--863\n", - "[]\\OT1/phv/m/n/10 cuidadosamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 870--870\n", - "[]\\OT1/phv/m/n/10 vicepresidente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 883--883\n", - "[]\\OT1/phv/m/n/10 enormemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 856--916\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 948--948\n", - "[]\\OT1/phv/m/n/10 supuestamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 916--978\n", - "[] \n", - "[8]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 978--1041\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1041--1104\n", - "[] \n", - "[9]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1104--1167\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1182--1182\n", - "[]\\OT1/phv/m/n/10 enfrentamiento\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1219--1219\n", - "[]\\OT1/phv/m/n/10 correspondencia\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1223--1223\n", - "[]\\OT1/phv/m/n/10 econ[]omicamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1167--1227\n", - "[] \n", - "[10]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1236--1236\n", - "[]\\OT1/phv/m/n/10 cinematogr[]afico\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1261--1261\n", - "[]\\OT1/phv/m/n/10 correctamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1227--1288\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1288--1351\n", - "[] \n", - "[11]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1351--1414\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1417--1417\n", - "[]\\OT1/phv/m/n/10 anteriormente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1433--1433\n", - "[]\\OT1/phv/m/n/10 correspondiente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1449--1449\n", - "[]\\OT1/phv/m/n/10 autom[]aticamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1414--1474\n", - "[] \n", - "[12]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1476--1476\n", - "[]\\OT1/phv/m/n/10 concretamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1474--1536\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1560--1560\n", - "[]\\OT1/phv/m/n/10 sucesivamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1592--1592\n", - "[]\\OT1/phv/m/n/10 administrador\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1536--1597\n", - "[] \n", - "[13] (/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-32.def)\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1597--1660\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1660--1723\n", - "[] \n", - "[14]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1743--1743\n", - "[]\\OT1/phv/m/n/10 completamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1784--1784\n", - "[]\\OT1/phv/m/n/10 perfectamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1723--1785\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1785--1848\n", - "[] \n", - "[15]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1850--1850\n", - "[]\\OT1/phv/m/n/10 probablemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1848--1910\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1910--1973\n", - "[] \n", - "[16]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1973--2036\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 2072--2072\n", - "[]\\OT1/phv/m/n/10 absolutamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2036--2098\n", - "[] \n", - "[17]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2098--2161\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2161--2224\n", - "[] \n", - "[18]\n", - "Overfull \\hbox (3.88509pt too wide) in paragraph at lines 2252--2252\n", - "[]\\OT1/phv/m/n/10 independientemente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 2262--2262\n", - "[]\\OT1/phv/m/n/10 latinoamericano\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2224--2285\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 2315--2315\n", - "[]\\OT1/phv/m/n/10 tranquilamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2285--2347\n", - "[] \n", - "[19]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2347--2410\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 2412--2412\n", - "[]\\OT1/phv/m/n/10 lamentablemente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 2431--2431\n", - "[]\\OT1/phv/m/n/10 desgraciadamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 2432--2432\n", - "[]\\OT1/phv/m/n/10 aproximadamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 2447--2447\n", - "[]\\OT1/phv/m/n/10 suficientemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2410--2469\n", - "[] \n", - "[20]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 2495--2495\n", - "[]\\OT1/phv/m/n/10 indudablemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2469--2531\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 2574--2574\n", - "[]\\OT1/phv/m/n/10 recientemente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 2577--2577\n", - "[]\\OT1/phv/m/n/10 evidentemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2531--2592\n", - "[] \n", - "[21]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2592--2655\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 2674--2674\n", - "[]\\OT1/phv/m/n/10 establecimiento\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-34.def)\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2655--2717\n", - "[] \n", - "[22]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 2742--2742\n", - "[]\\OT1/phv/m/n/10 permanentemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2717--2779\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2779--2842\n", - "[] \n", - "[23]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2842--2905\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2905--2968\n", - "[] \n", - "[24]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 2968--3031\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 3089--3089\n", - "[]\\OT1/phv/m/n/10 complementario\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 3031--3093\n", - "[] \n", - "[25]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 3093--3156\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 3168--3168\n", - "[]\\OT1/phv/m/n/10 mantenimiento\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 3180--3180\n", - "[]\\OT1/phv/m/n/10 afortunadamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 3196--3196\n", - "[]\\OT1/phv/m/n/10 definitivamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 3156--3216\n", - "[] \n", - "[26]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 3237--3237\n", - "[]\\OT1/phv/m/n/10 especialmente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 3216--3278\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 3309--3309\n", - "[]\\OT1/phv/m/n/10 continuamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 3278--3340\n", - "[] \n", - "[27]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 3340--3403\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 3418--3418\n", - "[]\\OT1/phv/m/n/10 espec[]^^Pficamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 3403--3465\n", - "[] \n", - "[28]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 3465--3528\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 3528--3590\n", - "[] \n", - "[29]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 3650--3650\n", - "[]\\OT1/phv/m/n/10 verdaderamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 3590--3651\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 3656--3656\n", - "[]\\OT1/phv/m/n/10 personalmente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 3659--3659\n", - "[]\\OT1/phv/m/n/10 comportamiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 3651--3712\n", - "[] \n", - "[30]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 3767--3767\n", - "[]\\OT1/phv/m/n/10 tradicionalmente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 3712--3774\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 3774--3837\n", - "[] \n", - "[31]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 3837--3900\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 3930--3930\n", - "[]\\OT1/phv/m/n/10 particularmente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 3900--3962\n", - "[] \n", - "[32]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 3997--3997\n", - "[]\\OT1/phv/m/n/10 pr[]acticamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 3962--4023\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 4023--4086\n", - "[] \n", - "[33]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 4108--4108\n", - "[]\\OT1/phv/m/n/10 profundamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 4114--4114\n", - "[]\\OT1/phv/m/n/10 frecuentemente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 4126--4126\n", - "[]\\OT1/phv/m/n/10 descubrimiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 4086--4146\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 4146--4209\n", - "[] \n", - "[34]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 4224--4224\n", - "[]\\OT1/phv/m/n/10 gubernamental\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 4209--4271\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 4294--4294\n", - "[]\\OT1/phv/m/n/10 inmediatamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 4271--4333\n", - "[] \n", - "[35]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 4333--4396\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 4431--4431\n", - "[]\\OT1/phv/m/n/10 estadounidense\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 4396--4458\n", - "[] \n", - "[36]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 4458--4521\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 4546--4546\n", - "[]\\OT1/phv/m/n/10 desplazamiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 4521--4583\n", - "[] \n", - "[37]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 4583--4646\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 4656--4656\n", - "[]\\OT1/phv/m/n/10 constantemente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 4665--4665\n", - "[]\\OT1/phv/m/n/10 funcionamiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 4646--4707\n", - "[] \n", - "[38]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 4712--4712\n", - "[]\\OT1/phv/m/n/10 acontecimiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 4707--4769\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 4790--4790\n", - "[]\\OT1/phv/m/n/10 principalmente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 4823--4823\n", - "[]\\OT1/phv/m/n/10 extremadamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 4829--4829\n", - "[]\\OT1/phv/m/n/10 norteamericano\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 4769--4830\n", - "[] \n", - "[39]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 4856--4856\n", - "[]\\OT1/phv/m/n/10 posteriormente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 4830--4892\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 4920--4920\n", - "[]\\OT1/phv/m/n/10 hispanoamericano\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 4892--4954\n", - "[] \n", - "[40])\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 4954--26\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 4954--26\n", - "\n", - "(/home/jelle/wd/words/spanish/output/spanish_5000_two_column_shuffle.aux) )\n", - "(see the transcript file for additional information){/usr/share/texlive/texmf-d\n", - "ist/fonts/enc/dvips/base/8r.enc}\n", - "Output written on /home/jelle/wd/words/spanish/output/spanish_5000_two_column_s\n", - "huffle.pdf (40 pages, 184753 bytes).\n", - "Transcript written on /home/jelle/wd/words/spanish/output/spanish_5000_two_colu\n", - "mn_shuffle.log.\n", - "Latexmk: Examining '/home/jelle/wd/words/spanish/output/spanish_5000_two_column_shuffle.log'\n", - "=== TeX engine is 'pdfTeX'\n", - "Latexmk: All targets (/home/jelle/wd/words/spanish/output/spanish_5000_two_column_shuffle.pdf) are up-to-date\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Latexmk: Log file says output to '/home/jelle/wd/words/spanish/output/spanish_5000_two_column_shuffle.pdf'\n", - "Latexmk: Undoing directory change\n" - ] - }, - { - "data": { - "text/plain": [ - "0" - ] - }, - "execution_count": 10, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "# 2 column 5000 not by rank\n", - "# shuffle and alphabetical\n", - "import re\n", - "# Fix supertabular and add \\textit to type\n", - "column_format = 'p{1.2in}p{2.3in}p{1.2in}p{2.3in}'\n", - "def fix_latex_line(line):\n", - " if re.match(r\"^\\\\begin{supertabular}\", line):\n", - " # Add column_format to supertabular}\n", - " return '\\\\begin{supertabular}'+'{'+column_format+'}'\n", - " if re.match(r\"^\\\\.*{tabular}\", line):\n", - " # Remove {tabular}\n", - " return ''\n", - " if re.match(r\"^\\w+\\s.*\\(\\w+\\s?\\w+?\\)\", line):\n", - " # Italics\n", - " return re.sub(r\"(^\\w+\\s.*)(\\(\\w+\\s?\\w+?\\))\", r\"\\1\\\\textit{\\2}\", line)\n", - " return line\n", - "\n", - "# columns = [\"word\", \"type\", \"english\", \"frequency_rank\"]\n", - "data = load_data2()\n", - "data[\"example_spanish\"] = data.apply(lambda row: replace_word_in_field_with_underscore(row.word, row.example_spanish) , axis=1)\n", - "data[\"word\"] = data.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - "#data = data[[\"word\", \"spanish\", \"english\", \"example_spanish\", \"example_english\"]]\n", - "data = data[[\"word\", \"english\"]]\n", - "\n", - "style = data.style.format(\n", - " escape=\"latex\",\n", - " )\n", - "style = style.hide(axis='index')\n", - "style = style.hide(axis='columns')\n", - "\n", - "\n", - "latex = style.to_latex(\n", - " environment='supertabular',\n", - " column_format=column_format\n", - ")\n", - "\n", - "latex_lines = latex.splitlines()\n", - "\n", - "latex = '\\n'.join((map(fix_latex_line, latex_lines)))\n", - "\n", - "with open(f'build/{DATASET}_two_column_alphabetical.tex', 'w') as f:\n", - " f.write(latex)\n", - "\n", - "cmd_build = f\"latexmk -pdf -cd format/{DATASET}_two_column_alphabetical.tex -outdir=../output\"\n", - "os.system(cmd_build)\n", - "\n", - "#### Same for shuffle\n", - "\n", - "data = data.sample(frac=1) # shuffle\n", - "style = data.style.format(\n", - " escape=\"latex\",\n", - " )\n", - "style = style.hide(axis='index')\n", - "style = style.hide(axis='columns')\n", - "\n", - "column_format = 'p{1.2in}p{2.3in}p{1.2in}p{2.3in}'\n", - "\n", - "latex = style.to_latex(\n", - " environment='supertabular',\n", - " column_format=column_format\n", - ")\n", - "\n", - "latex_lines = latex.splitlines()\n", - "latex = '\\n'.join((map(fix_latex_line, latex_lines)))\n", - "\n", - "with open(f'build/{DATASET}_two_column_shuffle.tex', 'w') as f:\n", - " f.write(latex)\n", - "\n", - "cmd_build = f\"latexmk -pdf -cd format/{DATASET}_two_column_shuffle.tex -outdir=../output\"\n", - "os.system(cmd_build)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/tmp/ipykernel_77879/4273685475.py:32: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - "/tmp/ipykernel_77879/4273685475.py:32: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - "/tmp/ipykernel_77879/4273685475.py:32: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - "/tmp/ipykernel_77879/4273685475.py:32: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - "/tmp/ipykernel_77879/4273685475.py:32: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n" - ] - } - ], - "source": [ - "# two column, cefr by rank\n", - "import re\n", - "# Fix supertabular and add \\textit to type\n", - "column_format = 'p{1.2in}p{2.3in}p{1.2in}p{2.3in}'\n", - "def fix_latex_line(line):\n", - " if re.match(r\"^\\\\begin{supertabular}\", line):\n", - " # Add column_format to supertabular}\n", - " return '\\\\begin{supertabular}'+'{'+column_format+'}'\n", - " if re.match(r\"^\\\\.*{tabular}\", line):\n", - " # Remove {tabular}\n", - " return ''\n", - " if re.match(r\"^\\w+\\s.*\\(\\w+\\s?\\w+?\\)\", line):\n", - " # Italics\n", - " return re.sub(r\"(^\\w+\\s.*)(\\(\\w+\\s?\\w+?\\))\", r\"\\1\\\\textit{\\2}\", line)\n", - " return line\n", - "\n", - "data = load_data2()\n", - "data_by_cefr = [\n", - " data.iloc[:1000], #A1\n", - " data.iloc[1000:2000], #A2\n", - " data.iloc[2000:3000], #B1\n", - " data.iloc[3000:4000], #B2\n", - " data.iloc[4000:], #C1\n", - " ]\n", - "\n", - "cefrs = ['A1', 'A2', 'B1', 'B2', 'C1']\n", - "for i, data_slice in enumerate(data_by_cefr):\n", - " if data_slice.empty:\n", - " continue\n", - " cefr = cefrs[i]\n", - " data_slice = data_slice[[\"word\", \"english\", \"type\"]]\n", - " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - " data_slice = data_slice[[\"word\", \"english\"]]\n", - "\n", - " #data_slice = data_slice.sort_values('word')\n", - " #data_slice = data_slice.rename(columns={'word' : f'word ({cefr})'})\n", - "\n", - " style = data_slice.style.format(\n", - " escape=\"latex\",\n", - " )\n", - " style = style.hide(axis='index')\n", - " style = style.hide(axis='columns')\n", - "\n", - " latex = style.to_latex(\n", - " environment='supertabular',\n", - " column_format=column_format\n", - " )\n", - "\n", - " latex_lines = latex.splitlines()\n", - "\n", - " latex = '\\n'.join((map(fix_latex_line, latex_lines)))\n", - "\n", - " filename = f'{DATASET}_two_column_shuffle_{cefr}'\n", - " with open(f'build/{filename}.tex', 'w') as f:\n", - " f.write(latex)" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/tmp/ipykernel_77879/666376613.py:33: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - "/tmp/ipykernel_77879/666376613.py:33: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - "/tmp/ipykernel_77879/666376613.py:33: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - "/tmp/ipykernel_77879/666376613.py:33: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - "/tmp/ipykernel_77879/666376613.py:33: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n" - ] - } - ], - "source": [ - "\n", - "# two column, cefr by rank\n", - "import re\n", - "# Fix supertabular and add \\textit to type\n", - "column_format = 'p{1.2in}p{2.3in}p{1.2in}p{2.3in}'\n", - "def fix_latex_line(line):\n", - " if re.match(r\"^\\\\begin{supertabular}\", line):\n", - " # Add column_format to supertabular}\n", - " return '\\\\begin{supertabular}'+'{'+column_format+'}'\n", - " if re.match(r\"^\\\\.*{tabular}\", line):\n", - " # Remove {tabular}\n", - " return ''\n", - " if re.match(r\"^\\w+\\s.*\\(\\w+\\s?\\w+?\\)\", line):\n", - " # Italics\n", - " return re.sub(r\"(^\\w+\\s.*)(\\(\\w+\\s?\\w+?\\))\", r\"\\1\\\\textit{\\2}\", line)\n", - " return line\n", - "\n", - "data = load_data2()\n", - "data[\"example_spanish\"] = data.apply(lambda row: replace_word_in_field_with_underscore(row.word, row.example_spanish) , axis=1)\n", - "data_by_cefr = [\n", - " data.iloc[:1000], #A1\n", - " data.iloc[1000:2000], #A2\n", - " data.iloc[2000:3000], #B1\n", - " data.iloc[3000:4000], #B2\n", - " data.iloc[4000:], #C1\n", - " ]\n", - "\n", - "cefrs = ['A1', 'A2', 'B1', 'B2', 'C1']\n", - "for i, data_slice in enumerate(data_by_cefr):\n", - " if data_slice.empty:\n", - " continue\n", - " cefr = cefrs[i]\n", - " data_slice = data_slice[[\"word\", \"english\", \"type\"]]\n", - " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - " data_slice = data_slice[[\"word\", \"english\"]]\n", - "\n", - " data_slice = data_slice.sort_values('word')\n", - " #data_slice = data_slice.rename(columns={'word' : f'word ({cefr})'})\n", - "\n", - " style = data_slice.style.format(\n", - " escape=\"latex\",\n", - " )\n", - " style = style.hide(axis='index')\n", - " style = style.hide(axis='columns')\n", - "\n", - " latex = style.to_latex(\n", - " environment='supertabular',\n", - " column_format=column_format\n", - " )\n", - "\n", - " latex_lines = latex.splitlines()\n", - "\n", - " latex = '\\n'.join((map(fix_latex_line, latex_lines)))\n", - "\n", - " filename = f'{DATASET}_two_column_alphabetical_{cefr}'\n", - " with open(f'build/{filename}.tex', 'w') as f:\n", - " f.write(latex)" - ] - }, - { - "cell_type": "code", - "execution_count": 13, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/tmp/ipykernel_77879/2496701175.py:38: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - "/tmp/ipykernel_77879/2496701175.py:38: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - "/tmp/ipykernel_77879/2496701175.py:38: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - "/tmp/ipykernel_77879/2496701175.py:38: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - "/tmp/ipykernel_77879/2496701175.py:38: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n" - ] - } - ], - "source": [ - "# 4 column with examples alphabetical\n", - "import re\n", - "# Fix supertabular and add \\textit to type\n", - "#column_format = 'p{1.2in}p{2.3in}p{1.2in}p{2.3in}'\n", - "# 0.787401575 inches margin total\n", - "# A4 width 8.3 inch\n", - "#column_format = 'p{1.0in}p{3.0in}p{3.0in}' # total 8.3in - 0.7874in - column_width\n", - "column_format = 'p{0.8in}p{1.1in}p{2.55in}p{2.55in}' # total 8.3in - 0.7874in - column_width\n", - "#column_format = 'ccc'\n", - "def fix_latex_line(line):\n", - " if re.match(r\"^\\\\begin{supertabular}\", line):\n", - " # Add column_format to supertabular}\n", - " return '\\\\begin{supertabular}'+'{'+column_format+'}'\n", - " if re.match(r\"^\\\\.*{tabular}\", line):\n", - " # Remove {tabular}\n", - " return ''\n", - " if re.match(r\"^\\w+\\s.*\\(\\w+\\s?\\w+?\\)\", line):\n", - " # Italics\n", - " return re.sub(r\"(^\\w+\\s.*)(\\(\\w+\\s?\\w+?\\))\", r\"\\1\\\\textit{\\2}\", line)\n", - " return line\n", - "\n", - "data = load_data2()\n", - "data[\"example_spanish\"] = data.apply(lambda row: replace_word_in_field_with_underscore(row.word, row.example_spanish) , axis=1)\n", - "data_by_cefr = [\n", - " data.iloc[:1000], #A1\n", - " data.iloc[1000:2000], #A2\n", - " data.iloc[2000:3000], #B1\n", - " data.iloc[3000:4000], #B2\n", - " data.iloc[4000:], #C1\n", - " ]\n", - "\n", - "cefrs = ['A1', 'A2', 'B1', 'B2', 'C1']\n", - "for i, data_slice in enumerate(data_by_cefr):\n", - " if data_slice.empty:\n", - " continue\n", - " cefr = cefrs[i]\n", - " data_slice = data_slice[[\"word\", \"english\", \"example_spanish\", \"example_english\", \"type\"]]\n", - " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - " data_slice = data_slice[[\"word\", \"english\", \"example_spanish\", \"example_english\"]]\n", - "\n", - "\n", - " data_slice = data_slice.sort_values('word')\n", - " #data_slice = data_slice.rename(columns={'word' : f'word ({cefr})'})\n", - "\n", - " style = data_slice.style.format(\n", - " escape=\"latex\",\n", - " )\n", - " style = style.hide(axis='index')\n", - " style = style.hide(axis='columns')\n", - "\n", - " latex = style.to_latex(\n", - " environment='supertabular',\n", - " column_format=column_format\n", - " )\n", - "\n", - " latex_lines = latex.splitlines()\n", - "\n", - " latex = '\\n'.join((map(fix_latex_line, latex_lines)))\n", - "\n", - " filename = f'{DATASET}_two_column_alphabetical_{cefr}_with_example'\n", - " with open(f'build/{filename}.tex', 'w') as f:\n", - " f.write(latex)" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/tmp/ipykernel_77879/2337806553.py:38: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - "/tmp/ipykernel_77879/2337806553.py:38: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - "/tmp/ipykernel_77879/2337806553.py:38: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - "/tmp/ipykernel_77879/2337806553.py:38: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - "/tmp/ipykernel_77879/2337806553.py:38: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n" - ] - } - ], - "source": [ - "# 4 column with examples shuffle\n", - "import re\n", - "# Fix supertabular and add \\textit to type\n", - "#column_format = 'p{1.2in}p{2.3in}p{1.2in}p{2.3in}'\n", - "# 0.787401575 inches margin total\n", - "# A4 width 8.3 inch\n", - "#column_format = 'p{1.0in}p{3.0in}p{3.0in}' # total 8.3in - 0.7874in - column_width\n", - "column_format = 'p{0.9in}p{1.0in}p{2.8in}p{2.30in}' # total 8.3in - 0.7874in - column_width\n", - "#column_format = 'ccc'\n", - "def fix_latex_line(line):\n", - " if re.match(r\"^\\\\begin{supertabular}\", line):\n", - " # Add column_format to supertabular}\n", - " return '\\\\begin{supertabular}'+'{'+column_format+'}'\n", - " if re.match(r\"^\\\\.*{tabular}\", line):\n", - " # Remove {tabular}\n", - " return ''\n", - " if re.match(r\"^\\w+\\s.*\\(\\w+\\s?\\w+?\\)\", line):\n", - " # Italics\n", - " return re.sub(r\"(^\\w+\\s.*)(\\(\\w+\\s?\\w+?\\))\", r\"\\1\\\\textit{\\2}\", line)\n", - " return line\n", - "\n", - "data = load_data2()\n", - "data[\"example_spanish\"] = data.apply(lambda row: replace_word_in_field_with_underscore(row.word, row.example_spanish) , axis=1)\n", - "data_by_cefr = [\n", - " data.iloc[:1000], #A1\n", - " data.iloc[1000:2000], #A2\n", - " data.iloc[2000:3000], #B1\n", - " data.iloc[3000:4000], #B2\n", - " data.iloc[4000:], #C1\n", - " ]\n", - "\n", - "cefrs = ['A1', 'A2', 'B1', 'B2', 'C1']\n", - "for i, data_slice in enumerate(data_by_cefr):\n", - " if data_slice.empty:\n", - " continue\n", - " cefr = cefrs[i]\n", - " data_slice = data_slice[[\"word\", \"english\", \"example_spanish\", \"example_english\", \"type\"]]\n", - " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", - " data_slice = data_slice[[\"word\", \"english\", \"example_spanish\", \"example_english\"]]\n", - "\n", - " #data_slice = data_slice.sort_values('word')\n", - " #data_slice = data_slice.rename(columns={'word' : f'word ({cefr})'})\n", - "\n", - " style = data_slice.style.format(\n", - " escape=\"latex\",\n", - " )\n", - " style = style.hide(axis='index')\n", - " style = style.hide(axis='columns')\n", - "\n", - " latex = style.to_latex(\n", - " environment='supertabular',\n", - " column_format=column_format\n", - " )\n", - "\n", - " latex_lines = latex.splitlines()\n", - "\n", - " latex = '\\n'.join((map(fix_latex_line, latex_lines)))\n", - "\n", - " filename = f'{DATASET}_two_column_shuffle_{cefr}_with_example'\n", - " with open(f'build/{filename}.tex', 'w') as f:\n", - " f.write(latex)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## 2 Column LateX word,type and definition by CEFR shuffle" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Rc files read:\n", - " /etc/LatexMk\n", - "Latexmk: This is Latexmk, John Collins, 20 November 2021, version: 4.76.\n", - "Latexmk: Changing directory to 'format/'\n", - "Latexmk: Undoing directory change\n", - "Latexmk: Changing directory to 'format/'\n", - "Rule 'pdflatex': File changes, etc:\n", - " Changed files, or newly in use since previous run(s):\n", - " 'spanish_5000_two_column_alphabetical_by_rank.tex'\n", - "------------\n", - "Run number 1 of rule 'pdflatex'\n", - "------------\n", - "------------\n", - "Running 'pdflatex -recorder -output-directory=\"/home/jelle/wd/words/spanish/output\" \"spanish_5000_two_column_alphabetical_by_rank.tex\"'\n", - "------------\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Nothing to do\n", - "Latexmk: All targets (/home/jelle/wd/words/spanish/output/spanish_5000_two_column_alphabetical.pdf) are up-to-date\n", - "Latexmk: applying rule 'pdflatex'...\n", - "This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2022/dev/Debian) (preloaded format=pdflatex)\n", - " restricted \\write18 enabled.\n", - "entering extended mode\n", - "(./spanish_5000_two_column_alphabetical_by_rank.tex\n", - "LaTeX2e <2021-11-15> patch level 1\n", - "L3 programming layer <2022-01-21>\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls\n", - "Document Class: article 2021/10/04 v1.4n Standard LaTeX document class\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty\n", - "(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty)))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/blindtext/blindtext.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/tools/xspace.sty))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/utf8x.def))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucs.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-global.def))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/supertabular/supertabular.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/psnfss/helvet.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1phv.fd)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def)\n", - "(/home/jelle/wd/words/spanish/output/spanish_5000_two_column_alphabetical_by_ra\n", - "nk.aux)\n", - "*geometry* driver: auto-detecting\n", - "*geometry* detected driver: pdftex\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucsencs.def)\n", - "No file spanish_5000_two_column_alphabetical_by_rank.toc.\n", - "\n", - "(/home/jelle/wd/words/spanish/output/../build/spanish_5000_two_column_alphabeti\n", - "cal_A1.tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-0.def)\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--54\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 54--109\n", - "[] \n", - "[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 109--172\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 172--235\n", - "[] \n", - "[2]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 235--298\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 355--355\n", - "[]\\OT1/phv/m/n/10 especialmente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 298--360\n", - "[] \n", - "[3]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 360--423\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 423--486\n", - "[] \n", - "[4]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 486--549\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 549--612\n", - "[] \n", - "[5]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 612--675\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 675--738\n", - "[] \n", - "[6]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 738--801\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 814--814\n", - "[]\\OT1/phv/m/n/10 responsabilidad\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-32.def)\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 801--863\n", - "[] \n", - "[7]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 863--926\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 926--988\n", - "[] \n", - "[8])\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 988--27\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 988--27\n", - "\n", - "\n", - "(/home/jelle/wd/words/spanish/output/../build/spanish_5000_two_column_alphabeti\n", - "cal_A2.tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 6--6\n", - "[]\\OT1/phv/m/n/10 absolutamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 15--15\n", - "[]\\OT1/phv/m/n/10 acontecimiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--45\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 70--70\n", - "[]\\OT1/phv/m/n/10 aproximadamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 45--107\n", - "[] \n", - "[9]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 107--170\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 201--201\n", - "[]\\OT1/phv/m/n/10 completamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 203--203\n", - "[]\\OT1/phv/m/n/10 comportamiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 170--231\n", - "[] \n", - "[10]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 238--238\n", - "[]\\OT1/phv/m/n/10 contempor[]aneo\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 251--251\n", - "[]\\OT1/phv/m/n/10 correspondiente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 231--292\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 299--299\n", - "[]\\OT1/phv/m/n/10 descubrimiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 292--354\n", - "[] \n", - "[11]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 397--397\n", - "[]\\OT1/phv/m/n/10 estadounidense\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 406--406\n", - "[]\\OT1/phv/m/n/10 evidentemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 354--415\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 415--478\n", - "[] \n", - "[12]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 529--529\n", - "[]\\OT1/phv/m/n/10 inmediatamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 478--540\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 540--603\n", - "[] \n", - "[13]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 663--663\n", - "[]\\OT1/phv/m/n/10 norteamericano\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 603--664\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 722--722\n", - "[]\\OT1/phv/m/n/10 perfectamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 664--726\n", - "[] \n", - "[14]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 752--752\n", - "[]\\OT1/phv/m/n/10 posteriormente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 767--767\n", - "[]\\OT1/phv/m/n/10 principalmente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 769--769\n", - "[]\\OT1/phv/m/n/10 probablemente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 785--785\n", - "[]\\OT1/phv/m/n/10 pr[]acticamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 726--786\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 808--808\n", - "[]\\OT1/phv/m/n/10 reconocimiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 786--848\n", - "[] \n", - "[15] (/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-34.def)\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 848--911\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 973--973\n", - "[]\\OT1/phv/m/n/10 verdaderamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 911--974\n", - "[] \n", - "[16])\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 974--29\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 974--29\n", - "\n", - "\n", - "(/home/jelle/wd/words/spanish/output/../build/spanish_5000_two_column_alphabeti\n", - "cal_B1.tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--33\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 63--63\n", - "[]\\OT1/phv/m/n/10 anteriormente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 66--66\n", - "[]\\OT1/phv/m/n/10 aparentemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 33--94\n", - "[] \n", - "[17]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 94--157\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 157--220\n", - "[] \n", - "[18]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 223--223\n", - "[]\\OT1/phv/m/n/10 constantemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 220--282\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 283--283\n", - "[]\\OT1/phv/m/n/10 definitivamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 282--344\n", - "[] \n", - "[19]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 375--375\n", - "[]\\OT1/phv/m/n/10 enfrentamiento\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 399--399\n", - "[]\\OT1/phv/m/n/10 establecimiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 344--405\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 420--420\n", - "[]\\OT1/phv/m/n/10 exclusivamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 405--467\n", - "[] \n", - "[20]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 469--469\n", - "[]\\OT1/phv/m/n/10 funcionamiento\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 471--471\n", - "[]\\OT1/phv/m/n/10 fundamentalmente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 493--493\n", - "[]\\OT1/phv/m/n/10 gubernamental\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 467--527\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 568--568\n", - "[]\\OT1/phv/m/n/10 latinoamericano\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 527--589\n", - "[] \n", - "[21]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 604--604\n", - "[]\\OT1/phv/m/n/10 mantenimiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 589--651\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 651--651\n", - "[]\\OT1/phv/m/n/10 necesariamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 705--705\n", - "[]\\OT1/phv/m/n/10 particularmente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 651--712\n", - "[] \n", - "[22]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 727--727\n", - "[]\\OT1/phv/m/n/10 personalmente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 712--774\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 774--774\n", - "[]\\OT1/phv/m/n/10 profundamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 801--801\n", - "[]\\OT1/phv/m/n/10 recientemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 774--835\n", - "[] \n", - "[23]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 835--897\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 897--960\n", - "[] \n", - "[24])\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 960--31\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 960--31\n", - "\n", - "\n", - "(/home/jelle/wd/words/spanish/output/../build/spanish_5000_two_column_alphabeti\n", - "cal_B2.tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--19\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 23--23\n", - "[]\\OT1/phv/m/n/10 administrador\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 34--34\n", - "[]\\OT1/phv/m/n/10 afortunadamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 19--80\n", - "[] \n", - "[25]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 107--107\n", - "[]\\OT1/phv/m/n/10 autom[]aticamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 80--142\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 142--205\n", - "[] \n", - "[26]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 220--220\n", - "[]\\OT1/phv/m/n/10 concretamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 236--236\n", - "[]\\OT1/phv/m/n/10 continuamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 205--266\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 298--298\n", - "[]\\OT1/phv/m/n/10 desgraciadamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 266--328\n", - "[] \n", - "[27]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 389--389\n", - "[]\\OT1/phv/m/n/10 espec[]^^Pficamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 328--390\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 390--453\n", - "[] \n", - "[28]\n", - "Overfull \\hbox (3.88509pt too wide) in paragraph at lines 515--515\n", - "[]\\OT1/phv/m/n/10 independientemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 453--516\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 520--520\n", - "[]\\OT1/phv/m/n/10 indudablemente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 561--561\n", - "[]\\OT1/phv/m/n/10 lamentablemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 516--577\n", - "[] \n", - "[29]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 577--640\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 640--703\n", - "[] \n", - "[30]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 703--766\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 820--820\n", - "[]\\OT1/phv/m/n/10 respectivamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 766--828\n", - "[] \n", - "[31]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 828--891\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 894--894\n", - "[]\\OT1/phv/m/n/10 suficientemente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 900--900\n", - "[]\\OT1/phv/m/n/10 supuestamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 891--952\n", - "[] \n", - "[32]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 984--984\n", - "[]\\OT1/phv/m/n/10 vicepresidente\n", - ")\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 952--33\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 952--33\n", - "\n", - "\n", - "(/home/jelle/wd/words/spanish/output/../build/spanish_5000_two_column_alphabeti\n", - "cal_C1.tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--10\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 10--73\n", - "[] \n", - "[33]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 73--136\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 183--183\n", - "[]\\OT1/phv/m/n/10 cinematogr[]afico\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 136--198\n", - "[] \n", - "[34]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 205--205\n", - "[]\\OT1/phv/m/n/10 complementario\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 247--247\n", - "[]\\OT1/phv/m/n/10 correctamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 248--248\n", - "[]\\OT1/phv/m/n/10 correspondencia\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 198--258\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 267--267\n", - "[]\\OT1/phv/m/n/10 cuidadosamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 308--308\n", - "[]\\OT1/phv/m/n/10 desplazamiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 258--319\n", - "[] \n", - "[35]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 349--349\n", - "[]\\OT1/phv/m/n/10 econ[]omicamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 376--376\n", - "[]\\OT1/phv/m/n/10 enormemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 319--380\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 381--381\n", - "[]\\OT1/phv/m/n/10 entretenimiento\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 391--391\n", - "[]\\OT1/phv/m/n/10 esencialmente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 425--425\n", - "[]\\OT1/phv/m/n/10 extremadamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 380--440\n", - "[] \n", - "[36]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 459--459\n", - "[]\\OT1/phv/m/n/10 frecuentemente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 489--489\n", - "[]\\OT1/phv/m/n/10 habitualmente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 500--500\n", - "[]\\OT1/phv/m/n/10 hispanoamericano\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 440--501\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 501--564\n", - "[] \n", - "[37]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 564--627\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 627--690\n", - "[] \n", - "[38]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 721--721\n", - "[]\\OT1/phv/m/n/10 permanentemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 690--752\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 752--815\n", - "[] \n", - "[39]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 815--878\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 884--884\n", - "[]\\OT1/phv/m/n/10 simult[]aneamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 900--900\n", - "[]\\OT1/phv/m/n/10 sucesivamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 878--939\n", - "[] \n", - "[40]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 940--940\n", - "[]\\OT1/phv/m/n/10 tradicionalmente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 944--944\n", - "[]\\OT1/phv/m/n/10 tranquilamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 939--1000\n", - "[] \n", - ")\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1000--35\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1000--35\n", - "\n", - "\n", - "(/home/jelle/wd/words/spanish/output/spanish_5000_two_column_alphabetical_by_ra\n", - "nk.aux) )\n", - "(see the transcript file for additional information){/usr/share/texlive/texmf-d\n", - "ist/fonts/enc/dvips/base/8r.enc}\n", - "Output written on /home/jelle/wd/words/spanish/output/spanish_5000_two_column_a\n", - "lphabetical_by_rank.pdf (40 pages, 178212 bytes).\n", - "Transcript written on /home/jelle/wd/words/spanish/output/spanish_5000_two_colu\n", - "mn_alphabetical_by_rank.log.\n", - "Latexmk: Examining '/home/jelle/wd/words/spanish/output/spanish_5000_two_column_alphabetical_by_rank.log'\n", - "=== TeX engine is 'pdfTeX'\n", - "Latexmk: applying rule 'pdflatex'...\n", - "This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2022/dev/Debian) (preloaded format=pdflatex)\n", - " restricted \\write18 enabled.\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Latexmk: Missing input file 'spanish_5000_two_column_alphabetical_by_rank.toc' (or dependence on it) from following:\n", - " 'No file spanish_5000_two_column_alphabetical_by_rank.toc.'\n", - "Latexmk: Log file says output to '/home/jelle/wd/words/spanish/output/spanish_5000_two_column_alphabetical_by_rank.pdf'\n", - "Rule 'pdflatex': File changes, etc:\n", - " Changed files, or newly in use since previous run(s):\n", - " '/home/jelle/wd/words/spanish/output/spanish_5000_two_column_alphabetical_by_rank.aux'\n", - " '/home/jelle/wd/words/spanish/output/spanish_5000_two_column_alphabetical_by_rank.toc'\n", - "------------\n", - "Run number 2 of rule 'pdflatex'\n", - "------------\n", - "------------\n", - "Running 'pdflatex -recorder -output-directory=\"/home/jelle/wd/words/spanish/output\" \"spanish_5000_two_column_alphabetical_by_rank.tex\"'\n", - "------------\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "entering extended mode\n", - "(./spanish_5000_two_column_alphabetical_by_rank.tex\n", - "LaTeX2e <2021-11-15> patch level 1\n", - "L3 programming layer <2022-01-21>\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls\n", - "Document Class: article 2021/10/04 v1.4n Standard LaTeX document class\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty\n", - "(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty)))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/blindtext/blindtext.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/tools/xspace.sty))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/utf8x.def))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucs.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-global.def))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/supertabular/supertabular.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/psnfss/helvet.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1phv.fd)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def)\n", - "(/home/jelle/wd/words/spanish/output/spanish_5000_two_column_alphabetical_by_ra\n", - "nk.aux)\n", - "*geometry* driver: auto-detecting\n", - "*geometry* detected driver: pdftex\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucsencs.def)\n", - "(/home/jelle/wd/words/spanish/output/spanish_5000_two_column_alphabetical_by_ra\n", - "nk.toc)\n", - "(/home/jelle/wd/words/spanish/output/../build/spanish_5000_two_column_alphabeti\n", - "cal_A1.tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-0.def)\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--45\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 45--100\n", - "[] \n", - "[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 100--163\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 163--226\n", - "[] \n", - "[2]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 226--289\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 289--352\n", - "[] \n", - "[3]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 355--355\n", - "[]\\OT1/phv/m/n/10 especialmente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 352--414\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 414--477\n", - "[] \n", - "[4]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 477--540\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 540--603\n", - "[] \n", - "[5]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 603--666\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 666--729\n", - "[] \n", - "[6]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 729--792\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 814--814\n", - "[]\\OT1/phv/m/n/10 responsabilidad\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-32.def)\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 792--854\n", - "[] \n", - "[7]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 854--917\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 917--979\n", - "[] \n", - "[8])\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 979--27\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 979--27\n", - "\n", - "\n", - "(/home/jelle/wd/words/spanish/output/../build/spanish_5000_two_column_alphabeti\n", - "cal_A2.tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 6--6\n", - "[]\\OT1/phv/m/n/10 absolutamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 15--15\n", - "[]\\OT1/phv/m/n/10 acontecimiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--36\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 70--70\n", - "[]\\OT1/phv/m/n/10 aproximadamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 36--98\n", - "[] \n", - "[9]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 98--161\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 201--201\n", - "[]\\OT1/phv/m/n/10 completamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 203--203\n", - "[]\\OT1/phv/m/n/10 comportamiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 161--222\n", - "[] \n", - "[10]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 238--238\n", - "[]\\OT1/phv/m/n/10 contempor[]aneo\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 251--251\n", - "[]\\OT1/phv/m/n/10 correspondiente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 222--283\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 299--299\n", - "[]\\OT1/phv/m/n/10 descubrimiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 283--345\n", - "[] \n", - "[11]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 397--397\n", - "[]\\OT1/phv/m/n/10 estadounidense\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 406--406\n", - "[]\\OT1/phv/m/n/10 evidentemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 345--407\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 407--470\n", - "[] \n", - "[12]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 529--529\n", - "[]\\OT1/phv/m/n/10 inmediatamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 470--532\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 532--595\n", - "[] \n", - "[13]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 595--658\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 663--663\n", - "[]\\OT1/phv/m/n/10 norteamericano\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 658--720\n", - "[] \n", - "[14]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 722--722\n", - "[]\\OT1/phv/m/n/10 perfectamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 752--752\n", - "[]\\OT1/phv/m/n/10 posteriormente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 767--767\n", - "[]\\OT1/phv/m/n/10 principalmente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 769--769\n", - "[]\\OT1/phv/m/n/10 probablemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 720--779\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 785--785\n", - "[]\\OT1/phv/m/n/10 pr[]acticamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 808--808\n", - "[]\\OT1/phv/m/n/10 reconocimiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 779--840\n", - "[] \n", - "[15]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 840--903\n", - "[] \n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-34.def)\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 903--966\n", - "[] \n", - "[16]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 973--973\n", - "[]\\OT1/phv/m/n/10 verdaderamente\n", - ")\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 966--29\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 966--29\n", - "\n", - "\n", - "(/home/jelle/wd/words/spanish/output/../build/spanish_5000_two_column_alphabeti\n", - "cal_B1.tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--24\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 63--63\n", - "[]\\OT1/phv/m/n/10 anteriormente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 66--66\n", - "[]\\OT1/phv/m/n/10 aparentemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 24--85\n", - "[] \n", - "[17]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 85--148\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 148--211\n", - "[] \n", - "[18]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 223--223\n", - "[]\\OT1/phv/m/n/10 constantemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 211--273\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 283--283\n", - "[]\\OT1/phv/m/n/10 definitivamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 273--335\n", - "[] \n", - "[19]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 375--375\n", - "[]\\OT1/phv/m/n/10 enfrentamiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 335--397\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 399--399\n", - "[]\\OT1/phv/m/n/10 establecimiento\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 420--420\n", - "[]\\OT1/phv/m/n/10 exclusivamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 397--458\n", - "[] \n", - "[20]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 469--469\n", - "[]\\OT1/phv/m/n/10 funcionamiento\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 471--471\n", - "[]\\OT1/phv/m/n/10 fundamentalmente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 493--493\n", - "[]\\OT1/phv/m/n/10 gubernamental\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 458--518\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 568--568\n", - "[]\\OT1/phv/m/n/10 latinoamericano\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 518--580\n", - "[] \n", - "[21]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 604--604\n", - "[]\\OT1/phv/m/n/10 mantenimiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 580--642\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 651--651\n", - "[]\\OT1/phv/m/n/10 necesariamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 642--704\n", - "[] \n", - "[22]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 705--705\n", - "[]\\OT1/phv/m/n/10 particularmente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 727--727\n", - "[]\\OT1/phv/m/n/10 personalmente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 704--765\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 774--774\n", - "[]\\OT1/phv/m/n/10 profundamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 801--801\n", - "[]\\OT1/phv/m/n/10 recientemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 765--826\n", - "[] \n", - "[23]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 826--888\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 888--951\n", - "[] \n", - "[24])\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 951--31\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 951--31\n", - "\n", - "\n", - "(/home/jelle/wd/words/spanish/output/../build/spanish_5000_two_column_alphabeti\n", - "cal_B2.tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--10\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 23--23\n", - "[]\\OT1/phv/m/n/10 administrador\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 34--34\n", - "[]\\OT1/phv/m/n/10 afortunadamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 10--71\n", - "[] \n", - "[25]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 107--107\n", - "[]\\OT1/phv/m/n/10 autom[]aticamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 71--133\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 133--196\n", - "[] \n", - "[26]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 220--220\n", - "[]\\OT1/phv/m/n/10 concretamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 236--236\n", - "[]\\OT1/phv/m/n/10 continuamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 196--257\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 298--298\n", - "[]\\OT1/phv/m/n/10 desgraciadamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 257--319\n", - "[] \n", - "[27]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 319--382\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 389--389\n", - "[]\\OT1/phv/m/n/10 espec[]^^Pficamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 382--444\n", - "[] \n", - "[28]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 444--507\n", - "[] \n", - "\n", - "Overfull \\hbox (3.88509pt too wide) in paragraph at lines 515--515\n", - "[]\\OT1/phv/m/n/10 independientemente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 520--520\n", - "[]\\OT1/phv/m/n/10 indudablemente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 561--561\n", - "[]\\OT1/phv/m/n/10 lamentablemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 507--567\n", - "[] \n", - "[29]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 567--630\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 630--693\n", - "[] \n", - "[30]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 693--756\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 756--819\n", - "[] \n", - "[31]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 820--820\n", - "[]\\OT1/phv/m/n/10 respectivamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 819--881\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 894--894\n", - "[]\\OT1/phv/m/n/10 suficientemente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 900--900\n", - "[]\\OT1/phv/m/n/10 supuestamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 881--942\n", - "[] \n", - "[32]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 984--984\n", - "[]\\OT1/phv/m/n/10 vicepresidente\n", - ")\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 942--33\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 942--33\n", - "\n", - "\n", - "(/home/jelle/wd/words/spanish/output/../build/spanish_5000_two_column_alphabeti\n", - "cal_C1.tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "[33]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--65\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 65--128\n", - "[] \n", - "[34]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 183--183\n", - "[]\\OT1/phv/m/n/10 cinematogr[]afico\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 128--190\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 205--205\n", - "[]\\OT1/phv/m/n/10 complementario\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 247--247\n", - "[]\\OT1/phv/m/n/10 correctamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 248--248\n", - "[]\\OT1/phv/m/n/10 correspondencia\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 190--249\n", - "[] \n", - "[35]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 267--267\n", - "[]\\OT1/phv/m/n/10 cuidadosamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 308--308\n", - "[]\\OT1/phv/m/n/10 desplazamiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 249--309\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 349--349\n", - "[]\\OT1/phv/m/n/10 econ[]omicamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 309--371\n", - "[] \n", - "[36]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 376--376\n", - "[]\\OT1/phv/m/n/10 enormemente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 381--381\n", - "[]\\OT1/phv/m/n/10 entretenimiento\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 391--391\n", - "[]\\OT1/phv/m/n/10 esencialmente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 425--425\n", - "[]\\OT1/phv/m/n/10 extremadamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 371--430\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 459--459\n", - "[]\\OT1/phv/m/n/10 frecuentemente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 489--489\n", - "[]\\OT1/phv/m/n/10 habitualmente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 430--490\n", - "[] \n", - "[37]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 500--500\n", - "[]\\OT1/phv/m/n/10 hispanoamericano\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 490--552\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 552--615\n", - "[] \n", - "[38]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 615--678\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 721--721\n", - "[]\\OT1/phv/m/n/10 permanentemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 678--740\n", - "[] \n", - "[39]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 740--803\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 803--866\n", - "[] \n", - "[40]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 884--884\n", - "[]\\OT1/phv/m/n/10 simult[]aneamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 900--900\n", - "[]\\OT1/phv/m/n/10 sucesivamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 866--927\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 940--940\n", - "[]\\OT1/phv/m/n/10 tradicionalmente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 944--944\n", - "[]\\OT1/phv/m/n/10 tranquilamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 927--988\n", - "[] \n", - "[41])\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 988--35\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 988--35\n", - "\n", - "\n", - "(/home/jelle/wd/words/spanish/output/spanish_5000_two_column_alphabetical_by_ra\n", - "nk.aux) )\n", - "(see the transcript file for additional information){/usr/share/texlive/texmf-d\n", - "ist/fonts/enc/dvips/base/8r.enc}\n", - "Output written on /home/jelle/wd/words/spanish/output/spanish_5000_two_column_a\n", - "lphabetical_by_rank.pdf (41 pages, 180153 bytes).\n", - "Transcript written on /home/jelle/wd/words/spanish/output/spanish_5000_two_colu\n", - "mn_alphabetical_by_rank.log.\n", - "Latexmk: Examining '/home/jelle/wd/words/spanish/output/spanish_5000_two_column_alphabetical_by_rank.log'\n", - "=== TeX engine is 'pdfTeX'\n", - "Latexmk: applying rule 'pdflatex'...\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Latexmk: Log file says output to '/home/jelle/wd/words/spanish/output/spanish_5000_two_column_alphabetical_by_rank.pdf'\n", - "Rule 'pdflatex': File changes, etc:\n", - " Changed files, or newly in use since previous run(s):\n", - " '/home/jelle/wd/words/spanish/output/spanish_5000_two_column_alphabetical_by_rank.aux'\n", - "------------\n", - "Run number 3 of rule 'pdflatex'\n", - "------------\n", - "------------\n", - "Running 'pdflatex -recorder -output-directory=\"/home/jelle/wd/words/spanish/output\" \"spanish_5000_two_column_alphabetical_by_rank.tex\"'\n", - "------------\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2022/dev/Debian) (preloaded format=pdflatex)\n", - " restricted \\write18 enabled.\n", - "entering extended mode\n", - "(./spanish_5000_two_column_alphabetical_by_rank.tex\n", - "LaTeX2e <2021-11-15> patch level 1\n", - "L3 programming layer <2022-01-21>\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls\n", - "Document Class: article 2021/10/04 v1.4n Standard LaTeX document class\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty\n", - "(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty)))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/blindtext/blindtext.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/tools/xspace.sty))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/utf8x.def))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucs.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-global.def))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/supertabular/supertabular.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/psnfss/helvet.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1phv.fd)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def)\n", - "(/home/jelle/wd/words/spanish/output/spanish_5000_two_column_alphabetical_by_ra\n", - "nk.aux)\n", - "*geometry* driver: auto-detecting\n", - "*geometry* detected driver: pdftex\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucsencs.def)\n", - "(/home/jelle/wd/words/spanish/output/spanish_5000_two_column_alphabetical_by_ra\n", - "nk.toc)\n", - "(/home/jelle/wd/words/spanish/output/../build/spanish_5000_two_column_alphabeti\n", - "cal_A1.tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-0.def)\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--45\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 45--100\n", - "[] \n", - "[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 100--163\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 163--226\n", - "[] \n", - "[2]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 226--289\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 289--352\n", - "[] \n", - "[3]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 355--355\n", - "[]\\OT1/phv/m/n/10 especialmente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 352--414\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 414--477\n", - "[] \n", - "[4]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 477--540\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 540--603\n", - "[] \n", - "[5]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 603--666\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 666--729\n", - "[] \n", - "[6]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 729--792\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 814--814\n", - "[]\\OT1/phv/m/n/10 responsabilidad\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-32.def)\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 792--854\n", - "[] \n", - "[7]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 854--917\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 917--979\n", - "[] \n", - "[8])\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 979--27\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 979--27\n", - "\n", - "\n", - "(/home/jelle/wd/words/spanish/output/../build/spanish_5000_two_column_alphabeti\n", - "cal_A2.tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 6--6\n", - "[]\\OT1/phv/m/n/10 absolutamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 15--15\n", - "[]\\OT1/phv/m/n/10 acontecimiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--36\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 70--70\n", - "[]\\OT1/phv/m/n/10 aproximadamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 36--98\n", - "[] \n", - "[9]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 98--161\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 201--201\n", - "[]\\OT1/phv/m/n/10 completamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 203--203\n", - "[]\\OT1/phv/m/n/10 comportamiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 161--222\n", - "[] \n", - "[10]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 238--238\n", - "[]\\OT1/phv/m/n/10 contempor[]aneo\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 251--251\n", - "[]\\OT1/phv/m/n/10 correspondiente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 222--283\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 299--299\n", - "[]\\OT1/phv/m/n/10 descubrimiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 283--345\n", - "[] \n", - "[11]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 397--397\n", - "[]\\OT1/phv/m/n/10 estadounidense\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 406--406\n", - "[]\\OT1/phv/m/n/10 evidentemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 345--407\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 407--470\n", - "[] \n", - "[12]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 529--529\n", - "[]\\OT1/phv/m/n/10 inmediatamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 470--532\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 532--595\n", - "[] \n", - "[13]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 595--658\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 663--663\n", - "[]\\OT1/phv/m/n/10 norteamericano\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 658--720\n", - "[] \n", - "[14]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 722--722\n", - "[]\\OT1/phv/m/n/10 perfectamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 752--752\n", - "[]\\OT1/phv/m/n/10 posteriormente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 767--767\n", - "[]\\OT1/phv/m/n/10 principalmente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 769--769\n", - "[]\\OT1/phv/m/n/10 probablemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 720--779\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 785--785\n", - "[]\\OT1/phv/m/n/10 pr[]acticamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 808--808\n", - "[]\\OT1/phv/m/n/10 reconocimiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 779--840\n", - "[] \n", - "[15]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 840--903\n", - "[] \n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-34.def)\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 903--966\n", - "[] \n", - "[16]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 973--973\n", - "[]\\OT1/phv/m/n/10 verdaderamente\n", - ")\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 966--29\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 966--29\n", - "\n", - "\n", - "(/home/jelle/wd/words/spanish/output/../build/spanish_5000_two_column_alphabeti\n", - "cal_B1.tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--24\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 63--63\n", - "[]\\OT1/phv/m/n/10 anteriormente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 66--66\n", - "[]\\OT1/phv/m/n/10 aparentemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 24--85\n", - "[] \n", - "[17]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 85--148\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 148--211\n", - "[] \n", - "[18]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 223--223\n", - "[]\\OT1/phv/m/n/10 constantemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 211--273\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 283--283\n", - "[]\\OT1/phv/m/n/10 definitivamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 273--335\n", - "[] \n", - "[19]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 375--375\n", - "[]\\OT1/phv/m/n/10 enfrentamiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 335--397\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 399--399\n", - "[]\\OT1/phv/m/n/10 establecimiento\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 420--420\n", - "[]\\OT1/phv/m/n/10 exclusivamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 397--458\n", - "[] \n", - "[20]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 469--469\n", - "[]\\OT1/phv/m/n/10 funcionamiento\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 471--471\n", - "[]\\OT1/phv/m/n/10 fundamentalmente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 493--493\n", - "[]\\OT1/phv/m/n/10 gubernamental\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 458--518\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 568--568\n", - "[]\\OT1/phv/m/n/10 latinoamericano\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 518--580\n", - "[] \n", - "[21]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 604--604\n", - "[]\\OT1/phv/m/n/10 mantenimiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 580--642\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 651--651\n", - "[]\\OT1/phv/m/n/10 necesariamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 642--704\n", - "[] \n", - "[22]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 705--705\n", - "[]\\OT1/phv/m/n/10 particularmente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 727--727\n", - "[]\\OT1/phv/m/n/10 personalmente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 704--765\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 774--774\n", - "[]\\OT1/phv/m/n/10 profundamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 801--801\n", - "[]\\OT1/phv/m/n/10 recientemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 765--826\n", - "[] \n", - "[23]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 826--888\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 888--951\n", - "[] \n", - "[24])\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 951--31\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 951--31\n", - "\n", - "\n", - "(/home/jelle/wd/words/spanish/output/../build/spanish_5000_two_column_alphabeti\n", - "cal_B2.tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--10\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 23--23\n", - "[]\\OT1/phv/m/n/10 administrador\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 34--34\n", - "[]\\OT1/phv/m/n/10 afortunadamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 10--71\n", - "[] \n", - "[25]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 107--107\n", - "[]\\OT1/phv/m/n/10 autom[]aticamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 71--133\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 133--196\n", - "[] \n", - "[26]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 220--220\n", - "[]\\OT1/phv/m/n/10 concretamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 236--236\n", - "[]\\OT1/phv/m/n/10 continuamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 196--257\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 298--298\n", - "[]\\OT1/phv/m/n/10 desgraciadamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 257--319\n", - "[] \n", - "[27]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 319--382\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 389--389\n", - "[]\\OT1/phv/m/n/10 espec[]^^Pficamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 382--444\n", - "[] \n", - "[28]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 444--507\n", - "[] \n", - "\n", - "Overfull \\hbox (3.88509pt too wide) in paragraph at lines 515--515\n", - "[]\\OT1/phv/m/n/10 independientemente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 520--520\n", - "[]\\OT1/phv/m/n/10 indudablemente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 561--561\n", - "[]\\OT1/phv/m/n/10 lamentablemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 507--567\n", - "[] \n", - "[29]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 567--630\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 630--693\n", - "[] \n", - "[30]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 693--756\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 756--819\n", - "[] \n", - "[31]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 820--820\n", - "[]\\OT1/phv/m/n/10 respectivamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 819--881\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 894--894\n", - "[]\\OT1/phv/m/n/10 suficientemente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 900--900\n", - "[]\\OT1/phv/m/n/10 supuestamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 881--942\n", - "[] \n", - "[32]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 984--984\n", - "[]\\OT1/phv/m/n/10 vicepresidente\n", - ")\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 942--33\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 942--33\n", - "\n", - "\n", - "(/home/jelle/wd/words/spanish/output/../build/spanish_5000_two_column_alphabeti\n", - "cal_C1.tex\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "[33]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 1--65\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 65--128\n", - "[] \n", - "[34]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 183--183\n", - "[]\\OT1/phv/m/n/10 cinematogr[]afico\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 128--190\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 205--205\n", - "[]\\OT1/phv/m/n/10 complementario\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 247--247\n", - "[]\\OT1/phv/m/n/10 correctamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 248--248\n", - "[]\\OT1/phv/m/n/10 correspondencia\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 190--249\n", - "[] \n", - "[35]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 267--267\n", - "[]\\OT1/phv/m/n/10 cuidadosamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 308--308\n", - "[]\\OT1/phv/m/n/10 desplazamiento\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 249--309\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 349--349\n", - "[]\\OT1/phv/m/n/10 econ[]omicamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 309--371\n", - "[] \n", - "[36]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 376--376\n", - "[]\\OT1/phv/m/n/10 enormemente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 381--381\n", - "[]\\OT1/phv/m/n/10 entretenimiento\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 391--391\n", - "[]\\OT1/phv/m/n/10 esencialmente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 425--425\n", - "[]\\OT1/phv/m/n/10 extremadamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 371--430\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 459--459\n", - "[]\\OT1/phv/m/n/10 frecuentemente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 489--489\n", - "[]\\OT1/phv/m/n/10 habitualmente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 430--490\n", - "[] \n", - "[37]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 500--500\n", - "[]\\OT1/phv/m/n/10 hispanoamericano\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 490--552\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 552--615\n", - "[] \n", - "[38]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 615--678\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 721--721\n", - "[]\\OT1/phv/m/n/10 permanentemente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 678--740\n", - "[] \n", - "[39]\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 740--803\n", - "[] \n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 803--866\n", - "[] \n", - "[40]\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 884--884\n", - "[]\\OT1/phv/m/n/10 simult[]aneamente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 900--900\n", - "[]\\OT1/phv/m/n/10 sucesivamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 866--927\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 940--940\n", - "[]\\OT1/phv/m/n/10 tradicionalmente\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 944--944\n", - "[]\\OT1/phv/m/n/10 tranquilamente\n", - "\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 927--988\n", - "[] \n", - "[41])\n", - "Overfull \\hbox (11.64378pt too wide) in paragraph at lines 988--35\n", - "[]\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 988--35\n", - "\n", - "\n", - "(/home/jelle/wd/words/spanish/output/spanish_5000_two_column_alphabetical_by_ra\n", - "nk.aux) )\n", - "(see the transcript file for additional information){/usr/share/texlive/texmf-d\n", - "ist/fonts/enc/dvips/base/8r.enc}\n", - "Output written on /home/jelle/wd/words/spanish/output/spanish_5000_two_column_a\n", - "lphabetical_by_rank.pdf (41 pages, 180153 bytes).\n", - "Transcript written on /home/jelle/wd/words/spanish/output/spanish_5000_two_colu\n", - "mn_alphabetical_by_rank.log.\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "Latexmk: Log file says output to '/home/jelle/wd/words/spanish/output/spanish_5000_two_column_alphabetical_by_rank.pdf'\n", - "Latexmk: Undoing directory change\n", - "Latexmk: Changing directory to 'format/'\n", - "Rule 'pdflatex': File changes, etc:\n", - " Changed files, or newly in use since previous run(s):\n", - " 'spanish_5000_two_column_alphabetical_by_rank_with_example.tex'\n", - "------------\n", - "Run number 1 of rule 'pdflatex'\n", - "------------\n", - "------------\n", - "Running 'pdflatex -recorder -output-directory=\"/home/jelle/wd/words/spanish/output\" \"spanish_5000_two_column_alphabetical_by_rank_with_example.tex\"'\n", - "------------\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Latexmk: Examining '/home/jelle/wd/words/spanish/output/spanish_5000_two_column_alphabetical_by_rank.log'\n", - "=== TeX engine is 'pdfTeX'\n", - "Latexmk: All targets (/home/jelle/wd/words/spanish/output/spanish_5000_two_column_alphabetical_by_rank.pdf) are up-to-date\n", - "Latexmk: applying rule 'pdflatex'...\n", - "This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2022/dev/Debian) (preloaded format=pdflatex)\n", - " restricted \\write18 enabled.\n", - "entering extended mode\n", - "(./spanish_5000_two_column_alphabetical_by_rank_with_example.tex\n", - "LaTeX2e <2021-11-15> patch level 1\n", - "L3 programming layer <2022-01-21>\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls\n", - "Document Class: article 2021/10/04 v1.4n Standard LaTeX document class\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty\n", - "(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty)))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/blindtext/blindtext.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/tools/xspace.sty))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/utf8x.def))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucs.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-global.def))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/supertabular/supertabular.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/psnfss/helvet.sty)\n", - "(/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty\n", - "(/usr/share/texlive/texmf-dist/tex/latex/psnfss/t1phv.fd))\n", - "(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def)\n", - "(/home/jelle/wd/words/spanish/output/spanish_5000_two_column_alphabetical_by_ra\n", - "nk_with_example.aux)\n", - "*geometry* driver: auto-detecting\n", - "*geometry* detected driver: pdftex\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/ucsencs.def)\n", - "No file spanish_5000_two_column_alphabetical_by_rank_with_example.toc.\n", - "\n", - "(/home/jelle/wd/words/spanish/output/../build/spanish_5000_two_column_alphabeti\n", - "cal_A1_with_example.tex\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1--1\n", - "[]|\\T1/phv/b/n/10 Spanish\n", - "\n", - "Overfull \\hbox (13.28868pt too wide) in paragraph at lines 1--1\n", - "[] \n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 1--1\n", - "[]\\T1/phv/b/n/10 Spanish\n", - "\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 4--4\n", - "[]\\T1/phv/m/n/10 down, be-low,\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-0.def)\n", - "Underfull \\hbox (badness 10000) in paragraph at lines 5--5\n", - "[]\\T1/phv/m/n/10 abandonar\n", - "(/usr/share/texlive/texmf-dist/tex/latex/ucs/data/uni-32.def)" - ] - } - ], - "source": [ - "# Run terminal cd format latexmk oxford*.tex to finish build pdfs\n", - "cmd_build = f\"latexmk -pdf -cd format/{DATASET}*.tex -outdir=../output\" \n", - "#os.system(cmd_build)" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [ - { - "ename": "NameError", - "evalue": "name 'os' is not defined", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", - "Input \u001b[0;32mIn [1]\u001b[0m, in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 4\u001b[0m cmd_cleanup_format \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mrm \u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;241m+\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m \u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;241m.\u001b[39mjoin(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mformat/\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mf\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m \u001b[38;5;28;01mfor\u001b[39;00m f \u001b[38;5;129;01min\u001b[39;00m files_to_remove\u001b[38;5;241m+\u001b[39m[\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m*.pdf\u001b[39m\u001b[38;5;124m\"\u001b[39m])\n\u001b[1;32m 5\u001b[0m cmd_cleanup_main \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mrm \u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;241m+\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m \u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;241m.\u001b[39mjoin(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m./\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mf\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m\"\u001b[39m \u001b[38;5;28;01mfor\u001b[39;00m f \u001b[38;5;129;01min\u001b[39;00m files_to_remove)\n\u001b[0;32m----> 6\u001b[0m \u001b[43mos\u001b[49m\u001b[38;5;241m.\u001b[39msystem(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124m;\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;241m.\u001b[39mjoin((cmd_cleanup_format, cmd_cleanup_main, cmd_cleanup_output)))\n", - "\u001b[0;31mNameError\u001b[0m: name 'os' is not defined" - ] - } - ], - "source": [ - "# Clean any build files in output/\n", - "import os\n", - "files_to_remove = [\"*.fls\", \"*.log\", \"*.toc\", \"*.synctex*\", \"*.fdb*\", \"*.aux\"]\n", - "cmd_cleanup_output = \"rm \"+\" \".join(f\"output/{f}\" for f in files_to_remove)\n", - "cmd_cleanup_format = \"rm \"+\" \".join(f\"format/{f}\" for f in files_to_remove+[\"*.pdf\"])\n", - "cmd_cleanup_main = \"rm \"+\" \".join(f\"./{f}\" for f in files_to_remove)\n", - "os.system(\";\".join((cmd_cleanup_format, cmd_cleanup_main, cmd_cleanup_output)))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3.10.4 ('words')", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.11.8" - }, - "vscode": { - "interpreter": { - "hash": "18f31073cf804094dd95fd57955d17dd2adebf1ed8efc5124bc1efb23479e449" - } - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/spanish/format/table.css b/spanish/format/table.css deleted file mode 100644 index 47e2860..0000000 --- a/spanish/format/table.css +++ /dev/null @@ -1,27 +0,0 @@ -table { - margin-left: auto; - margin-right: auto; - margin-bottom: 12px; - border-spacing: 0; - /* border-bottom: 2px solid black; - border-top: 2px solid black; */ -} -table th { - padding: 2px 5px; - background-color: white; - border-top: none; - border-left: none; - border-right: none; - border-bottom: 1px solid black; -} -table td { - padding: 2px 5px; - border-top: 1px solid black; - border-bottom: none; - border-left: none; - border-right: none; -} - -body { - font-family: "Computer Modern Sans", sans-serif; -} \ No newline at end of file diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/english/data/df.pkl b/src/data/english/df.pkl similarity index 100% rename from english/data/df.pkl rename to src/data/english/df.pkl diff --git a/english/data/df_concat.pkl b/src/data/english/df_concat.pkl similarity index 100% rename from english/data/df_concat.pkl rename to src/data/english/df_concat.pkl diff --git a/english/data/df_definition.pkl b/src/data/english/df_definition.pkl similarity index 100% rename from english/data/df_definition.pkl rename to src/data/english/df_definition.pkl diff --git a/english/data/oxford_3000.csv b/src/data/english/oxford_3000.csv similarity index 100% rename from english/data/oxford_3000.csv rename to src/data/english/oxford_3000.csv diff --git a/english/data/oxford_3000.json b/src/data/english/oxford_3000.json similarity index 100% rename from english/data/oxford_3000.json rename to src/data/english/oxford_3000.json diff --git a/english/data/oxford_3000.pkl b/src/data/english/oxford_3000.pkl similarity index 100% rename from english/data/oxford_3000.pkl rename to src/data/english/oxford_3000.pkl diff --git a/english/data/oxford_5000.csv b/src/data/english/oxford_5000.csv similarity index 100% rename from english/data/oxford_5000.csv rename to src/data/english/oxford_5000.csv diff --git a/english/data/oxford_5000.json b/src/data/english/oxford_5000.json similarity index 100% rename from english/data/oxford_5000.json rename to src/data/english/oxford_5000.json diff --git a/english/data/oxford_5000.pkl b/src/data/english/oxford_5000.pkl similarity index 100% rename from english/data/oxford_5000.pkl rename to src/data/english/oxford_5000.pkl diff --git a/english/data/oxford_5000_exclusive.csv b/src/data/english/oxford_5000_exclusive.csv similarity index 100% rename from english/data/oxford_5000_exclusive.csv rename to src/data/english/oxford_5000_exclusive.csv diff --git a/english/data/oxford_5000_exclusive.json b/src/data/english/oxford_5000_exclusive.json similarity index 100% rename from english/data/oxford_5000_exclusive.json rename to src/data/english/oxford_5000_exclusive.json diff --git a/english/data/oxford_5000_exclusive.pkl b/src/data/english/oxford_5000_exclusive.pkl similarity index 100% rename from english/data/oxford_5000_exclusive.pkl rename to src/data/english/oxford_5000_exclusive.pkl diff --git a/spanish/data/spanish.pkl b/src/data/spanish/spanish.pkl similarity index 100% rename from spanish/data/spanish.pkl rename to src/data/spanish/spanish.pkl diff --git a/spanish/data/spanish2.pkl b/src/data/spanish/spanish2.pkl similarity index 100% rename from spanish/data/spanish2.pkl rename to src/data/spanish/spanish2.pkl diff --git a/english/tusharlock10-Dictionary/DA.json b/src/data/tusharlock10-Dictionary/DA.json similarity index 100% rename from english/tusharlock10-Dictionary/DA.json rename to src/data/tusharlock10-Dictionary/DA.json diff --git a/english/tusharlock10-Dictionary/DB.json b/src/data/tusharlock10-Dictionary/DB.json similarity index 100% rename from english/tusharlock10-Dictionary/DB.json rename to src/data/tusharlock10-Dictionary/DB.json diff --git a/english/tusharlock10-Dictionary/DC.json b/src/data/tusharlock10-Dictionary/DC.json similarity index 100% rename from english/tusharlock10-Dictionary/DC.json rename to src/data/tusharlock10-Dictionary/DC.json diff --git a/english/tusharlock10-Dictionary/DD.json b/src/data/tusharlock10-Dictionary/DD.json similarity index 100% rename from english/tusharlock10-Dictionary/DD.json rename to src/data/tusharlock10-Dictionary/DD.json diff --git a/english/tusharlock10-Dictionary/DE.json b/src/data/tusharlock10-Dictionary/DE.json similarity index 100% rename from english/tusharlock10-Dictionary/DE.json rename to src/data/tusharlock10-Dictionary/DE.json diff --git a/english/tusharlock10-Dictionary/DF.json b/src/data/tusharlock10-Dictionary/DF.json similarity index 100% rename from english/tusharlock10-Dictionary/DF.json rename to src/data/tusharlock10-Dictionary/DF.json diff --git a/english/tusharlock10-Dictionary/DG.json b/src/data/tusharlock10-Dictionary/DG.json similarity index 100% rename from english/tusharlock10-Dictionary/DG.json rename to src/data/tusharlock10-Dictionary/DG.json diff --git a/english/tusharlock10-Dictionary/DH.json b/src/data/tusharlock10-Dictionary/DH.json similarity index 100% rename from english/tusharlock10-Dictionary/DH.json rename to src/data/tusharlock10-Dictionary/DH.json diff --git a/english/tusharlock10-Dictionary/DI.json b/src/data/tusharlock10-Dictionary/DI.json similarity index 100% rename from english/tusharlock10-Dictionary/DI.json rename to src/data/tusharlock10-Dictionary/DI.json diff --git a/english/tusharlock10-Dictionary/DJ.json b/src/data/tusharlock10-Dictionary/DJ.json similarity index 100% rename from english/tusharlock10-Dictionary/DJ.json rename to src/data/tusharlock10-Dictionary/DJ.json diff --git a/english/tusharlock10-Dictionary/DK.json b/src/data/tusharlock10-Dictionary/DK.json similarity index 100% rename from english/tusharlock10-Dictionary/DK.json rename to src/data/tusharlock10-Dictionary/DK.json diff --git a/english/tusharlock10-Dictionary/DL.json b/src/data/tusharlock10-Dictionary/DL.json similarity index 100% rename from english/tusharlock10-Dictionary/DL.json rename to src/data/tusharlock10-Dictionary/DL.json diff --git a/english/tusharlock10-Dictionary/DM.json b/src/data/tusharlock10-Dictionary/DM.json similarity index 100% rename from english/tusharlock10-Dictionary/DM.json rename to src/data/tusharlock10-Dictionary/DM.json diff --git a/english/tusharlock10-Dictionary/DN.json b/src/data/tusharlock10-Dictionary/DN.json similarity index 100% rename from english/tusharlock10-Dictionary/DN.json rename to src/data/tusharlock10-Dictionary/DN.json diff --git a/english/tusharlock10-Dictionary/DO.json b/src/data/tusharlock10-Dictionary/DO.json similarity index 100% rename from english/tusharlock10-Dictionary/DO.json rename to src/data/tusharlock10-Dictionary/DO.json diff --git a/english/tusharlock10-Dictionary/DP.json b/src/data/tusharlock10-Dictionary/DP.json similarity index 100% rename from english/tusharlock10-Dictionary/DP.json rename to src/data/tusharlock10-Dictionary/DP.json diff --git a/english/tusharlock10-Dictionary/DQ.json b/src/data/tusharlock10-Dictionary/DQ.json similarity index 100% rename from english/tusharlock10-Dictionary/DQ.json rename to src/data/tusharlock10-Dictionary/DQ.json diff --git a/english/tusharlock10-Dictionary/DR.json b/src/data/tusharlock10-Dictionary/DR.json similarity index 100% rename from english/tusharlock10-Dictionary/DR.json rename to src/data/tusharlock10-Dictionary/DR.json diff --git a/english/tusharlock10-Dictionary/DS.json b/src/data/tusharlock10-Dictionary/DS.json similarity index 100% rename from english/tusharlock10-Dictionary/DS.json rename to src/data/tusharlock10-Dictionary/DS.json diff --git a/english/tusharlock10-Dictionary/DT.json b/src/data/tusharlock10-Dictionary/DT.json similarity index 100% rename from english/tusharlock10-Dictionary/DT.json rename to src/data/tusharlock10-Dictionary/DT.json diff --git a/english/tusharlock10-Dictionary/DU.json b/src/data/tusharlock10-Dictionary/DU.json similarity index 100% rename from english/tusharlock10-Dictionary/DU.json rename to src/data/tusharlock10-Dictionary/DU.json diff --git a/english/tusharlock10-Dictionary/DV.json b/src/data/tusharlock10-Dictionary/DV.json similarity index 100% rename from english/tusharlock10-Dictionary/DV.json rename to src/data/tusharlock10-Dictionary/DV.json diff --git a/english/tusharlock10-Dictionary/DW.json b/src/data/tusharlock10-Dictionary/DW.json similarity index 100% rename from english/tusharlock10-Dictionary/DW.json rename to src/data/tusharlock10-Dictionary/DW.json diff --git a/english/tusharlock10-Dictionary/DX.json b/src/data/tusharlock10-Dictionary/DX.json similarity index 100% rename from english/tusharlock10-Dictionary/DX.json rename to src/data/tusharlock10-Dictionary/DX.json diff --git a/english/tusharlock10-Dictionary/DY.json b/src/data/tusharlock10-Dictionary/DY.json similarity index 100% rename from english/tusharlock10-Dictionary/DY.json rename to src/data/tusharlock10-Dictionary/DY.json diff --git a/english/tusharlock10-Dictionary/DZ.json b/src/data/tusharlock10-Dictionary/DZ.json similarity index 100% rename from english/tusharlock10-Dictionary/DZ.json rename to src/data/tusharlock10-Dictionary/DZ.json diff --git a/english/format/oxford_3000_two_column_alphabetical.tex b/src/format/english/oxford_3000_two_column_alphabetical.tex similarity index 89% rename from english/format/oxford_3000_two_column_alphabetical.tex rename to src/format/english/oxford_3000_two_column_alphabetical.tex index 9f60371..4ab9940 100644 --- a/english/format/oxford_3000_two_column_alphabetical.tex +++ b/src/format/english/oxford_3000_two_column_alphabetical.tex @@ -20,6 +20,6 @@ \maketitle \tablehead{\textbf{Word} & \textbf{Definition}\\} -\input{../build/oxford_3000_table_alphabetical.tex} +\input{../../build/oxford_3000_table_alphabetical.tex} \end{document} diff --git a/english/format/oxford_3000_two_column_by_cefr.tex b/src/format/english/oxford_3000_two_column_by_cefr.tex similarity index 73% rename from english/format/oxford_3000_two_column_by_cefr.tex rename to src/format/english/oxford_3000_two_column_by_cefr.tex index 4afcd7b..d30335a 100644 --- a/english/format/oxford_3000_two_column_by_cefr.tex +++ b/src/format/english/oxford_3000_two_column_by_cefr.tex @@ -21,13 +21,13 @@ \tableofcontents \tablehead{\textbf{Word} & \textbf{Definition}\\} \section{A1} -\@input{../build/oxford_3000_A1.tex} +\@input{../../build/oxford_3000_A1.tex} \section{A2} -\@input{../build/oxford_3000_A2.tex} +\@input{../../build/oxford_3000_A2.tex} \section{B1} -\@input{../build/oxford_3000_B1.tex} +\@input{../../build/oxford_3000_B1.tex} \section{B2} -\@input{../build/oxford_3000_B2.tex} +\@input{../../build/oxford_3000_B2.tex} \section{C1} -\@input{../build/oxford_3000_C1.tex} +\@input{../../build/oxford_3000_C1.tex} \end{document} diff --git a/english/format/oxford_3000_two_column_by_cefr_shuffle.tex b/src/format/english/oxford_3000_two_column_by_cefr_shuffle.tex similarity index 70% rename from english/format/oxford_3000_two_column_by_cefr_shuffle.tex rename to src/format/english/oxford_3000_two_column_by_cefr_shuffle.tex index 91de8bd..4c46c74 100644 --- a/english/format/oxford_3000_two_column_by_cefr_shuffle.tex +++ b/src/format/english/oxford_3000_two_column_by_cefr_shuffle.tex @@ -21,13 +21,13 @@ \tableofcontents \tablehead{\textbf{Word} & \textbf{Definition}\\} \section{A1} -\@input{../build/oxford_3000_shuffle_A1.tex} +\@input{../../build/oxford_3000_shuffle_A1.tex} \section{A2} -\@input{../build/oxford_3000_shuffle_A2.tex} +\@input{../../build/oxford_3000_shuffle_A2.tex} \section{B1} -\@input{../build/oxford_3000_shuffle_B1.tex} +\@input{../../build/oxford_3000_shuffle_B1.tex} \section{B2} -\@input{../build/oxford_3000_shuffle_B2.tex} +\@input{../../build/oxford_3000_shuffle_B2.tex} \section{C1} -\@input{../build/oxford_3000_shuffle_C1.tex} +\@input{../../build/oxford_3000_shuffle_C1.tex} \end{document} diff --git a/english/format/oxford_5000_exclusive_two_column_alphabetical.tex b/src/format/english/oxford_5000_exclusive_two_column_alphabetical.tex similarity index 87% rename from english/format/oxford_5000_exclusive_two_column_alphabetical.tex rename to src/format/english/oxford_5000_exclusive_two_column_alphabetical.tex index 11a7300..d131126 100644 --- a/english/format/oxford_5000_exclusive_two_column_alphabetical.tex +++ b/src/format/english/oxford_5000_exclusive_two_column_alphabetical.tex @@ -20,6 +20,6 @@ \maketitle \tablehead{\textbf{Word} & \textbf{Definition}\\} -\input{../build/oxford_5000_exclusive_table_alphabetical.tex} +\input{../../build/oxford_5000_exclusive_table_alphabetical.tex} \end{document} diff --git a/english/format/oxford_5000_exclusive_two_column_by_cefr.tex b/src/format/english/oxford_5000_exclusive_two_column_by_cefr.tex similarity index 84% rename from english/format/oxford_5000_exclusive_two_column_by_cefr.tex rename to src/format/english/oxford_5000_exclusive_two_column_by_cefr.tex index b4306dd..42f3ca2 100644 --- a/english/format/oxford_5000_exclusive_two_column_by_cefr.tex +++ b/src/format/english/oxford_5000_exclusive_two_column_by_cefr.tex @@ -21,7 +21,7 @@ \tableofcontents \tablehead{\textbf{Word} & \textbf{Definition}\\} \section{B2} -\@input{../build/oxford_5000_exclusive_B2.tex} +\@input{../../build/oxford_5000_exclusive_B2.tex} \section{C1} -\@input{../build/oxford_5000_exclusive_C1.tex} +\@input{../../build/oxford_5000_exclusive_C1.tex} \end{document} diff --git a/english/format/oxford_5000_exclusive_two_column_by_cefr_shuffle.tex b/src/format/english/oxford_5000_exclusive_two_column_by_cefr_shuffle.tex similarity index 82% rename from english/format/oxford_5000_exclusive_two_column_by_cefr_shuffle.tex rename to src/format/english/oxford_5000_exclusive_two_column_by_cefr_shuffle.tex index 913b2a2..40444a6 100644 --- a/english/format/oxford_5000_exclusive_two_column_by_cefr_shuffle.tex +++ b/src/format/english/oxford_5000_exclusive_two_column_by_cefr_shuffle.tex @@ -21,7 +21,7 @@ \tableofcontents \tablehead{\textbf{Word} & \textbf{Definition}\\} \section{B2} -\@input{../build/oxford_5000_exclusive_shuffle_B2.tex} +\@input{../../build/oxford_5000_exclusive_shuffle_B2.tex} \section{C1} -\@input{../build/oxford_5000_exclusive_shuffle_C1.tex} +\@input{../../build/oxford_5000_exclusive_shuffle_C1.tex} \end{document} diff --git a/english/format/oxford_5000_two_column_alphabetical.tex b/src/format/english/oxford_5000_two_column_alphabetical.tex similarity index 89% rename from english/format/oxford_5000_two_column_alphabetical.tex rename to src/format/english/oxford_5000_two_column_alphabetical.tex index dec39ce..7c2c900 100644 --- a/english/format/oxford_5000_two_column_alphabetical.tex +++ b/src/format/english/oxford_5000_two_column_alphabetical.tex @@ -20,6 +20,6 @@ \maketitle \tablehead{\textbf{Word} & \textbf{Definition}\\} -\input{../build/oxford_5000_table_alphabetical.tex} +\input{../../build/oxford_5000_table_alphabetical.tex} \end{document} diff --git a/english/format/oxford_5000_two_column_by_cefr.tex b/src/format/english/oxford_5000_two_column_by_cefr.tex similarity index 73% rename from english/format/oxford_5000_two_column_by_cefr.tex rename to src/format/english/oxford_5000_two_column_by_cefr.tex index ffe1959..cde9360 100644 --- a/english/format/oxford_5000_two_column_by_cefr.tex +++ b/src/format/english/oxford_5000_two_column_by_cefr.tex @@ -21,13 +21,13 @@ \tableofcontents \tablehead{\textbf{Word} & \textbf{Definition}\\} \section{A1} -\@input{../build/oxford_5000_A1.tex} +\@input{../../build/oxford_5000_A1.tex} \section{A2} -\@input{../build/oxford_5000_A2.tex} +\@input{../../build/oxford_5000_A2.tex} \section{B1} -\@input{../build/oxford_5000_B1.tex} +\@input{../../build/oxford_5000_B1.tex} \section{B2} -\@input{../build/oxford_5000_B2.tex} +\@input{../../build/oxford_5000_B2.tex} \section{C1} -\@input{../build/oxford_5000_C1.tex} +\@input{../../build/oxford_5000_C1.tex} \end{document} diff --git a/english/format/oxford_5000_two_column_by_cefr_shuffle.tex b/src/format/english/oxford_5000_two_column_by_cefr_shuffle.tex similarity index 70% rename from english/format/oxford_5000_two_column_by_cefr_shuffle.tex rename to src/format/english/oxford_5000_two_column_by_cefr_shuffle.tex index 6f59313..4760be9 100644 --- a/english/format/oxford_5000_two_column_by_cefr_shuffle.tex +++ b/src/format/english/oxford_5000_two_column_by_cefr_shuffle.tex @@ -21,13 +21,13 @@ \tableofcontents \tablehead{\textbf{Word} & \textbf{Definition}\\} \section{A1} -\@input{../build/oxford_5000_shuffle_A1.tex} +\@input{../../build/oxford_5000_shuffle_A1.tex} \section{A2} -\@input{../build/oxford_5000_shuffle_A2.tex} +\@input{../../build/oxford_5000_shuffle_A2.tex} \section{B1} -\@input{../build/oxford_5000_shuffle_B1.tex} +\@input{../../build/oxford_5000_shuffle_B1.tex} \section{B2} -\@input{../build/oxford_5000_shuffle_B2.tex} +\@input{../../build/oxford_5000_shuffle_B2.tex} \section{C1} -\@input{../build/oxford_5000_shuffle_C1.tex} +\@input{../../build/oxford_5000_shuffle_C1.tex} \end{document} diff --git a/spanish/format/spanish_3000_two_column_alphabetical.tex b/src/format/spanish/spanish_3000_two_column_alphabetical.tex similarity index 89% rename from spanish/format/spanish_3000_two_column_alphabetical.tex rename to src/format/spanish/spanish_3000_two_column_alphabetical.tex index dcdea40..7bcc625 100644 --- a/spanish/format/spanish_3000_two_column_alphabetical.tex +++ b/src/format/spanish/spanish_3000_two_column_alphabetical.tex @@ -18,5 +18,5 @@ \maketitle \tableofcontents \tablehead{\textbf{Spanish (type)} & \textbf{English}\\} -\@input{../build/spanish_3000_two_column_alphabetical.tex} +\@input{../../build/spanish_3000_two_column_alphabetical.tex} \end{document} diff --git a/spanish/format/spanish_3000_two_column_alphabetical_by_rank.tex b/src/format/spanish/spanish_3000_two_column_alphabetical_by_rank.tex similarity index 73% rename from spanish/format/spanish_3000_two_column_alphabetical_by_rank.tex rename to src/format/spanish/spanish_3000_two_column_alphabetical_by_rank.tex index 337aab8..c3b7d8f 100644 --- a/spanish/format/spanish_3000_two_column_alphabetical_by_rank.tex +++ b/src/format/spanish/spanish_3000_two_column_alphabetical_by_rank.tex @@ -19,9 +19,9 @@ \tableofcontents \tablehead{\textbf{Spanish (type)} & \textbf{English}\\} \section{A1} -\@input{../build/spanish_3000_two_column_alphabetical_A1.tex} +\@input{../../build/spanish_3000_two_column_alphabetical_A1.tex} \section{A2} -\@input{../build/spanish_3000_two_column_alphabetical_A2.tex} +\@input{../../build/spanish_3000_two_column_alphabetical_A2.tex} \section{B1} -\@input{../build/spanish_3000_two_column_alphabetical_B1.tex} +\@input{../../build/spanish_3000_two_column_alphabetical_B1.tex} \end{document} diff --git a/spanish/format/spanish_3000_two_column_alphabetical_by_rank_with_example.tex b/src/format/spanish/spanish_3000_two_column_alphabetical_by_rank_with_example.tex similarity index 72% rename from spanish/format/spanish_3000_two_column_alphabetical_by_rank_with_example.tex rename to src/format/spanish/spanish_3000_two_column_alphabetical_by_rank_with_example.tex index e34892d..012ffad 100644 --- a/spanish/format/spanish_3000_two_column_alphabetical_by_rank_with_example.tex +++ b/src/format/spanish/spanish_3000_two_column_alphabetical_by_rank_with_example.tex @@ -19,9 +19,9 @@ \tableofcontents \tablehead{\textbf{Spanish (type)} & \textbf{English} & \textbf{example (Spanish)} & \textbf{example (English)}\\} \section{A1} -\@input{../build/spanish_3000_two_column_alphabetical_A1_with_example.tex} +\@input{../../build/spanish_3000_two_column_alphabetical_A1_with_example.tex} \section{A2} -\@input{../build/spanish_3000_two_column_alphabetical_A2_with_example.tex} +\@input{../../build/spanish_3000_two_column_alphabetical_A2_with_example.tex} \section{B1} -\@input{../build/spanish_3000_two_column_alphabetical_B1_with_example.tex} +\@input{../../build/spanish_3000_two_column_alphabetical_B1_with_example.tex} \end{document} diff --git a/spanish/format/spanish_3000_two_column_shuffle.tex b/src/format/spanish/spanish_3000_two_column_shuffle.tex similarity index 89% rename from spanish/format/spanish_3000_two_column_shuffle.tex rename to src/format/spanish/spanish_3000_two_column_shuffle.tex index 05fcf74..2b8ab80 100644 --- a/spanish/format/spanish_3000_two_column_shuffle.tex +++ b/src/format/spanish/spanish_3000_two_column_shuffle.tex @@ -18,5 +18,5 @@ \maketitle \tableofcontents \tablehead{\textbf{Spanish (type)} & \textbf{English}\\} -\@input{../build/spanish_3000_two_column_shuffle.tex} +\@input{../../build/spanish_3000_two_column_shuffle.tex} \end{document} diff --git a/spanish/format/spanish_3000_two_column_shuffle_by_rank.tex b/src/format/spanish/spanish_3000_two_column_shuffle_by_rank.tex similarity index 74% rename from spanish/format/spanish_3000_two_column_shuffle_by_rank.tex rename to src/format/spanish/spanish_3000_two_column_shuffle_by_rank.tex index 0a18aac..4e072b7 100644 --- a/spanish/format/spanish_3000_two_column_shuffle_by_rank.tex +++ b/src/format/spanish/spanish_3000_two_column_shuffle_by_rank.tex @@ -19,9 +19,9 @@ \tableofcontents \tablehead{\textbf{Spanish (type)} & \textbf{English}\\} \section{A1} -\@input{../build/spanish_3000_two_column_shuffle_A1.tex} +\@input{../../build/spanish_3000_two_column_shuffle_A1.tex} \section{A2} -\@input{../build/spanish_3000_two_column_shuffle_A2.tex} +\@input{../../build/spanish_3000_two_column_shuffle_A2.tex} \section{B1} -\@input{../build/spanish_3000_two_column_shuffle_B1.tex} +\@input{../../build/spanish_3000_two_column_shuffle_B1.tex} \end{document} diff --git a/spanish/format/spanish_3000_two_column_shuffle_by_rank_with_example.tex b/src/format/spanish/spanish_3000_two_column_shuffle_by_rank_with_example.tex similarity index 73% rename from spanish/format/spanish_3000_two_column_shuffle_by_rank_with_example.tex rename to src/format/spanish/spanish_3000_two_column_shuffle_by_rank_with_example.tex index 972a7a8..65a58e2 100644 --- a/spanish/format/spanish_3000_two_column_shuffle_by_rank_with_example.tex +++ b/src/format/spanish/spanish_3000_two_column_shuffle_by_rank_with_example.tex @@ -19,9 +19,9 @@ \tableofcontents \tablehead{\textbf{Spanish (type)} & \textbf{English} & \textbf{example (Spanish)} & \textbf{example (English)}\\} \section{A1} -\@input{../build/spanish_3000_two_column_shuffle_A1_with_example.tex} +\@input{../../build/spanish_3000_two_column_shuffle_A1_with_example.tex} \section{A2} -\@input{../build/spanish_3000_two_column_shuffle_A2_with_example.tex} +\@input{../../build/spanish_3000_two_column_shuffle_A2_with_example.tex} \section{B1} -\@input{../build/spanish_3000_two_column_shuffle_B1_with_example.tex} +\@input{../../build/spanish_3000_two_column_shuffle_B1_with_example.tex} \end{document} diff --git a/spanish/format/spanish_5000_two_column_alphabetical.tex b/src/format/spanish/spanish_5000_two_column_alphabetical.tex similarity index 89% rename from spanish/format/spanish_5000_two_column_alphabetical.tex rename to src/format/spanish/spanish_5000_two_column_alphabetical.tex index ae5ac55..6441d88 100644 --- a/spanish/format/spanish_5000_two_column_alphabetical.tex +++ b/src/format/spanish/spanish_5000_two_column_alphabetical.tex @@ -18,5 +18,5 @@ \maketitle \tableofcontents \tablehead{\textbf{Spanish (type)} & \textbf{English}\\} -\@input{../build/spanish_5000_two_column_alphabetical.tex} +\@input{../../build/spanish_5000_two_column_alphabetical.tex} \end{document} diff --git a/spanish/format/spanish_5000_two_column_alphabetical_by_rank.tex b/src/format/spanish/spanish_5000_two_column_alphabetical_by_rank.tex similarity index 64% rename from spanish/format/spanish_5000_two_column_alphabetical_by_rank.tex rename to src/format/spanish/spanish_5000_two_column_alphabetical_by_rank.tex index 5cece0b..b60e0a8 100644 --- a/spanish/format/spanish_5000_two_column_alphabetical_by_rank.tex +++ b/src/format/spanish/spanish_5000_two_column_alphabetical_by_rank.tex @@ -19,13 +19,13 @@ \tableofcontents \tablehead{\textbf{Spanish (type)} & \textbf{English}\\} \section{A1} -\@input{../build/spanish_5000_two_column_alphabetical_A1.tex} +\@input{../../build/spanish_5000_two_column_alphabetical_A1.tex} \section{A2} -\@input{../build/spanish_5000_two_column_alphabetical_A2.tex} +\@input{../../build/spanish_5000_two_column_alphabetical_A2.tex} \section{B1} -\@input{../build/spanish_5000_two_column_alphabetical_B1.tex} +\@input{../../build/spanish_5000_two_column_alphabetical_B1.tex} \section{B2} -\@input{../build/spanish_5000_two_column_alphabetical_B2.tex} +\@input{../../build/spanish_5000_two_column_alphabetical_B2.tex} \section{C1} -\@input{../build/spanish_5000_two_column_alphabetical_C1.tex} +\@input{../../build/spanish_5000_two_column_alphabetical_C1.tex} \end{document} diff --git a/spanish/format/spanish_5000_two_column_alphabetical_by_rank_with_example.tex b/src/format/spanish/spanish_5000_two_column_alphabetical_by_rank_with_example.tex similarity index 62% rename from spanish/format/spanish_5000_two_column_alphabetical_by_rank_with_example.tex rename to src/format/spanish/spanish_5000_two_column_alphabetical_by_rank_with_example.tex index d5c10fc..ef31880 100644 --- a/spanish/format/spanish_5000_two_column_alphabetical_by_rank_with_example.tex +++ b/src/format/spanish/spanish_5000_two_column_alphabetical_by_rank_with_example.tex @@ -19,13 +19,13 @@ \tableofcontents \tablehead{\textbf{Spanish (type)} & \textbf{English} & \textbf{example (Spanish)} & \textbf{example (English)}\\} \section{A1} -\@input{../build/spanish_5000_two_column_alphabetical_A1_with_example.tex} +\@input{../../build/spanish_5000_two_column_alphabetical_A1_with_example.tex} \section{A2} -\@input{../build/spanish_5000_two_column_alphabetical_A2_with_example.tex} +\@input{../../build/spanish_5000_two_column_alphabetical_A2_with_example.tex} \section{B1} -\@input{../build/spanish_5000_two_column_alphabetical_B1_with_example.tex} +\@input{../../build/spanish_5000_two_column_alphabetical_B1_with_example.tex} \section{B2} -\@input{../build/spanish_5000_two_column_alphabetical_B2_with_example.tex} +\@input{../../build/spanish_5000_two_column_alphabetical_B2_with_example.tex} \section{C1} -\@input{../build/spanish_5000_two_column_alphabetical_C1_with_example.tex} +\@input{../../build/spanish_5000_two_column_alphabetical_C1_with_example.tex} \end{document} diff --git a/spanish/format/spanish_5000_two_column_shuffle.tex b/src/format/spanish/spanish_5000_two_column_shuffle.tex similarity index 89% rename from spanish/format/spanish_5000_two_column_shuffle.tex rename to src/format/spanish/spanish_5000_two_column_shuffle.tex index 5679c8d..0e67fe5 100644 --- a/spanish/format/spanish_5000_two_column_shuffle.tex +++ b/src/format/spanish/spanish_5000_two_column_shuffle.tex @@ -19,5 +19,5 @@ \maketitle \tableofcontents \tablehead{\textbf{Spanish (type)} & \textbf{English}\\} -\@input{../build/spanish_5000_two_column_shuffle.tex} +\@input{../../build/spanish_5000_two_column_shuffle.tex} \end{document} diff --git a/spanish/format/spanish_5000_two_column_shuffle_by_rank.tex b/src/format/spanish/spanish_5000_two_column_shuffle_by_rank.tex similarity index 65% rename from spanish/format/spanish_5000_two_column_shuffle_by_rank.tex rename to src/format/spanish/spanish_5000_two_column_shuffle_by_rank.tex index 2102887..b0ba5b4 100644 --- a/spanish/format/spanish_5000_two_column_shuffle_by_rank.tex +++ b/src/format/spanish/spanish_5000_two_column_shuffle_by_rank.tex @@ -19,13 +19,13 @@ \tableofcontents \tablehead{\textbf{Spanish (type)} & \textbf{English}\\} \section{A1} -\@input{../build/spanish_5000_two_column_shuffle_A1.tex} +\@input{../../build/spanish_5000_two_column_shuffle_A1.tex} \section{A2} -\@input{../build/spanish_5000_two_column_shuffle_A2.tex} +\@input{../../build/spanish_5000_two_column_shuffle_A2.tex} \section{B1} -\@input{../build/spanish_5000_two_column_shuffle_B1.tex} +\@input{../../build/spanish_5000_two_column_shuffle_B1.tex} \section{B2} -\@input{../build/spanish_5000_two_column_shuffle_B2.tex} +\@input{../../build/spanish_5000_two_column_shuffle_B2.tex} \section{C1} -\@input{../build/spanish_5000_two_column_shuffle_C1.tex} +\@input{../../build/spanish_5000_two_column_shuffle_C1.tex} \end{document} diff --git a/spanish/format/spanish_5000_two_column_shuffle_by_rank_with_example.tex b/src/format/spanish/spanish_5000_two_column_shuffle_by_rank_with_example.tex similarity index 63% rename from spanish/format/spanish_5000_two_column_shuffle_by_rank_with_example.tex rename to src/format/spanish/spanish_5000_two_column_shuffle_by_rank_with_example.tex index 96cba8b..f51532a 100644 --- a/spanish/format/spanish_5000_two_column_shuffle_by_rank_with_example.tex +++ b/src/format/spanish/spanish_5000_two_column_shuffle_by_rank_with_example.tex @@ -19,13 +19,13 @@ \tableofcontents \tablehead{\textbf{Spanish (type)} & \textbf{English} & \textbf{example (Spanish)} & \textbf{example (English)}\\} \section{A1} -\@input{../build/spanish_5000_two_column_shuffle_A1_with_example.tex} +\@input{../../build/spanish_5000_two_column_shuffle_A1_with_example.tex} \section{A2} -\@input{../build/spanish_5000_two_column_shuffle_A2_with_example.tex} +\@input{../../build/spanish_5000_two_column_shuffle_A2_with_example.tex} \section{B1} -\@input{../build/spanish_5000_two_column_shuffle_B1_with_example.tex} +\@input{../../build/spanish_5000_two_column_shuffle_B1_with_example.tex} \section{B2} -\@input{../build/spanish_5000_two_column_shuffle_B2_with_example.tex} +\@input{../../build/spanish_5000_two_column_shuffle_B2_with_example.tex} \section{C1} -\@input{../build/spanish_5000_two_column_shuffle_C1_with_example.tex} +\@input{../../build/spanish_5000_two_column_shuffle_C1_with_example.tex} \end{document} diff --git a/english/format/table.css b/src/format/table.css similarity index 100% rename from english/format/table.css rename to src/format/table.css diff --git a/src/format_english.ipynb b/src/format_english.ipynb new file mode 100644 index 0000000..c0b04c3 --- /dev/null +++ b/src/format_english.ipynb @@ -0,0 +1,1208 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Format 3000,5000,5000 exclusive data to word lists\n", + "format 3000,5000,5000_exclusve in the following formats:\n", + "\n", + "* all data text british: word, type, definition, example, phonetics, cefr\n", + "* all data text usa: word, type, definition, example, phonetics, cefr\n", + "* all data + pronunciation: same as above with clickable HTML\n", + "* 2 column: word, type, definiton\n", + "\n", + "All of the above grouped by cefr" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/tmp/ipykernel_158630/3026406390.py:1: DeprecationWarning: \n", + "Pyarrow will become a required dependency of pandas in the next major release of pandas (pandas 3.0),\n", + "(to allow more performant data types, such as the Arrow string type, and better interoperability with other libraries)\n", + "but was not found to be installed on your system.\n", + "If this would cause problems for you,\n", + "please provide us feedback at https://github.com/pandas-dev/pandas/issues/54466\n", + " \n", + " import pandas as pd\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "import os" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
wordtypecefrphon_brphon_n_amdefinitionexampleukus
0aindefinite articlea1/ə//ə/used before countable or singular nouns referr...a man/horse/unita_uk.mp3a_us.mp3
1abandonverbb2/əˈbændən//əˈbændən/to leave somebody, especially somebody you are...abandon somebody, The baby had been abandoned ...abandon_uk.mp3abandon_us.mp3
2abilitynouna2/əˈbɪləti//əˈbɪləti/the fact that somebody/something is able to do...People with the disease may lose their ability...ability_uk.mp3ability_us.mp3
3ableadjectivea2/ˈeɪbl//ˈeɪbl/to have the skill, intelligence, opportunity, ...You must be able to speak French for this job.able_uk.mp3able_us.mp3
4aboutadverba1/əˈbaʊt//əˈbaʊt/a little more or less than; a little before or...It costs about $10.about_uk.mp3about_us.mp3
\n", + "
" + ], + "text/plain": [ + " word type cefr phon_br phon_n_am \\\n", + "0 a indefinite article a1 /ə/ /ə/ \n", + "1 abandon verb b2 /əˈbændən/ /əˈbændən/ \n", + "2 ability noun a2 /əˈbɪləti/ /əˈbɪləti/ \n", + "3 able adjective a2 /ˈeɪbl/ /ˈeɪbl/ \n", + "4 about adverb a1 /əˈbaʊt/ /əˈbaʊt/ \n", + "\n", + " definition \\\n", + "0 used before countable or singular nouns referr... \n", + "1 to leave somebody, especially somebody you are... \n", + "2 the fact that somebody/something is able to do... \n", + "3 to have the skill, intelligence, opportunity, ... \n", + "4 a little more or less than; a little before or... \n", + "\n", + " example uk \\\n", + "0 a man/horse/unit a_uk.mp3 \n", + "1 abandon somebody, The baby had been abandoned ... abandon_uk.mp3 \n", + "2 People with the disease may lose their ability... ability_uk.mp3 \n", + "3 You must be able to speak French for this job. able_uk.mp3 \n", + "4 It costs about $10. about_uk.mp3 \n", + "\n", + " us \n", + "0 a_us.mp3 \n", + "1 abandon_us.mp3 \n", + "2 ability_us.mp3 \n", + "3 able_us.mp3 \n", + "4 about_us.mp3 " + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "DATASET = 'oxford_3000'\n", + "#DATASET = 'oxford_5000'\n", + "#DATASET = 'oxford_5000_exclusive'\n", + "df = pd.read_pickle(f\"./data/english/{DATASET}.pkl\")\n", + "df.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## HTML+PDF all columns alphabetical" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "from utils.utils import replace_word_in_field_with_underscore\n", + "from utils.dataset import load_data" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/jelle/wd/words/src/utils/english.py:7: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n", + "pagedjs-cli not found. Please select a different --pdf-engine or install pagedjs-cli -- see also /usr/share/doc/pandoc/README.Debian\n" + ] + }, + { + "data": { + "text/plain": [ + "12032" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data = load_data()\n", + "\n", + "style = data.style.format(\n", + " escape=\"html\",\n", + " )\n", + "style = style.hide(axis='index')\n", + "\n", + "html = style.to_html()\n", + "filename = DATASET + '_alphabetical'\n", + "with open(f'output/{filename}.html', 'w') as f:\n", + " f.write(''+html)\n", + "\n", + "cmd = f'pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle=\"{filename}\" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css '\n", + "os.system(cmd)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/jelle/wd/words/src/utils/english.py:7: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n", + "pagedjs-cli not found. Please select a different --pdf-engine or install pagedjs-cli -- see also /usr/share/doc/pandoc/README.Debian\n" + ] + }, + { + "data": { + "text/plain": [ + "12032" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Complete to HTML\n", + "data = load_data()\n", + "data[\"example\"] = data.apply(lambda row: replace_word_in_field_with_underscore(row.word, row.example) , axis=1)\n", + "\n", + "style = data.style.format(\n", + " escape=\"html\",\n", + " )\n", + "style = style.hide(axis='index')\n", + "\n", + "html = style.to_html()\n", + "filename = DATASET + '_underscore_alphabetical'\n", + "with open(f'output/{filename}.html', 'w') as f:\n", + " f.write(''+html)\n", + "\n", + "cmd = f'pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle=\"{filename}\" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css '\n", + "os.system(cmd)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## HTML+PDF all columns grouped by CEFR" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/jelle/wd/words/src/utils/english.py:7: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "_ man/horse/unit\n", + "\n", + "\n", + "\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "pagedjs-cli not found. Please select a different --pdf-engine or install pagedjs-cli -- see also /usr/share/doc/pandoc/README.Debian\n" + ] + }, + { + "data": { + "text/plain": [ + "12032" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data = load_data()\n", + "data[\"example\"] = data.apply(lambda row: replace_word_in_field_with_underscore(row.word, row.example) , axis=1)\n", + "print(data[\"example\"][0])\n", + "cefrs = ['A1', 'A2', 'B1', 'B2', 'C1']\n", + "data_by_cefr = list(map(lambda c : data[data['cefr'] == c], cefrs))\n", + "\n", + "# Complete to HTML\n", + "html_out = ''\n", + "for data in data_by_cefr:\n", + " if data.empty:\n", + " continue\n", + " cefr = data['cefr'].iloc[0]\n", + " html_out += f'

{cefr}

'\n", + " data = data.drop(['cefr'], axis=1)\n", + " print()\n", + " data = data.rename(columns={'word' : f'word ({cefr})'})\n", + "\n", + " style = data.style.format(\n", + " escape=\"html\",\n", + " )\n", + " style = style.hide(axis='index')\n", + " html_out += style.to_html()\n", + "\n", + "\n", + "filename = DATASET+'_underscore_by_cefr'\n", + "with open(f'output/{filename}.html', 'w', encoding='utf-8') as f:\n", + " f.write(html_out)\n", + "\n", + "# to pdf\n", + "cmd = f\"\"\"pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle=\"{filename}\" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css --title '{filename}'\"\"\"\n", + "os.system(cmd)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/jelle/wd/words/src/utils/english.py:7: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "pagedjs-cli not found. Please select a different --pdf-engine or install pagedjs-cli -- see also /usr/share/doc/pandoc/README.Debian\n" + ] + }, + { + "data": { + "text/plain": [ + "12032" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data = load_data()\n", + "cefrs = ['A1', 'A2', 'B1', 'B2', 'C1']\n", + "data_by_cefr = list(map(lambda c : data[data['cefr'] == c], cefrs))\n", + "\n", + "# Complete to HTML\n", + "html_out = ''\n", + "for data in data_by_cefr:\n", + " if data.empty:\n", + " continue\n", + " cefr = data['cefr'].iloc[0]\n", + " html_out += f'

{cefr}

'\n", + " data = data.drop(['cefr'], axis=1)\n", + " print()\n", + " data = data.rename(columns={'word' : f'word ({cefr})'})\n", + "\n", + " style = data.style.format(\n", + " escape=\"html\",\n", + " )\n", + " style = style.hide(axis='index')\n", + " html_out += style.to_html()\n", + "\n", + "\n", + "filename = DATASET+'_by_cefr'\n", + "with open(f'output/{filename}.html', 'w', encoding='utf-8') as f:\n", + " f.write(html_out)\n", + "\n", + "# to pdf\n", + "cmd = f\"\"\"pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle=\"{filename}\" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css --title '{filename}'\"\"\"\n", + "os.system(cmd)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## HTML+PDF all columns grouped by CEFR shuffle" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/jelle/wd/words/src/utils/english.py:7: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/jelle/wd/words/src/utils/english.py:7: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/jelle/wd/words/src/utils/english.py:7: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/jelle/wd/words/src/utils/english.py:7: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "pagedjs-cli not found. Please select a different --pdf-engine or install pagedjs-cli -- see also /usr/share/doc/pandoc/README.Debian\n" + ] + }, + { + "data": { + "text/plain": [ + "12032" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Complete to HTML\n", + "html_out = ''\n", + "for data in data_by_cefr:\n", + " if data.empty:\n", + " continue\n", + " data = load_data()\n", + " cefr = data['cefr'].iloc[0]\n", + " html_out += f'

{cefr}

'\n", + " data = data.drop(['cefr'], axis=1)\n", + " print()\n", + " data = data.rename(columns={'word' : f'word ({cefr})'})\n", + " data = data.sample(frac=1)\n", + "\n", + " style = data.style.format(\n", + " escape=\"html\",\n", + " )\n", + " style = style.hide(axis='index')\n", + " html_out += style.to_html()\n", + "\n", + "\n", + "filename = DATASET+'_by_cefr_shuffle'\n", + "with open(f'output/{filename}.html', 'w', encoding='utf-8') as f:\n", + " f.write(html_out)\n", + "\n", + "# to pdf\n", + "cmd = f\"\"\"pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle=\"{filename}\" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css --title '{filename}'\"\"\"\n", + "os.system(cmd)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/jelle/wd/words/src/utils/english.py:7: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/jelle/wd/words/src/utils/english.py:7: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/jelle/wd/words/src/utils/english.py:7: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/jelle/wd/words/src/utils/english.py:7: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "pagedjs-cli not found. Please select a different --pdf-engine or install pagedjs-cli -- see also /usr/share/doc/pandoc/README.Debian\n" + ] + }, + { + "data": { + "text/plain": [ + "12032" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Complete to HTML\n", + "html_out = ''\n", + "for data in data_by_cefr:\n", + " if data.empty:\n", + " continue\n", + " data = load_data()\n", + " cefr = data['cefr'].iloc[0]\n", + " html_out += f'

{cefr}

'\n", + " data = data.drop(['cefr'], axis=1)\n", + " print()\n", + " data = data.rename(columns={'word' : f'word ({cefr})'})\n", + " data = data.sample(frac=1)\n", + "\n", + " style = data.style.format(\n", + " escape=\"html\",\n", + " )\n", + " style = style.hide(axis='index')\n", + " html_out += style.to_html()\n", + "\n", + "\n", + "filename = DATASET+'_by_cefr_shuffle'\n", + "with open(f'output/{filename}.html', 'w', encoding='utf-8') as f:\n", + " f.write(html_out)\n", + "\n", + "# to pdf\n", + "cmd = f\"\"\"pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle=\"{filename}\" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css --title '{filename}'\"\"\"\n", + "os.system(cmd)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 2 Column LateX word,type and definition alphabetical" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "from utils.utils import FixLatexLine" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/jelle/wd/words/src/utils/english.py:7: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n" + ] + } + ], + "source": [ + "# 2 Column word + definition\n", + "data = load_data()\n", + "data = data[[\"word\", \"definition\"]]\n", + "\n", + "style = data.style.format(\n", + " escape=\"latex\",\n", + " )\n", + "style = style.hide(axis='index')\n", + "style = style.hide(axis='columns')\n", + "\n", + "column_format = 'p{1.2in}p{2.3in}p{1.2in}p{2.3in}'\n", + "fix_latex_line = FixLatexLine(column_format).fix_latex_line\n", + "latex = style.to_latex(\n", + " environment='supertabular',\n", + " column_format=column_format\n", + ")\n", + "\n", + "latex_lines = latex.splitlines()\n", + "latex = '\\n'.join((map(fix_latex_line, latex_lines)))\n", + "\n", + "filename = DATASET + '_table_alphabetical'\n", + "with open(f'./build/{filename}.tex', 'w') as f:\n", + " f.write(latex)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 2 Column LateX word,type and definition by CEFR" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/jelle/wd/words/src/utils/english.py:7: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data['cefr'] = data['cefr'].map(lambda x: x.strip().upper())\n" + ] + } + ], + "source": [ + "data = load_data()\n", + "cefrs = ['A1', 'A2', 'B1', 'B2', 'C1']\n", + "data_by_cefr = list(map(lambda c : data[data['cefr'] == c], cefrs))" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
wordtypecefrphonetics (UK)phonetics (US)definitionexample
2abilitynounA2/əˈbɪləti//əˈbɪləti/the fact that somebody/something is able to do...People with the disease may lose their ability...
3ableadjectiveA2/ˈeɪbl//ˈeɪbl/to have the skill, intelligence, opportunity, ...You must be able to speak French for this job.
8abroadadverbA2/əˈbrɔːd//əˈbrɔːd/in or to a foreign countryto go/travel/live/study abroad
13acceptverbA2/əkˈsept//əkˈsept/to take willingly something that is offered; t...He asked me to marry him and I accepted.
17accidentnounA2/ˈæksɪdənt//ˈæksɪdənt/an unpleasant event, especially in a vehicle, ...a car/road/traffic accident
\n", + "
" + ], + "text/plain": [ + " word type cefr phonetics (UK) phonetics (US) \\\n", + "2 ability noun A2 /əˈbɪləti/ /əˈbɪləti/ \n", + "3 able adjective A2 /ˈeɪbl/ /ˈeɪbl/ \n", + "8 abroad adverb A2 /əˈbrɔːd/ /əˈbrɔːd/ \n", + "13 accept verb A2 /əkˈsept/ /əkˈsept/ \n", + "17 accident noun A2 /ˈæksɪdənt/ /ˈæksɪdənt/ \n", + "\n", + " definition \\\n", + "2 the fact that somebody/something is able to do... \n", + "3 to have the skill, intelligence, opportunity, ... \n", + "8 in or to a foreign country \n", + "13 to take willingly something that is offered; t... \n", + "17 an unpleasant event, especially in a vehicle, ... \n", + "\n", + " example \n", + "2 People with the disease may lose their ability... \n", + "3 You must be able to speak French for this job. \n", + "8 to go/travel/live/study abroad \n", + "13 He asked me to marry him and I accepted. \n", + "17 a car/road/traffic accident " + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_by_cefr[1].head()" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/tmp/ipykernel_158630/1060421477.py:5: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data[\"word\"] = data.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + "/tmp/ipykernel_158630/1060421477.py:5: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data[\"word\"] = data.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + "/tmp/ipykernel_158630/1060421477.py:5: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data[\"word\"] = data.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + "/tmp/ipykernel_158630/1060421477.py:5: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data[\"word\"] = data.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n" + ] + } + ], + "source": [ + "for data, cefr in zip(data_by_cefr, cefrs):\n", + " if data.empty:\n", + " continue\n", + " data = data[[\"word\", \"definition\", \"type\", \"cefr\"]]\n", + " data[\"word\"] = data.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + " data = data[[\"word\", \"definition\"]]\n", + "\n", + " style = data.style.format(\n", + " escape=\"latex\",\n", + " )\n", + " style = style.hide(axis='index')\n", + " style = style.hide(axis='columns')\n", + "\n", + " column_format = 'p{1.2in}p{2.3in}p{1.2in}p{2.3in}'\n", + " latex = style.to_latex(\n", + " environment='supertabular',\n", + " column_format=column_format\n", + " )\n", + "\n", + " latex_lines = latex.splitlines()\n", + "\n", + " latex = '\\n'.join((map(fix_latex_line, latex_lines)))\n", + "\n", + " filename = f'{DATASET}_{cefr}'\n", + " with open(f'build/{filename}.tex', 'w') as f:\n", + " f.write(latex)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 2 Column LateX word,type and definition by CEFR shuffle" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/tmp/ipykernel_158630/3056780930.py:5: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data[\"word\"] = data.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + "/tmp/ipykernel_158630/3056780930.py:5: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data[\"word\"] = data.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + "/tmp/ipykernel_158630/3056780930.py:5: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data[\"word\"] = data.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + "/tmp/ipykernel_158630/3056780930.py:5: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data[\"word\"] = data.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n" + ] + } + ], + "source": [ + "for data, cefr in zip(data_by_cefr, cefrs):\n", + " if data.empty:\n", + " continue\n", + " data = data[[\"word\", \"definition\", \"type\", \"cefr\"]]\n", + " data[\"word\"] = data.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + " data = data[[\"word\", \"definition\"]]\n", + "\n", + " data = data.sample(frac = 1)\n", + "\n", + " style = data.style.format(\n", + " escape=\"latex\",\n", + " )\n", + " style = style.hide(axis='index')\n", + " style = style.hide(axis='columns')\n", + "\n", + " column_format = 'p{1.2in}p{2.3in}p{1.2in}p{2.3in}'\n", + " latex = style.to_latex(\n", + " environment='supertabular',\n", + " column_format=column_format\n", + " )\n", + "\n", + " latex_lines = latex.splitlines()\n", + " latex = '\\n'.join((map(fix_latex_line, latex_lines)))\n", + "\n", + " filename = f'{DATASET}_shuffle_{cefr}'\n", + " with open(f'build/{filename}.tex', 'w') as f:\n", + " f.write(latex)" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Rc files read:\n", + " /etc/LatexMk\n", + "Latexmk: This is Latexmk, John Collins, 4 Apr. 2023. Version 4.80.\n", + "Latexmk: Changing directory to 'format/'\n", + "Latexmk: Undoing directory change\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\n", + "------------\n", + "Latexmk: Could not find file 'oxford_3000*.tex'.\n", + "-- Use the -f option to force complete processing.\n" + ] + }, + { + "data": { + "text/plain": [ + "2816" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Run terminal cd format latexmk oxford*.tex to finish build pdfs\n", + "cmd_build = f\"latexmk -pdf -cd format/{DATASET}*.tex -outdir=../output\" \n", + "os.system(cmd_build)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "rm: cannot remove 'format/*.fls': No such file or directory\n", + "rm: cannot remove 'format/*.log': No such file or directory\n", + "rm: cannot remove 'format/*.html': No such file or directory\n", + "rm: cannot remove 'format/*.toc': No such file or directory\n", + "rm: cannot remove 'format/*.synctex*': No such file or directory\n", + "rm: cannot remove 'format/*.fdb*': No such file or directory\n", + "rm: cannot remove 'format/*.aux': No such file or directory\n", + "rm: cannot remove 'format/*.pdf': No such file or directory\n", + "rm: cannot remove './*.fls': No such file or directory\n", + "rm: cannot remove './*.log': No such file or directory\n", + "rm: cannot remove './*.html': No such file or directory\n", + "rm: cannot remove './*.toc': No such file or directory\n", + "rm: cannot remove './*.synctex*': No such file or directory\n", + "rm: cannot remove './*.fdb*': No such file or directory\n", + "rm: cannot remove './*.aux': No such file or directory\n", + "rm: cannot remove 'output/*.fls': No such file or directory\n", + "rm: cannot remove 'output/*.log': No such file or directory\n", + "rm: cannot remove 'output/*.toc': No such file or directory\n", + "rm: cannot remove 'output/*.synctex*': No such file or directory\n", + "rm: cannot remove 'output/*.fdb*': No such file or directory\n", + "rm: cannot remove 'output/*.aux': No such file or directory\n" + ] + }, + { + "data": { + "text/plain": [ + "256" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Clean any build files in output/\n", + "files_to_remove = [\"*.fls\", \"*.log\", \"*.html\", \"*.toc\", \"*.synctex*\", \"*.fdb*\", \"*.aux\"]\n", + "cmd_cleanup_output = \"rm \"+\" \".join(f\"output/{f}\" for f in files_to_remove)\n", + "cmd_cleanup_format = \"rm \"+\" \".join(f\"format/{f}\" for f in files_to_remove+[\"*.pdf\"])\n", + "cmd_cleanup_main = \"rm \"+\" \".join(f\"./{f}\" for f in files_to_remove)\n", + "os.system(\";\".join((cmd_cleanup_format, cmd_cleanup_main, cmd_cleanup_output)))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3.10.4 ('words')", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.8" + }, + "vscode": { + "interpreter": { + "hash": "18f31073cf804094dd95fd57955d17dd2adebf1ed8efc5124bc1efb23479e449" + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/english/format.py b/src/format_english.py similarity index 61% rename from english/format.py rename to src/format_english.py index 9a83783..0efa199 100644 --- a/english/format.py +++ b/src/format_english.py @@ -9,42 +9,26 @@ # # All of the above grouped by cefr -# %% -import pandas as pd -import os -import re -import sys +import argparse -# %% -DATASET = sys.argv[1] if len(sys.argv) > 1 else 'oxford_3000' -#DATASET = 'oxford_5000' -#DATASET = 'oxford_5000_exclusive' -df = pd.read_pickle(f"./data/{DATASET}.pkl") -df.head() +from utils.dataset import EnglishData +from utils.utils import replace_word_in_field_with_underscore, FixLatexLine + +parser = argparse.ArgumentParser() +parser.add_argument("dataset", default="oxford_3000", choices=["oxford_3000", "oxford_5000", "oxford_5000_exclusive"]) +parser.add_argument("--generate_pdf", action="store_true", default=False) +args = parser.parse_args() + +DATASET = args.dataset +IS_GENERATE_PDF = args.generate_pdf + +load_data = EnglishData(DATASET).load_data # %% [markdown] # ## HTML+PDF all columns alphabetical # %% # Complete to HTML -def replace_word_in_example_with_underscore(word, example): - example_split = example.split(' ') - def _replace(e): - if word not in e: - return e - if not re.match(f"^{word}.*?$", e, re.IGNORECASE): - return e - return e.replace(word, '_') - example_split_replaced = list(map(lambda e: _replace(e), example_split)) - return ' '.join(example_split_replaced) - -def load_data(): - data = df[["word", "type", "cefr", "phon_br", "phon_n_am", "definition", "example"]] - data['cefr'] = data['cefr'].map(lambda x: x.strip().upper()) - data = data.rename(columns={'phon_br' : 'phonetics (UK)'}) - data = data.rename(columns={'phon_n_am' : 'phonetics (US)'}) - return data - data = load_data() style = data.style.format( @@ -61,7 +45,7 @@ def load_data(): # %% # Complete to HTML data = load_data() -data["example"] = data.apply(lambda row: replace_word_in_example_with_underscore(row.word, row.example) , axis=1) +data["example"] = data.apply(lambda row: replace_word_in_field_with_underscore(row.word, row.example) , axis=1) style = data.style.format( escape="html", @@ -74,13 +58,12 @@ def load_data(): f.write(''+html) - # %% [markdown] # ## HTML+PDF all columns grouped by CEFR # %% data = load_data() -data["example"] = data.apply(lambda row: replace_word_in_example_with_underscore(row.word, row.example) , axis=1) +data["example"] = data.apply(lambda row: replace_word_in_field_with_underscore(row.word, row.example) , axis=1) print(data["example"][0]) cefrs = ['A1', 'A2', 'B1', 'B2', 'C1'] data_by_cefr = list(map(lambda c : data[data['cefr'] == c], cefrs)) @@ -135,10 +118,6 @@ def load_data(): with open(f'output/{filename}.html', 'w', encoding='utf-8') as f: f.write(''+html_out) -# to pdf - - - # %% [markdown] # ## HTML+PDF all columns grouped by CEFR shuffle @@ -201,20 +180,6 @@ def load_data(): # %% [markdown] # ## 2 Column LateX word,type and definition alphabetical -# %% -import re -# Fix supertabular and add \textit to type -def fix_latex_line(line): - if re.match(r"^\\begin{supertabular}", line): - # Add column_format to supertabular} - return '\\begin{supertabular}'+'{'+column_format+'}' - if re.match(r"^\\.*{tabular}", line): - # Remove {tabular} - return '' - if re.match(r"^\w+\s.*\(\w+\s?\w+?\)", line): - # Italics - return re.sub(r"(^\w+\s.*)(\(\w+\s?\w+?\))", r"\1\\textit{\2}", line) - return line # %% # 2 Column word + definition @@ -228,6 +193,8 @@ def fix_latex_line(line): style = style.hide(axis='columns') column_format = 'p{1.2in}p{2.3in}p{1.2in}p{2.3in}' +fix_latex_line = FixLatexLine(column_format).fix_latex_line + latex = style.to_latex( environment='supertabular', column_format=column_format @@ -266,6 +233,7 @@ def fix_latex_line(line): style = style.hide(axis='columns') column_format = 'p{1.2in}p{2.3in}p{1.2in}p{2.3in}' + fix_latex_line = FixLatexLine(column_format).fix_latex_line latex = style.to_latex( environment='supertabular', column_format=column_format @@ -299,6 +267,7 @@ def fix_latex_line(line): style = style.hide(axis='columns') column_format = 'p{1.2in}p{2.3in}p{1.2in}p{2.3in}' + fix_latex_line = FixLatexLine(column_format).fix_latex_line latex = style.to_latex( environment='supertabular', column_format=column_format @@ -311,36 +280,35 @@ def fix_latex_line(line): with open(f'build/{filename}.tex', 'w') as f: f.write(latex) -# %% -# pandoc with wkhtml or -# wkhtmltopdf --user-style-sheet format/table.css output/oxford_3000_alphabetical.html output/oxford_3000_alphabetical.pdf - -#filename = DATASET+'_by_cefr_shuffle' -#cmd = f"""pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle="{filename}" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css --pdf-engine-opt=--enable-local-file-access --title '{filename}'""" -#os.system(cmd) -# -#filename = DATASET+'_by_cefr_shuffle' -#cmd = f"""pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle="{filename}" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css --pdf-engine-opt=--enable-local-file-access --title '{filename}'""" -#os.system(cmd) -# -#filename = DATASET+'_by_cefr' -#cmd = f"""pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle="{filename}" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css --pdf-engine-opt=--enable-local-file-access --title '{filename}'""" -#os.system(cmd) -# -#filename = DATASET+'_underscore_by_cefr' -#cmd = f"""pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle="{filename}" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css --pdf-engine-opt=--enable-local-file-access --title '{filename}'""" -#os.system(cmd) -# -#filename = DATASET + '_underscore_alphabetical' -#cmd = f'pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle="{filename}" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css --pdf-engine-opt=--enable-local-file-access' -#os.system(cmd) -# -#filename = DATASET + '_alphabetical' -#cmd = f'pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle="{filename}" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css --pdf-engine-opt=--enable-local-file-access' -#os.system(cmd) -# -# latexmk to convert format tex files. Must be run from format as wd -# -## Run terminal cd format latexmk oxford*.tex to finish build pdfs -#cmd_build = f"latexmk -pdf -cd format/{DATASET}*.tex -outdir=../output" -#os.system(cmd_build) +if IS_GENERATE_PDF: + # pandoc with wkhtml or + # wkhtmltopdf --user-style-sheet format/table.css output/oxford_3000_alphabetical.html output/oxford_3000_alphabetical.pdf + import os + filename = DATASET+'_by_cefr_shuffle' + cmd = f"""pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle="{filename}" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css --title '{filename}'""" + os.system(cmd) + + filename = DATASET+'_by_cefr_shuffle' + cmd = f"""pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle="{filename}" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css --title '{filename}'""" + os.system(cmd) + + filename = DATASET+'_by_cefr' + cmd = f"""pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle="{filename}" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css --title '{filename}'""" + os.system(cmd) + + filename = DATASET+'_underscore_by_cefr' + cmd = f"""pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle="{filename}" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css --title '{filename}'""" + os.system(cmd) + + filename = DATASET + '_underscore_alphabetical' + cmd = f'pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle="{filename}" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css ' + os.system(cmd) + + filename = DATASET + '_alphabetical' + cmd = f'pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle="{filename}" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css ' + os.system(cmd) + + # latexmk to convert format tex files. Must be run from format as wd + # Run terminal cd format latexmk oxford*.tex to finish build pdfs + cmd_build = f"latexmk -pdf -cd format/{DATASET}*.tex -outdir=../output" + os.system(cmd_build) diff --git a/src/format_spanish.ipynb b/src/format_spanish.ipynb new file mode 100644 index 0000000..deeef6b --- /dev/null +++ b/src/format_spanish.ipynb @@ -0,0 +1,1180 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Format Spanish data to word lists\n", + "format Spanish in the following formats:\n", + "\n", + "* all data text spanish: \"word\", \"type\", \"english\", \"frequency_rank\"\n", + "* 2 column: word, type, definiton" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/tmp/ipykernel_167571/561376880.py:1: DeprecationWarning: \n", + "Pyarrow will become a required dependency of pandas in the next major release of pandas (pandas 3.0),\n", + "(to allow more performant data types, such as the Arrow string type, and better interoperability with other libraries)\n", + "but was not found to be installed on your system.\n", + "If this would cause problems for you,\n", + "please provide us feedback at https://github.com/pandas-dev/pandas/issues/54466\n", + " \n", + " import pandas as pd\n" + ] + } + ], + "source": [ + "import pandas as pd\n", + "import os\n", + "import re" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
wordtypeenglishfrequency_rank
0aprepto, at8
0abajoadvdown, below, downward788
0abandonadoadjabandoned2896
0abandonarvto abandon, leave (a place)680
0abandononmabandonment, desertion3463
\n", + "
" + ], + "text/plain": [ + " word type english frequency_rank\n", + "0 a prep to, at 8\n", + "0 abajo adv down, below, downward 788\n", + "0 abandonado adj abandoned 2896\n", + "0 abandonar v to abandon, leave (a place) 680\n", + "0 abandono nm abandonment, desertion 3463" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "DATASET = 'spanish_5000'\n", + "df = pd.read_pickle(f\"./data/spanish/spanish.pkl\")\n", + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
wordtypeenglishfrequency_rankexample_spanishexample_english
0elartthe1el diccionario tenía también frases útilesthe dictionary also had useful phrases
0deprepof, from2es el hijo de un amigo míohe is the son of a friend of mine
0queconjthat, which3dice que no quiere estudiarhe says that he doesn’t want to study
0yconjand4saben leer y escribirthey know how to read and write
0enprepin, on5vivo en el segundo pisoI live on the second floor
\n", + "
" + ], + "text/plain": [ + " word type english frequency_rank \\\n", + "0 el art the 1 \n", + "0 de prep of, from 2 \n", + "0 que conj that, which 3 \n", + "0 y conj and 4 \n", + "0 en prep in, on 5 \n", + "\n", + " example_spanish \\\n", + "0 el diccionario tenía también frases útiles \n", + "0 es el hijo de un amigo mío \n", + "0 dice que no quiere estudiar \n", + "0 saben leer y escribir \n", + "0 vivo en el segundo piso \n", + "\n", + " example_english \n", + "0 the dictionary also had useful phrases \n", + "0 he is the son of a friend of mine \n", + "0 he says that he doesn’t want to study \n", + "0 they know how to read and write \n", + "0 I live on the second floor " + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df2 = pd.read_pickle(f\"./data/spanish/spanish2.pkl\")\n", + "df2.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "# \"word\": word, \"type\": type, \"english\": english, \"frequency_rank\": frequency_rank\n", + "def load_data():\n", + " data = df[[\"word\", \"type\", \"english\", \"frequency_rank\"]]\n", + " #data = data.rename(columns={'english' : 'English'})\n", + " #data = data.rename(columns={'frequency_rank' : 'frequency rank'})\n", + " return data\n", + "\n", + "# \"word\": word, \"type\": type, \"english\": english, \"frequency_rank\": frequency_rank, \"example_spanish\": example_spanish, \"example_english\": example_english\n", + "def load_data2():\n", + " data = df2[[\"word\", \"type\", \"english\", \"example_spanish\", \"example_english\", \"frequency_rank\"]]\n", + " #data = data.rename(columns={'english' : 'English'})\n", + " #data = data.rename(columns={'spanish' : 'Spanish'})\n", + " #data = data.rename(columns={'frequency_rank' : 'frequency rank'})\n", + " return data" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "from utils.dataset import load_data as load_data2" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "from utils.utils import replace_word_in_field_with_underscore as replace_word_in_field_with_underscore" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## HTML+PDF all columns" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "error: unknown option '--enable-local-file-access'\n", + "Error producing PDF.\n", + "\n", + "error: unknown option '--enable-local-file-access'\n", + "Error producing PDF.\n", + "\n" + ] + }, + { + "data": { + "text/plain": [ + "11008" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# HTML, Underscore, Shuffled and Alphabetical\n", + "data = load_data2()\n", + "\n", + "data[\"example_spanish\"] = data.apply(lambda row: replace_word_in_field_with_underscore(row.word, row.example_spanish) , axis=1)\n", + "data = data.drop(['frequency_rank'], axis=1)\n", + "data = data.rename(columns={'example_english' : 'example (English)'})\n", + "data = data.rename(columns={'example_spanish' : 'example (Spanish)'})\n", + "\n", + "data = data.sample(frac=1) # shuffle\n", + "\n", + "style = data.style.format(\n", + " escape=\"html\",\n", + " )\n", + "style = style.hide(axis='index')\n", + "\n", + "html = style.to_html()\n", + "filename = DATASET+'_underscore_shuffled'\n", + "with open(f'output/{filename}.html', 'w') as f:\n", + " f.write(''+html)\n", + "\n", + "cmd = f'pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle=\"{filename}\" -V margin-top=1cm -V margin-bottom=1cm -V margin-left=1cm -V margin-right=1cm -c format/table.css '\n", + "os.system(cmd)\n", + "\n", + "####### Sort Alphabetical\n", + "\n", + "data.sort_values('word') # alphabetical\n", + "filename = DATASET + '_underscore_alphabetical'\n", + "with open(f'output/{filename}.html', 'w') as f:\n", + " f.write(''+html)\n", + "cmd = f'pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle=\"{filename}\" -V margin-top=1cm -V margin-bottom=1cm -V margin-left=1cm -V margin-right=1cm -c format/table.css '\n", + "os.system(cmd)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "error: unknown option '--enable-local-file-access'\n", + "Error producing PDF.\n", + "\n", + "error: unknown option '--enable-local-file-access'\n", + "Error producing PDF.\n", + "\n" + ] + }, + { + "data": { + "text/plain": [ + "11008" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# HTML, Shuffled and Alphabetical, without underscore\n", + "data = load_data2()\n", + "\n", + "# data[\"example_spanish\"] = data.apply(lambda row: replace_word_in_field_with_underscore(row.word, row.example_spanish) , axis=1)\n", + "data = data.drop(['frequency_rank'], axis=1)\n", + "data = data.rename(columns={'example_english' : 'example (English)'})\n", + "data = data.rename(columns={'example_spanish' : 'example (Spanish)'})\n", + "\n", + "data = data.sample(frac=1) # shuffle\n", + "\n", + "style = data.style.format(\n", + " escape=\"html\",\n", + " )\n", + "style = style.hide(axis='index')\n", + "\n", + "html = style.to_html()\n", + "filename = DATASET+'_shuffled'\n", + "with open(f'output/{filename}.html', 'w') as f:\n", + " f.write(''+html)\n", + "\n", + "cmd = f'pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle=\"{filename}\" -V margin-top=1cm -V margin-bottom=1cm -V margin-left=1cm -V margin-right=1cm -c format/table.css '\n", + "os.system(cmd)\n", + "\n", + "####### Sort Alphabetical\n", + "\n", + "data.sort_values('word') # alphabetical\n", + "filename = DATASET + '_alphabetical'\n", + "with open(f'output/{filename}.html', 'w') as f:\n", + " f.write(''+html)\n", + "cmd = f'pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle=\"{filename}\" -V margin-top=1cm -V margin-bottom=1cm -V margin-left=1cm -V margin-right=1cm -c format/table.css '\n", + "os.system(cmd)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## HTML+PDF all columns grouped by CEFR" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "error: unknown option '--enable-local-file-access'\n", + "Error producing PDF.\n", + "\n" + ] + }, + { + "data": { + "text/plain": [ + "11008" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# By Ranking / pseudo-cefr. Shuffled\n", + "data = load_data2()\n", + "data[\"example_spanish\"] = data.apply(lambda row: replace_word_in_field_with_underscore(row.word, row.example_spanish) , axis=1)\n", + "data.head()\n", + "\n", + "data_by_cefr = [\n", + " data.iloc[:1000],\n", + " data.iloc[1000:2000],\n", + " data.iloc[2000:3000],\n", + " data.iloc[3000:4000],\n", + " data.iloc[4000:],\n", + " ]\n", + "\n", + "data_by_cefr[1].head()\n", + "cefrs = ['A1', 'A2', 'B1', 'B2', 'C1']\n", + "\n", + "# Complete to HTML\n", + "html_out = ''\n", + "for i, data_slice in enumerate(data_by_cefr):\n", + " if data_slice.empty:\n", + " continue\n", + " #cefr = data_slice['cefr'].iloc[0]\n", + " cefr = cefrs[i]\n", + " html_out += f'

{cefr}

'\n", + " data_slice = data_slice.drop(['frequency_rank'], axis=1)\n", + " data_slice = data_slice.rename(columns={'word' : f'word ({cefr})'})\n", + " data_slice = data_slice.rename(columns={'example_english' : 'example (English)'})\n", + " data_slice = data_slice.rename(columns={'example_spanish' : 'example (Spanish)'})\n", + "\n", + " data_slice = data_slice.sample(frac=1) # shuffle\n", + "\n", + " style = data_slice.style.format(\n", + " escape=\"html\",\n", + " )\n", + " style = style.hide(axis='index')\n", + " html_out += style.to_html()\n", + "\n", + "filename = DATASET+'_underscore_by_cefr_shuffled'\n", + "with open(f'output/{filename}.html', 'w', encoding='utf-8') as f:\n", + " f.write(html_out)\n", + "\n", + "# to pdf\n", + "cmd = f\"\"\"pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle=\"{filename}\" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css --title '{filename}'\"\"\"\n", + "os.system(cmd)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "error: unknown option '--enable-local-file-access'\n", + "Error producing PDF.\n", + "\n" + ] + }, + { + "data": { + "text/plain": [ + "11008" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# By Ranking / pseudo-cefr. Alphabetical\n", + "data = load_data2()\n", + "data[\"example_spanish\"] = data.apply(lambda row: replace_word_in_field_with_underscore(row.word, row.example_spanish) , axis=1)\n", + "data.head()\n", + "\n", + "data_by_cefr = [\n", + " data.iloc[:1000], #A1\n", + " data.iloc[1000:2000], #A2\n", + " data.iloc[2000:3000], #B1\n", + " data.iloc[3000:4000], #B2\n", + " data.iloc[4000:], #C1\n", + " ]\n", + "\n", + "data_by_cefr[1].head()\n", + "cefrs = ['A1', 'A2', 'B1', 'B2', 'C1']\n", + "\n", + "# Complete to HTML\n", + "html_out = ''\n", + "for i, data_slice in enumerate(data_by_cefr):\n", + " if data_slice.empty:\n", + " continue\n", + " cefr = cefrs[i]\n", + " html_out += f'

{cefr}

'\n", + " data_slice = data_slice.drop(['frequency_rank'], axis=1)\n", + " data_slice = data_slice.sort_values('word')\n", + " data_slice = data_slice.rename(columns={'word' : f'word ({cefr})'})\n", + " data_slice = data_slice.rename(columns={'example_english' : 'example (English)'})\n", + " data_slice = data_slice.rename(columns={'example_spanish' : 'example (Spanish)'})\n", + "\n", + " style = data_slice.style.format(\n", + " escape=\"html\",\n", + " )\n", + " style = style.hide(axis='index')\n", + " html_out += style.to_html()\n", + "\n", + "filename = DATASET+'_underscore_by_cefr_alphabetical'\n", + "with open(f'output/{filename}.html', 'w', encoding='utf-8') as f:\n", + " f.write(html_out)\n", + "\n", + "# to pdf\n", + "cmd = f\"\"\"pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle=\"{filename}\" -V margin-top=2 -V margin-bottom=2 -V margin-left=2 -V margin-right=2 -c format/table.css --title '{filename}'\"\"\"\n", + "os.system(cmd)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 2 Column LateX word, type and definition" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "from utils.utils import FixLatexLine" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Rc files read:\n", + " /etc/LatexMk\n", + "Latexmk: This is Latexmk, John Collins, 4 Apr. 2023. Version 4.80.\n", + "Latexmk: Changing directory to 'format/'\n", + "Latexmk: Undoing directory change\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\n", + "------------\n", + "Latexmk: Could not find file 'spanish_5000_two_column_alphabetical.tex'.\n", + "-- Use the -f option to force complete processing.\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Rc files read:\n", + " /etc/LatexMk\n", + "Latexmk: This is Latexmk, John Collins, 4 Apr. 2023. Version 4.80.\n", + "Latexmk: Changing directory to 'format/'\n", + "Latexmk: Undoing directory change\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\n", + "------------\n", + "Latexmk: Could not find file 'spanish_5000_two_column_shuffle.tex'.\n", + "-- Use the -f option to force complete processing.\n" + ] + }, + { + "data": { + "text/plain": [ + "2816" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# 2 column 5000 not by rank\n", + "# shuffle and alphabetical\n", + "import re\n", + "# Fix supertabular and add \\textit to type\n", + "column_format = 'p{1.2in}p{2.3in}p{1.2in}p{2.3in}'\n", + "fix_latex_line = FixLatexLine(column_format).fix_latex_line\n", + "\n", + "# columns = [\"word\", \"type\", \"english\", \"frequency_rank\"]\n", + "data = load_data2()\n", + "data[\"example_spanish\"] = data.apply(lambda row: replace_word_in_field_with_underscore(row.word, row.example_spanish) , axis=1)\n", + "data[\"word\"] = data.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + "#data = data[[\"word\", \"spanish\", \"english\", \"example_spanish\", \"example_english\"]]\n", + "data = data[[\"word\", \"english\"]]\n", + "\n", + "style = data.style.format(\n", + " escape=\"latex\",\n", + " )\n", + "style = style.hide(axis='index')\n", + "style = style.hide(axis='columns')\n", + "\n", + "\n", + "latex = style.to_latex(\n", + " environment='supertabular',\n", + " column_format=column_format\n", + ")\n", + "\n", + "latex_lines = latex.splitlines()\n", + "\n", + "latex = '\\n'.join((map(fix_latex_line, latex_lines)))\n", + "\n", + "with open(f'build/{DATASET}_two_column_alphabetical.tex', 'w') as f:\n", + " f.write(latex)\n", + "\n", + "cmd_build = f\"latexmk -pdf -cd format/{DATASET}_two_column_alphabetical.tex -outdir=../output\"\n", + "os.system(cmd_build)\n", + "\n", + "#### Same for shuffle\n", + "\n", + "data = data.sample(frac=1) # shuffle\n", + "style = data.style.format(\n", + " escape=\"latex\",\n", + " )\n", + "style = style.hide(axis='index')\n", + "style = style.hide(axis='columns')\n", + "\n", + "latex = style.to_latex(\n", + " environment='supertabular',\n", + " column_format=column_format\n", + ")\n", + "\n", + "latex_lines = latex.splitlines()\n", + "latex = '\\n'.join((map(fix_latex_line, latex_lines)))\n", + "\n", + "with open(f'build/{DATASET}_two_column_shuffle.tex', 'w') as f:\n", + " f.write(latex)\n", + "\n", + "cmd_build = f\"latexmk -pdf -cd format/{DATASET}_two_column_shuffle.tex -outdir=../output\"\n", + "os.system(cmd_build)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/tmp/ipykernel_167571/2484496685.py:19: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + "/tmp/ipykernel_167571/2484496685.py:19: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + "/tmp/ipykernel_167571/2484496685.py:19: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + "/tmp/ipykernel_167571/2484496685.py:19: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + "/tmp/ipykernel_167571/2484496685.py:19: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n" + ] + } + ], + "source": [ + "# two column, cefr by rank\n", + "import re\n", + "\n", + "data = load_data2()\n", + "data_by_cefr = [\n", + " data.iloc[:1000], #A1\n", + " data.iloc[1000:2000], #A2\n", + " data.iloc[2000:3000], #B1\n", + " data.iloc[3000:4000], #B2\n", + " data.iloc[4000:], #C1\n", + " ]\n", + "\n", + "cefrs = ['A1', 'A2', 'B1', 'B2', 'C1']\n", + "for i, data_slice in enumerate(data_by_cefr):\n", + " if data_slice.empty:\n", + " continue\n", + " cefr = cefrs[i]\n", + " data_slice = data_slice[[\"word\", \"english\", \"type\"]]\n", + " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + " data_slice = data_slice[[\"word\", \"english\"]]\n", + "\n", + " #data_slice = data_slice.sort_values('word')\n", + " #data_slice = data_slice.rename(columns={'word' : f'word ({cefr})'})\n", + "\n", + " style = data_slice.style.format(\n", + " escape=\"latex\",\n", + " )\n", + " style = style.hide(axis='index')\n", + " style = style.hide(axis='columns')\n", + "\n", + " latex = style.to_latex(\n", + " environment='supertabular',\n", + " column_format=column_format\n", + " )\n", + "\n", + " latex_lines = latex.splitlines()\n", + "\n", + " latex = '\\n'.join((map(fix_latex_line, latex_lines)))\n", + "\n", + " filename = f'{DATASET}_two_column_shuffle_{cefr}'\n", + " with open(f'build/{filename}.tex', 'w') as f:\n", + " f.write(latex)" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/tmp/ipykernel_167571/1458957607.py:18: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + "/tmp/ipykernel_167571/1458957607.py:18: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + "/tmp/ipykernel_167571/1458957607.py:18: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + "/tmp/ipykernel_167571/1458957607.py:18: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + "/tmp/ipykernel_167571/1458957607.py:18: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n" + ] + } + ], + "source": [ + "\n", + "# two column, cefr by rank\n", + "data = load_data2()\n", + "data[\"example_spanish\"] = data.apply(lambda row: replace_word_in_field_with_underscore(row.word, row.example_spanish) , axis=1)\n", + "data_by_cefr = [\n", + " data.iloc[:1000], #A1\n", + " data.iloc[1000:2000], #A2\n", + " data.iloc[2000:3000], #B1\n", + " data.iloc[3000:4000], #B2\n", + " data.iloc[4000:], #C1\n", + " ]\n", + "\n", + "cefrs = ['A1', 'A2', 'B1', 'B2', 'C1']\n", + "for i, data_slice in enumerate(data_by_cefr):\n", + " if data_slice.empty:\n", + " continue\n", + " cefr = cefrs[i]\n", + " data_slice = data_slice[[\"word\", \"english\", \"type\"]]\n", + " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + " data_slice = data_slice[[\"word\", \"english\"]]\n", + "\n", + " data_slice = data_slice.sort_values('word')\n", + " #data_slice = data_slice.rename(columns={'word' : f'word ({cefr})'})\n", + "\n", + " style = data_slice.style.format(\n", + " escape=\"latex\",\n", + " )\n", + " style = style.hide(axis='index')\n", + " style = style.hide(axis='columns')\n", + "\n", + " latex = style.to_latex(\n", + " environment='supertabular',\n", + " column_format=column_format\n", + " )\n", + "\n", + " latex_lines = latex.splitlines()\n", + "\n", + " latex = '\\n'.join((map(fix_latex_line, latex_lines)))\n", + "\n", + " filename = f'{DATASET}_two_column_alphabetical_{cefr}'\n", + " with open(f'build/{filename}.tex', 'w') as f:\n", + " f.write(latex)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/tmp/ipykernel_167571/1689094638.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + "/tmp/ipykernel_167571/1689094638.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + "/tmp/ipykernel_167571/1689094638.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + "/tmp/ipykernel_167571/1689094638.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + "/tmp/ipykernel_167571/1689094638.py:27: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n" + ] + } + ], + "source": [ + "# 4 column with examples alphabetical\n", + "import re\n", + "# Fix supertabular and add \\textit to type\n", + "#column_format = 'p{1.2in}p{2.3in}p{1.2in}p{2.3in}'\n", + "# 0.787401575 inches margin total\n", + "# A4 width 8.3 inch\n", + "#column_format = 'p{1.0in}p{3.0in}p{3.0in}' # total 8.3in - 0.7874in - column_width\n", + "column_format = 'p{0.8in}p{1.1in}p{2.55in}p{2.55in}' # total 8.3in - 0.7874in - column_width\n", + "fix_latex_line = FixLatexLine(column_format).fix_latex_line\n", + "\n", + "data = load_data2()\n", + "data[\"example_spanish\"] = data.apply(lambda row: replace_word_in_field_with_underscore(row.word, row.example_spanish) , axis=1)\n", + "data_by_cefr = [\n", + " data.iloc[:1000], #A1\n", + " data.iloc[1000:2000], #A2\n", + " data.iloc[2000:3000], #B1\n", + " data.iloc[3000:4000], #B2\n", + " data.iloc[4000:], #C1\n", + " ]\n", + "\n", + "cefrs = ['A1', 'A2', 'B1', 'B2', 'C1']\n", + "for i, data_slice in enumerate(data_by_cefr):\n", + " if data_slice.empty:\n", + " continue\n", + " cefr = cefrs[i]\n", + " data_slice = data_slice[[\"word\", \"english\", \"example_spanish\", \"example_english\", \"type\"]]\n", + " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + " data_slice = data_slice[[\"word\", \"english\", \"example_spanish\", \"example_english\"]]\n", + "\n", + "\n", + " data_slice = data_slice.sort_values('word')\n", + " #data_slice = data_slice.rename(columns={'word' : f'word ({cefr})'})\n", + "\n", + " style = data_slice.style.format(\n", + " escape=\"latex\",\n", + " )\n", + " style = style.hide(axis='index')\n", + " style = style.hide(axis='columns')\n", + "\n", + " latex = style.to_latex(\n", + " environment='supertabular',\n", + " column_format=column_format\n", + " )\n", + "\n", + " latex_lines = latex.splitlines()\n", + "\n", + " latex = '\\n'.join((map(fix_latex_line, latex_lines)))\n", + "\n", + " filename = f'{DATASET}_two_column_alphabetical_{cefr}_with_example'\n", + " with open(f'build/{filename}.tex', 'w') as f:\n", + " f.write(latex)" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/tmp/ipykernel_167571/1649978331.py:28: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + "/tmp/ipykernel_167571/1649978331.py:28: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + "/tmp/ipykernel_167571/1649978331.py:28: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + "/tmp/ipykernel_167571/1649978331.py:28: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + "/tmp/ipykernel_167571/1649978331.py:28: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n" + ] + } + ], + "source": [ + "# 4 column with examples shuffle\n", + "import re\n", + "# Fix supertabular and add \\textit to type\n", + "#column_format = 'p{1.2in}p{2.3in}p{1.2in}p{2.3in}'\n", + "# 0.787401575 inches margin total\n", + "# A4 width 8.3 inch\n", + "#column_format = 'p{1.0in}p{3.0in}p{3.0in}' # total 8.3in - 0.7874in - column_width\n", + "column_format = 'p{0.9in}p{1.0in}p{2.8in}p{2.30in}' # total 8.3in - 0.7874in - column_width\n", + "fix_latex_line = FixLatexLine(column_format).fix_latex_line\n", + "#column_format = 'ccc'\n", + "\n", + "data = load_data2()\n", + "data[\"example_spanish\"] = data.apply(lambda row: replace_word_in_field_with_underscore(row.word, row.example_spanish) , axis=1)\n", + "data_by_cefr = [\n", + " data.iloc[:1000], #A1\n", + " data.iloc[1000:2000], #A2\n", + " data.iloc[2000:3000], #B1\n", + " data.iloc[3000:4000], #B2\n", + " data.iloc[4000:], #C1\n", + " ]\n", + "\n", + "cefrs = ['A1', 'A2', 'B1', 'B2', 'C1']\n", + "for i, data_slice in enumerate(data_by_cefr):\n", + " if data_slice.empty:\n", + " continue\n", + " cefr = cefrs[i]\n", + " data_slice = data_slice[[\"word\", \"english\", \"example_spanish\", \"example_english\", \"type\"]]\n", + " data_slice[\"word\"] = data_slice.apply(lambda row: f\"{row.word.strip()} ({row.type.strip()})\" , axis=1)\n", + " data_slice = data_slice[[\"word\", \"english\", \"example_spanish\", \"example_english\"]]\n", + "\n", + " #data_slice = data_slice.sort_values('word')\n", + " #data_slice = data_slice.rename(columns={'word' : f'word ({cefr})'})\n", + "\n", + " style = data_slice.style.format(\n", + " escape=\"latex\",\n", + " )\n", + " style = style.hide(axis='index')\n", + " style = style.hide(axis='columns')\n", + "\n", + " latex = style.to_latex(\n", + " environment='supertabular',\n", + " column_format=column_format\n", + " )\n", + "\n", + " latex_lines = latex.splitlines()\n", + "\n", + " latex = '\\n'.join((map(fix_latex_line, latex_lines)))\n", + "\n", + " filename = f'{DATASET}_two_column_shuffle_{cefr}_with_example'\n", + " with open(f'build/{filename}.tex', 'w') as f:\n", + " f.write(latex)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## 2 Column LateX word,type and definition by CEFR shuffle" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [], + "source": [ + "# Run terminal cd format latexmk oxford*.tex to finish build pdfs\n", + "cmd_build = f\"latexmk -pdf -cd format/{DATASET}*.tex -outdir=../output\" \n", + "#os.system(cmd_build)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "rm: cannot remove 'format/*.fls': No such file or directory\n", + "rm: cannot remove 'format/*.log': No such file or directory\n", + "rm: cannot remove 'format/*.toc': No such file or directory\n", + "rm: cannot remove 'format/*.synctex*': No such file or directory\n", + "rm: cannot remove 'format/*.fdb*': No such file or directory\n", + "rm: cannot remove 'format/*.aux': No such file or directory\n", + "rm: cannot remove 'format/*.pdf': No such file or directory\n", + "rm: cannot remove './*.fls': No such file or directory\n", + "rm: cannot remove './*.log': No such file or directory\n", + "rm: cannot remove './*.toc': No such file or directory\n", + "rm: cannot remove './*.synctex*': No such file or directory\n", + "rm: cannot remove './*.fdb*': No such file or directory\n", + "rm: cannot remove './*.aux': No such file or directory\n", + "rm: cannot remove 'output/*.fls': No such file or directory\n", + "rm: cannot remove 'output/*.log': No such file or directory\n", + "rm: cannot remove 'output/*.toc': No such file or directory\n", + "rm: cannot remove 'output/*.synctex*': No such file or directory\n", + "rm: cannot remove 'output/*.fdb*': No such file or directory\n", + "rm: cannot remove 'output/*.aux': No such file or directory\n" + ] + }, + { + "data": { + "text/plain": [ + "256" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Clean any build files in output/\n", + "import os\n", + "files_to_remove = [\"*.fls\", \"*.log\", \"*.toc\", \"*.synctex*\", \"*.fdb*\", \"*.aux\"]\n", + "cmd_cleanup_output = \"rm \"+\" \".join(f\"output/{f}\" for f in files_to_remove)\n", + "cmd_cleanup_format = \"rm \"+\" \".join(f\"format/{f}\" for f in files_to_remove+[\"*.pdf\"])\n", + "cmd_cleanup_main = \"rm \"+\" \".join(f\"./{f}\" for f in files_to_remove)\n", + "os.system(\";\".join((cmd_cleanup_format, cmd_cleanup_main, cmd_cleanup_output)))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3.10.4 ('words')", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.8" + }, + "vscode": { + "interpreter": { + "hash": "18f31073cf804094dd95fd57955d17dd2adebf1ed8efc5124bc1efb23479e449" + } + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/spanish/format.py b/src/format_spanish.py similarity index 70% rename from spanish/format.py rename to src/format_spanish.py index 487beab..7a7ea99 100644 --- a/spanish/format.py +++ b/src/format_spanish.py @@ -1,43 +1,22 @@ -# %% -import os -import sys -import re +import argparse -import pandas as pd +from utils.dataset import SpanishData +from utils.utils import replace_word_in_field_with_underscore, FixLatexLine -# %% -DATASET = 'spanish_3000' -DATASET = sys.argv[1] if len(sys.argv) > 1 else 'spanish_5000' +parser = argparse.ArgumentParser() +parser.add_argument("dataset", default="spanish_3000", choices=["spanish_3000", "spanish_5000"]) +parser.add_argument("--generate_pdf", action="store_true", default=False) +args = parser.parse_args() -# %% -df2 = pd.read_pickle(f"./data/spanish2.pkl") -df2.head() +DATASET = args.dataset +IS_GENERATE_PDF = args.generate_pdf -# %% -# "word": word, "type": type, "english": english, "frequency_rank": frequency_rank, "example_spanish": example_spanish, "example_english": example_english -def load_data2(): - data = df2[["word", "type", "english", "example_spanish", "example_english", "frequency_rank"]] - if DATASET == 'spanish_3000': - data = data.iloc[:3000] # A1, A2, B1 - elif DATASET == 'spanish_5000_exclusive': - data = data.iloc[3000:] # B2, C1 - return data - -# Replace given word in field with '_' -def replace_word_in_field_with_underscore(word, field): - field_split = field.split(' ') - def _replace(e): - if word not in e: - return e - if not re.match(f"^{word}.*?$", e, re.IGNORECASE): - return e - return e.replace(word, '_') - field_split_replaced = list(map(lambda e: _replace(e), field_split)) - return ' '.join(field_split_replaced) +load_data = SpanishData(DATASET).load_data +cefrs_data_by_dataset = SpanishData(DATASET).cefrs_data_by_dataset # HTML, Underscore, Shuffled and Alphabetical def format_html_all_columns(is_shuffle=True, is_alphabetical=False, with_underscore=True): - data = load_data2() + data = load_data() if with_underscore: data["example_spanish"] = data.apply(lambda row: replace_word_in_field_with_underscore(row.word, row.example_spanish) , axis=1) assert is_alphabetical != is_shuffle @@ -78,41 +57,12 @@ def format_html_all_columns(is_shuffle=True, is_alphabetical=False, with_undersc f.write(''+html) filenames = [DATASET+'_alphabetical', DATASET+'_shuffled', DATASET+'_underscore_shuffled', DATASET + '_underscore_alphabetical'] -#for filename in filenames: -# cmd = f'pandoc -f html -t pdf output/{filename}.html -t html5 -o output/{filename}.pdf --metadata pagetitle="{filename}" -V margin-top=1cm -V margin-bottom=1cm -V margin-left=1cm -V margin-right=1cm -c format/table.css --pdf-engine-opt=--enable-local-file-access' -# os.system(cmd) # ## HTML+PDF all columns grouped by CEFR -# By Ranking / pseudo-cefr. Shuffled -def cefrs_data_by_dataset(data): - if DATASET=='oxford_3000': - cefrs = ['A1', 'A2', 'B1'] - data_by_cefr = [ - data.iloc[:1000], - data.iloc[1000:2000], - data.iloc[2000:], - ] - elif DATASET=='oxford_5000_exclusive': - cefrs = ['B2', 'C1'] - data_by_cefr = [ - data.iloc[:1000], - data.iloc[1000:], - ] - else: - cefrs = ['A1', 'A2', 'B1', 'B2', 'C1'] - data_by_cefr = [ - data.iloc[:1000], - data.iloc[1000:2000], - data.iloc[2000:3000], - data.iloc[3000:4000], - data.iloc[4000:], - ] - return cefrs, data_by_cefr - # Complete to HTML def format_html_columns_by_cefr(is_shuffle=True, is_alphabetical=False, with_underscore=True): - data = load_data2() + data = load_data() if with_underscore: data["example_spanish"] = data.apply(lambda row: replace_word_in_field_with_underscore(row.word, row.example_spanish) , axis=1) data.head() @@ -120,7 +70,6 @@ def format_html_columns_by_cefr(is_shuffle=True, is_alphabetical=False, with_und cefrs, data_by_cefr = cefrs_data_by_dataset(data) data_by_cefr[1].head() - cefrs = ['A1', 'A2', 'B1', 'B2', 'C1'] html_out = '' for i, data_slice in enumerate(data_by_cefr): @@ -162,21 +111,11 @@ def format_html_columns_by_cefr(is_shuffle=True, is_alphabetical=False, with_und # shuffle and alphabetical # Fix supertabular and add \textit to type column_format = 'p{1.2in}p{2.3in}p{1.2in}p{2.3in}' -def fix_latex_line(line): - if re.match(r"^\\begin{supertabular}", line): - # Add column_format to supertabular} - return '\\begin{supertabular}'+'{'+column_format+'}' - if re.match(r"^\\.*{tabular}", line): - # Remove {tabular} - return '' - if re.match(r"^\w+\s.*\(\w+\s?\w+?\)", line): - # Italics - return re.sub(r"(^\w+\s.*)(\(\w+\s?\w+?\))", r"\1\\textit{\2}", line) - return line +fix_latex_line = FixLatexLine(column_format).fix_latex_line def format_latex_columns(is_alphabetical=False, is_shuffle=True): # columns = ["word", "type", "english", "frequency_rank"] - data = load_data2() + data = load_data() data["example_spanish"] = data.apply(lambda row: replace_word_in_field_with_underscore(row.word, row.example_spanish) , axis=1) if is_shuffle: data = data.sample(frac=1) # shuffle @@ -213,20 +152,10 @@ def format_latex_columns(is_alphabetical=False, is_shuffle=True): # two column, cefr by rank # Fix supertabular and add \textit to type column_format = 'p{1.2in}p{2.3in}p{1.2in}p{2.3in}' -def fix_latex_line(line): - if re.match(r"^\\begin{supertabular}", line): - # Add column_format to supertabular} - return '\\begin{supertabular}'+'{'+column_format+'}' - if re.match(r"^\\.*{tabular}", line): - # Remove {tabular} - return '' - if re.match(r"^\w+\s.*\(\w+\s?\w+?\)", line): - # Italics - return re.sub(r"(^\w+\s.*)(\(\w+\s?\w+?\))", r"\1\\textit{\2}", line) - return line +fix_latex_line = FixLatexLine(column_format).fix_latex_line def format_latex_columns_by_cefr(is_alphabetical=True, is_shuffle=False): - data = load_data2() + data = load_data() cefrs, data_by_cefr = cefrs_data_by_dataset(data) @@ -276,20 +205,10 @@ def format_latex_columns_by_cefr(is_alphabetical=True, is_shuffle=False): #column_format = 'p{1.0in}p{3.0in}p{3.0in}' # total 8.3in - 0.7874in - column_width #column_format = 'p{0.8in}p{1.1in}p{2.55in}p{2.55in}' # total 8.3in - 0.7874in - column_width column_format = 'p{0.9in}p{1.0in}p{2.8in}p{2.30in}' # total 8.3in - 0.7874in - column_width -def fix_latex_line(line): - if re.match(r"^\\begin{supertabular}", line): - # Add column_format to supertabular} - return '\\begin{supertabular}'+'{'+column_format+'}' - if re.match(r"^\\.*{tabular}", line): - # Remove {tabular} - return '' - if re.match(r"^\w+\s.*\(\w+\s?\w+?\)", line): - # Italics - return re.sub(r"(^\w+\s.*)(\(\w+\s?\w+?\))", r"\1\\textit{\2}", line) - return line +fix_latex_line = FixLatexLine(column_format).fix_latex_line def format_latex_columns_by_cefr_with_example(is_alphabetical=True, is_shuffle=False): - data = load_data2() + data = load_data() data["example_spanish"] = data.apply(lambda row: replace_word_in_field_with_underscore(row.word, row.example_spanish) , axis=1) cefrs, data_by_cefr = cefrs_data_by_dataset(data) diff --git a/english/scrape.ipynb b/src/scrape_english.ipynb similarity index 100% rename from english/scrape.ipynb rename to src/scrape_english.ipynb diff --git a/spanish/scrape.ipynb b/src/scrape_spanish.ipynb similarity index 100% rename from spanish/scrape.ipynb rename to src/scrape_spanish.ipynb diff --git a/src/utils/dataset.py b/src/utils/dataset.py new file mode 100644 index 0000000..33ba37d --- /dev/null +++ b/src/utils/dataset.py @@ -0,0 +1,59 @@ +import pandas as pd + +class EnglishData: + def __init__(self, dataset: str): + self.dataset = dataset + + def load_data(self): + dataset = self.dataset + df = pd.read_pickle(f"./data/english/{dataset}.pkl") + df.head() + data = df[["word", "type", "cefr", "phon_br", "phon_n_am", "definition", "example"]] + data['cefr'] = data['cefr'].map(lambda x: x.strip().upper()) + data = data.rename(columns={'phon_br' : 'phonetics (UK)'}) + data = data.rename(columns={'phon_n_am' : 'phonetics (US)'}) + return data + +class SpanishData: + def __init__(self, dataset: str): + self.dataset = dataset + + # "word": word, "type": type, "english": english, "frequency_rank": frequency_rank, "example_spanish": example_spanish, "example_english": example_english + def load_data(self): + dataset = self.dataset + df2 = pd.read_pickle(f"./data/spanish/spanish2.pkl") + data = df2[["word", "type", "english", "example_spanish", "example_english", "frequency_rank"]] + if dataset == 'spanish_3000': + data = data.iloc[:3000] # A1, A2, B1 + elif dataset == 'spanish_5000_exclusive': + data = data.iloc[3000:] # B2, C1 + return data + + # By Ranking / pseudo-cefr. Shuffled + def cefrs_data_by_dataset(self, data): + DATASET = self.dataset + if DATASET=='spanish_3000': + cefrs = ['A1', 'A2', 'B1'] + data_by_cefr = [ + data.iloc[:1000], + data.iloc[1000:2000], + data.iloc[2000:], + ] + elif DATASET=='spanish_5000_exclusive': + cefrs = ['B2', 'C1'] + data_by_cefr = [ + data.iloc[:1000], + data.iloc[1000:], + ] + else: + cefrs = ['A1', 'A2', 'B1', 'B2', 'C1'] + data_by_cefr = [ + data.iloc[:1000], + data.iloc[1000:2000], + data.iloc[2000:3000], + data.iloc[3000:4000], + data.iloc[4000:], + ] + return cefrs, data_by_cefr + + # Complete to HTML \ No newline at end of file diff --git a/src/utils/utils.py b/src/utils/utils.py new file mode 100644 index 0000000..c830552 --- /dev/null +++ b/src/utils/utils.py @@ -0,0 +1,30 @@ +import re + +# Replaces given word in field with '_' +def replace_word_in_field_with_underscore(word: str, example): + example_split = example.split(' ') + def _replace(e): + if word not in e: + return e + if not re.match(f"^{word}.*?$", e, re.IGNORECASE): + return e + return e.replace(word, '_') + example_split_replaced = list(map(lambda e: _replace(e), example_split)) + return ' '.join(example_split_replaced) + +# Fix supertabular and add \textit to type +class FixLatexLine: + def __init__(self, column_format): + self.column_format = column_format + + def fix_latex_line(self, line): + if re.match(r"^\\begin{supertabular}", line): + # Add column_format to supertabular} + return '\\begin{supertabular}'+'{'+self.column_format+'}' + if re.match(r"^\\.*{tabular}", line): + # Remove {tabular} + return '' + if re.match(r"^\w+\s.*\(\w+\s?\w+?\)", line): + # Italics + return re.sub(r"(^\w+\s.*)(\(\w+\s?\w+?\))", r"\1\\textit{\2}", line) + return line