Overview
Comment:enable PDF generation
Timelines: family | ancestors | descendants | both | revise-for-2023
Files: files | file ages | folders
SHA3-256: 8932f7405436c22fa1b0b0112c97a9fc73344018988cd221f4bc65d68d5aa8c2
User & Date: jboy on 2023-04-14 10:18:40
Other Links: branch diff | manifest | tags
Context
2023-04-20
09:52
announce guest speaker for week 4 check-in: 5763c506e9 user: jboy tags: revise-for-2023
2023-04-14
10:18
enable PDF generation check-in: 8932f74054 user: jboy tags: revise-for-2023
10:18
change the way the bibliography is generated check-in: 787d6651d3 user: jboy tags: revise-for-2023
Changes

Modified mkdocs.yml from [40c934c0cd] to [75a219c649].

1
2
3

4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

19
20
21
22
23
24




site_name: Ethics in Contemporary Ethnographic Research
site_url: ""
use_directory_urls: false

nav:
  - Home: 'index.md'
  - Weeks:
    - 'weeks/1.md'
    - 'weeks/2.md'
    - 'weeks/3.md'
    - 'weeks/4.md'
    - 'weeks/5.md'
    - 'weeks/6.md'
  - Assignments:
    - 'assignments/1.md'
    - 'assignments/2.md'
    - 'assignments/3.md'
  - Bibliography: 'bib.md'
  - FAQ: 'faq.md'

markdown_extensions:
  - smarty
  - def_list

plugins:
  - search







>


|












>






>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
site_name: Ethics in Contemporary Ethnographic Research
site_url: ""
use_directory_urls: false

nav:
  - Home: 'index.md'
  - Units:
    - 'weeks/1.md'
    - 'weeks/2.md'
    - 'weeks/3.md'
    - 'weeks/4.md'
    - 'weeks/5.md'
    - 'weeks/6.md'
  - Assignments:
    - 'assignments/1.md'
    - 'assignments/2.md'
    - 'assignments/3.md'
  - Bibliography: 'bib.md'
  - FAQ: 'faq.md'

markdown_extensions:
  - smarty
  - def_list

plugins:
  - search
  - with-pdf:
      cover_subtitle: "Spring 2023"
      toc_level: 1
      ordered_chapter_level: 1

Deleted refs.md version [a8deb1cb7b].

1
2
3
4
5
---
nocite: '@*'
---

# References
<
<
<
<
<










Modified shell.nix from [d47e05571e] to [0c2df29181].

1
2
3
4
5
6
7

8



9
with import <nixpkgs> {};
stdenv.mkDerivation rec {
  name = "env";
  env = buildEnv { name = name; paths = buildInputs; };
  buildInputs = [
    haskellPackages.pandoc
    mkdocs

  ];



}

|
|
<
|

|
>

>
>
>

1
2
3

4
5
6
7
8
9
10
11
12
with import <nixpkgs> {};
mkShell {
  venvDir = ".venv";

  buildInputs = with python3.pkgs; [
    haskellPackages.pandoc
    weasyprint
    venvShellHook
  ];
  postShellHook = ''
    pip install mkdocs-with-pdf
  '';
}