---
- name: Install latex packages (Archlinux)
  become: true
  pacman:
    name:
      - texlive-most
      - texlive-lang
      - biber
  when: ansible_facts['distribution'] == 'Archlinux'

- name: Install latex packages (Debian)
  become: true
  apt:
    name:
      - texlive-full
  when: ansible_facts['distribution'] == 'Debian'

- name: Copy latexmkrc
  copy:
    src: latexmkrc
    dest: ~/.latexmkrc