summaryrefslogtreecommitdiff
path: root/0470/old/r0470coreold.lyx
blob: 7f0aab693721a609e2afd8d240454050b02a65ce (plain) (blame)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
#LyX 2.3 created this file. For more info see http://www.lyx.org/
\lyxformat 544
\begin_document
\begin_header
\save_transient_properties true
\origin unavailable
\textclass scrartcl
\begin_preamble
\usepackage{hyperref}
\hypersetup{unicode=true,
	bookmarks=true,
	bookmarksnumbered=true,
	bookmarksopen=true,
	bookmarksopenlevel=2,
	breaklinks=true,
%	pdfborder={0 0 1},
	backref=false,
	colorlinks=true,
	allcolors=black,
	pdftitle={IGCSE History Core Content Revision},
	pdfauthor={Cynthia Jia, Katharina Mueller, Runxi Yu},
	pdfsubject={For examinations in 2024, 2025, and 2026}
}

\usepackage{enumitem}
\setlist[itemize]{
	wide=0pt,
	itemsep=0ex,
	leftmargin=1.2em,
	align=right,
	labelwidth=0.8em,
	labelsep=0.4em,
	topsep=0ex,
	itemsep=0ex,
	parsep=0.4ex,
}
\setlist[enumerate]{
	wide=0pt,
	itemsep=0ex,
	leftmargin=1.2em,
	align=right,
	labelwidth=0.8em,
	labelsep=0.4em,
	topsep=0ex,
	itemsep=0ex,
	parsep=0.4ex,
}


\usepackage{fontspec}
\usepackage{unicode-math}
\setmainfont{TeX Gyre Schola}
% \setsansfont{TeX Gyre Heros}
\setsansfont{Cantarell}
\setmonofont{Logix Mono}
\setmathfont{TeX Gyre Schola Math}
\renewcommand{\familydefault}{\sfdefault}
\usepackage{microtype}

\usepackage{geometry}
\geometry{
	a4paper,
	top=0.8cm,
	bottom=1cm,
	left=1cm,
	right=1cm,
	includehead
}

\usepackage[markcase=upper, headsepline]{scrlayer-scrpage}
\setlength{\columnsep}{0.8cm}
\setlength{\columnseprule}{0.4pt}
\lehead[]{\small Page~\normalsize\pagemark}
\cehead[]{IGCSE History Core Content Revision}
\rehead[]{\rightmark}
\lohead[]{\leftmark}
\cohead[]{IGCSE History Core Content Revision}
\rohead[]{\small Page~\normalsize\pagemark}
\lefoot[]{}
\cefoot[]{}
\refoot[]{}
\lofoot[]{}
\cofoot[]{}
\rofoot[]{}
\setkomafont{pageheadfoot}{\normalfont\normalsize}
\setkomafont{pagenumber}{\normalfont\normalsize}
% \renewcommand{\sectionmark}[1]{%
% 	\markboth%
% 		{{#1}\quad{}\small(Topic\ \thesection)}%
% 		{{#1}\quad{}\small(Topic\ \thesection)}%
% }
\renewcommand{\sectionmark}[1]{%
	\markboth%
		{{#1}}%
		{{#1}}%
}
\end_preamble
\options parskip=half-,twocolumn,twoside,9pt
\use_default_options true
\begin_modules
multicol
\end_modules
\maintain_unincluded_children false
\language english
\language_package auto
\inputencoding utf8
\fontencoding global
\font_roman "default" "default"
\font_sans "default" "default"
\font_typewriter "default" "default"
\font_math "auto" "auto"
\font_default_family default
\use_non_tex_fonts false
\font_sc false
\font_osf false
\font_sf_scale 100 100
\font_tt_scale 100 100
\use_microtype false
\use_dash_ligatures true
\graphics default
\default_output_format pdf5
\output_sync 0
\bibtex_command default
\index_command default
\paperfontsize default
\spacing single
\use_hyperref false
\pdf_title "IGCSE History Core Content Revision"
\pdf_author "Cynthia Jia, Katharina Mueller, and Runxi Yu"
\pdf_subject "For examinations in 2024, 2025, and 2026"
\pdf_bookmarks true
\pdf_bookmarksnumbered true
\pdf_bookmarksopen true
\pdf_bookmarksopenlevel 2
\pdf_breaklinks true
\pdf_pdfborder false
\pdf_colorlinks false
\pdf_backref false
\pdf_pdfusetitle true
\papersize default
\use_geometry false
\use_package amsmath 1
\use_package amssymb 1
\use_package cancel 1
\use_package esint 1
\use_package mathdots 1
\use_package mathtools 1
\use_package mhchem 1
\use_package stackrel 1
\use_package stmaryrd 1
\use_package undertilde 1
\cite_engine basic
\cite_engine_type default
\biblio_style plain
\use_bibtopic false
\use_indices false
\paperorientation portrait
\suppress_date false
\justification true
\use_refstyle 1
\use_minted 0
\index Index
\shortcut idx
\color #008000
\end_index
\secnumdepth 1
\tocdepth 2
\paragraph_separation indent
\paragraph_indentation default
\is_math_indent 0
\math_numbering_side default
\quotes_style english
\dynamic_quotes 0
\papercolumns 1
\papersides 1
\paperpagestyle default
\tracking_changes false
\output_changes false
\html_math_output 0
\html_css_as_file 0
\html_be_strict false
\end_header

\begin_body

\begin_layout Subject
IGCSE History
\end_layout

\begin_layout Title
Revision Sheets
\end_layout

\begin_layout Author
Option B
\begin_inset Newline newline
\end_inset

The twentieth century
\begin_inset Newline newline
\end_inset

International relations from 1919
\end_layout

\begin_layout Date
For Examinations in 2024, 2025, and 2026
\end_layout

\begin_layout Standard
\begin_inset CommandInset toc
LatexCommand tableofcontents

\end_inset


\end_layout

\begin_layout Standard
\begin_inset Newpage newpage
\end_inset


\end_layout

\begin_layout Part
The Inter-war Years, 1919–39
\end_layout

\begin_layout Section
Was the Treaty of Versailles fair?
\end_layout

\begin_layout Subsection
What were the motives and aims of the Big Three at Versailles?
\end_layout

\begin_layout Itemize
Wilson / USA:
\end_layout

\begin_deeper
\begin_layout Itemize
The US did not suffer much during the war: 150,000 total deaths, 2 billion
 pounds.
 Became the world's richest economy by selling military equipment, etc.
 It is also far away from Europe with the Atlantic as a barriar.
\end_layout

\begin_layout Itemize
Wilson and the general public thus generally focusd on preventing further
 wars and thus want to cause minimal resentment in Germany, rather than
 receiving reparations and such.
\end_layout

\begin_layout Itemize
Wanted democracy and self-determination in all regions including colonies.
 This clashes with Lloyd George's aims of strengthening the British empire.
\end_layout

\begin_layout Itemize
Fourteen points: Self-determination for countries and present colonies;
 no secret treaties, transparency; free access to the seas; free trade;
 disarmament; border adjustments.
\end_layout

\end_deeper
\begin_layout Itemize
Lloyd George / Britain:
\end_layout

\begin_deeper
\begin_layout Itemize
1 million deaths, 8 billion pounds.
\end_layout

\begin_layout Itemize
Not in immediate threat from Germany because of the English Channel.
\end_layout

\begin_layout Itemize
Would love to maintain its naval supremacy, and would love for Germany to
 lose all its colonies for colonial supremacy.
 This clashes with Wilson's self-determination.
\end_layout

\end_deeper
\begin_layout Itemize
Clemenceau / France:
\end_layout

\begin_deeper
\begin_layout Itemize
1.4 million deaths, 5 billion pounds.
 Large areas of land and industry destroyed.
 Decreasing population.
\end_layout

\begin_layout Itemize
Has a weak land border with Germany.
\end_layout

\end_deeper
\begin_layout Subsection
Why did the victors not get everything they wanted?
\end_layout

\begin_layout Standard
\begin_inset Note Note
status open

\begin_layout Plain Layout
The roles of Wilson, Clemenceau and Lloyd George in the peacemaking process
\end_layout

\end_inset


\end_layout

\begin_layout Subsection
What was the impact of the Treaty on Germany up to the end of 1923?
\end_layout

\begin_layout Standard
\begin_inset Note Note
status open

\begin_layout Plain Layout
The terms of the Treaty
\end_layout

\end_inset


\end_layout

\begin_layout Subsection
Could the Treaty be justified at the time?
\end_layout

\begin_layout Standard
\begin_inset Note Note
status open

\begin_layout Plain Layout
Also include: contemporary opinions
\end_layout

\end_inset


\end_layout

\begin_layout Section
To what extent was the League of Nations a success?
\end_layout

\begin_layout Subsection
How far did weaknesses in the League’s organisation and membership make
 failure inevitable?
\end_layout

\begin_layout Subsubsection
The League's Structure
\end_layout

\begin_layout Itemize
Covenant of the LoN had 26 articles that its members agreed to basically
 says: Discourage 
\series bold
aggression
\series default
; encourage 
\series bold
economic corporation
\series default
; encourage 
\series bold
disarmament
\series default
; improve 
\series bold
living and working conditions
\series default
 globally; 
\series bold
collective security
\series default
.
\end_layout

\begin_layout Itemize

\series bold
Assembly:
\series default
 Parliament with all member states, makes 
\series bold
recommendations
\series default
 to the council and member states, meets yearly, could 
\series bold
unanimously
\series default
 vote and decide on: admitting new members to the LoN, appointing new members
 to the Council, and the budget of the LoN
\end_layout

\begin_layout Itemize

\series bold
Council: 
\series default
Smaller group that meets 4/year or more in emergencies; settles international
 disputes.
 Permanent members: Britain, France, Japan, Italy (1920–), Germany (1926–),
 who have vetos; temporary members: 4–9 countries elected by Assembly every
 2–3 years; may administer economic sanctions or muster an international
 force if agreed – note that these actions are still carried out by member
 states and are often against individual state interests
\end_layout

\begin_layout Itemize

\series bold
Permanent Court of Justice:
\series default
 Advises members on legal issues; make judgements on issues between LoN
 members; interprets international treaties, intervenes in matters of internatio
nal law; 
\series bold
unable to enforce its decisions as the league has no military
\series default
 
\end_layout

\begin_layout Itemize
Mandates Commissions: makes sure that former German and AH colonies run
 smoothly; took charge of minority regions within other states created by
 the treaties; made sure that countries such as France and Britain acted
 in the interests of the people of the mandated territory rather than their
 own – not very effective though as the LoN is mainly under French and British
 control 
\end_layout

\begin_layout Itemize
Danzig: The port is administered by an autonomous organization composed
 equally of Polish and Danzig members, with a chairman appointed by the
 Council of the League of Nations.
 Exercised direct League control over the former German city.
 
\end_layout

\begin_layout Itemize
Saar: Officials appointed by the Council of the League; the members were
 to hold office for one year, although subject to removal at any time by
 the Council.
 The members are a mix of French citizen, native inhabitant, and three countries
 other than France or German.
 
\end_layout

\begin_layout Itemize
Disarmament: The Disarmament Section was responsible, under the Treaty of
 Versailles, for the control of armaments in different countries, war production
 and sales of war materials.
 But...
 
\end_layout

\begin_deeper
\begin_layout Itemize
USSR and Germany are not in the League 
\end_layout

\begin_layout Itemize
Britain need to protect the colonials overseas 
\end_layout

\begin_layout Itemize
European countries do not like to see communism in USSR.
 Need a country armed as USSR to be against USSR 
\end_layout

\begin_layout Itemize
Article Nine only states the circumstances of the disarmament instead of
 including any actions 
\end_layout

\end_deeper
\begin_layout Subsubsection
Why did some major powers not join?
\end_layout

\begin_layout Itemize
USA 
\end_layout

\begin_deeper
\begin_layout Itemize
A majority in the Senate thought that the League would drag their countries
 into future wars and disputes 
\end_layout

\begin_layout Itemize
American absence defanged the League, making it unable to effectively enforce
 its decisions 
\end_layout

\begin_deeper
\begin_layout Itemize
No military presence – cannot create a formidable standing army, and so
 none was established; caused the League to be ignored in disputes, e.g.
 Corfu/Ruhe/Memel 
\end_layout

\begin_layout Itemize
No economic sanctions – any nation that the League placed sanctions on remained
 free to trade with the United States, which was the world’s largest economy;
 causes the League to be neglected, e.g.
 Italy at Abyssinia 
\end_layout

\end_deeper
\end_deeper
\begin_layout Itemize
USSR 
\end_layout

\begin_deeper
\begin_layout Itemize
Radical policies of the new government—communist country and committed to
 overthrow the capitalism 
\end_layout

\begin_layout Itemize
Russians themselves do not want to join the League because a number of the
 LoN assisted the counter-revolution during the Russian Civil War 
\end_layout

\begin_layout Itemize
In the League from 1934–1939 (and expelled for the invasion of Finland)
 
\end_layout

\end_deeper
\begin_layout Itemize
Germany 
\end_layout

\begin_deeper
\begin_layout Itemize
Aggressor in WWI 
\end_layout

\begin_layout Itemize
Banned until 1926 
\end_layout

\begin_layout Itemize
Hitler's foreign policy took it out in 1933 
\end_layout

\end_deeper
\begin_layout Itemize
Japan left in 1933 because of Manchuria 
\end_layout

\begin_layout Itemize
Italy left in 1937 because of Abyssinia
\end_layout

\begin_layout Subsubsection
What were the interests of the British and the French in the League?
\end_layout

\begin_layout Itemize
Greatly weakened by WWI 
\end_layout

\begin_layout Itemize
No resources to fill USA's gap 
\end_layout

\begin_layout Itemize
Britain was determined to maintain peace and encourage economic recovery
 after the war.
 British politicians, for example, were more interested in rebuilding British
 trade and looking after the British empire than in being an international
 police force.
\end_layout

\begin_layout Itemize
France’s main concern was still Germany: that Germany was still dangerous
 and wanted to keep it weak.
 It was worried that without an army of its own, the League was too weak
 to protect France from its powerful neighbour.
 It did not think Britain was likely to send an army to help it.
 This made France quite prepared to bypass the League if necessary in order
 to strengthen its position against Germany.
\end_layout

\begin_layout Standard
\begin_inset Note Note
status open

\begin_layout Plain Layout
This part needs expansion
\end_layout

\end_inset


\begin_inset ERT
status open

\begin_layout Plain Layout

\end_layout

\end_inset


\end_layout

\begin_layout Subsubsection
Which structural and circumstantial conditions made the League ineffective?
\end_layout

\begin_layout Itemize
Unanimous voting meant that decisions were almost impossible
\end_layout

\begin_layout Itemize
Lack of army, see Corfu and Vilna 
\end_layout

\begin_layout Itemize
No USA, lack of political/financial/military backing 
\end_layout

\begin_layout Itemize
No Germany and Russia; makes disarmament hard, Russia still a threat with
 their Communism 
\end_layout

\begin_layout Itemize
Self-interested Britain and France, see previous
\end_layout

\begin_layout Itemize
Closely associated with the ToV
\end_layout

\begin_deeper
\begin_layout Standard
Had to defend the peace settlement which is unfair and gives it the air
 of being an organization for the benefit of the victorious powers, e.g.
 the disappointment in Ruhr and the inclusion of Germans in Poland and Czechoslo
vakia
\end_layout

\end_deeper
\begin_layout Itemize
Remain of Conference of Ambassadors
\end_layout

\begin_deeper
\begin_layout Itemize
Enforce the Treaty of Versailles, overruled the League, undermine the authority
 
\end_layout

\begin_layout Itemize
Make some of the League’s decisions undermined 
\end_layout

\begin_layout Itemize
Corfu: Italy insist the dispute be settled by the Council of Ambassadors,
 which finally announced an unfair decision of accepting Italy’s demands
 of compensation.
 
\end_layout

\begin_layout Itemize
Teschen: Council of Ambassadors came to the decision rather than holding
 a relatively fair plebiscite 
\end_layout

\begin_layout Itemize
Vilna: broken the League’s former law of condemning the Poles and instead
 directly awarded the Poles a city 
\end_layout

\end_deeper
\begin_layout Itemize
Economic sanctions are met with conflict of interest Members of the League
 were worried that without America, they would not work, and it harms their
 own trade as much as the aggressors' 
\end_layout

\begin_layout Subsection
How successful were the League’s attempts at peacekeeping in the 1920s?
\end_layout

\begin_layout Subsubsection
Syllabus: Vilna, 1920
\end_layout

\begin_layout Standard
Disagreement between Lithuania and Poland.
 The people living in Vilna, the constitutional capital of Lithuania tended
 to be Polish.
 The League condemned the Poles and asked the withdraw of the troops, but
 no action was taken.
 The Conference of Ambassadors changed the decision and awarded the city
 to Poland.
\end_layout

\begin_layout Standard
This was a failure as the League had failed to prevent a clear act of aggression
, even if in the end Poland was found to have a strong case.
 It showed the self-interest of France and to a lesser extent Britain.
 France was more concerned about having Poland as a strong ally and Britain
 would not send troops as it would have little public support.
\end_layout

\begin_layout Subsubsection
Syllabus: Aaland Islands, 1920–21
\end_layout

\begin_layout Standard
The Aaland Islands belonged to Finland was populated mainly by Swedish.
 Decided that the islands belonged to Finland, but they had to ensure that
 they were demilitarized and to guarantee the rights of the Swedish population
 to retain their customs and language.
 Both sides abided by the agreement.
\end_layout

\begin_layout Subsubsection
Syllabus: Corfu, 1923
\end_layout

\begin_layout Standard
Italy believed the death of Tellini on Greece and Albania border was done
 by Greece and asked for compensation of 50 million liras.
 Greece refused.
 In response Italy bombed and sent 5,000 to 10,000 troops to occupy Corfu.
\end_layout

\begin_layout Itemize
Italy did not accept action by the League in Corfu.
 
\end_layout

\begin_layout Itemize
The League responded quickly and ordered Italy to leave Corfu.
 
\end_layout

\begin_layout Itemize
Italy refused and demanded the question be passed to the Conference of Ambassado
rs, which was responsible for overseeing the peace settlement.
 
\end_layout

\begin_layout Itemize
The Conference of Ambassadors also ordered Italy to leave Corfu, but agreed
 that Greece should pay compensation.
 
\end_layout

\begin_layout Standard
Initially the League gave a weak condemnation of Italy, suggesting that
 Greece should pay the money until the murderers were found then return
 it.
 The Council did not meet, and Mussolini used the Conference of Ambassadors
 to reverse the decision.
 Only when the money was paid did Mussolini remove his troops.
 Greece also had to have its government attend a state funeral for Tellini
 and perform a 21-gun salute to Italian warships.
 It had to accept a commission to investigate the murders and pay its costs.
\end_layout

\begin_layout Standard
This was the biggest failure of the 1920's it showed that the League could
 be made to look indecisive and be bullied by a large aggressive power.
 The self-interest of France was shown by them agreeing to not refer the
 matter to the Council, as they were worried the League would become involved
 in their occupation of the Ruhr.
\end_layout

\begin_layout Subsubsection
Syllabus: Bulgaria, 1925
\end_layout

\begin_layout Standard
In October 1925 there was an incident on the Bulgarian border (dog-chasing)
 and, as a result, a Greek military officer was killed.
 Bulgaria appealed to the League for help when it was invaded by Greece.
 A commission was sent which condemned the Greeks and told them to leave
 Bulgaria and pay 45,000 pounds.
\end_layout

\begin_layout Standard
Success in that the Greeks left Bulgaria and ended the war, but a failure
 in it showed there was a different rule for large countries (i.e.
 Italy in Corfu) than for smaller countries.
 The League was powerless to stop large countries.
\end_layout

\begin_layout Subsubsection
Extra: Upper Silesia, 1921
\end_layout

\begin_layout Standard
The area between Germany and Poland caused riots.
 Held a plebiscite.
 The result is that Germany won 60% of the vote.
 The results were largely ignored, mainly because large numbers of Poles
 had voted to be part of Germany (????? What the heck does this mean).
 Poland received 80% of the Heavy industry while Germany took the bulk of
 the land.
 Ended in 1925 and the relationship between Poland and Germany was deteriorated.
 Success in that the decision was accepted by both countries.
 It was a failure in that minority rights of the Germans were not followed
 by the Poles.
\end_layout

\begin_layout Subsubsection
Extra: Mosul, 1924
\end_layout

\begin_layout Standard
The League sent a fact-finding commission which reported that it belonged
 to the Iraq, a mandate of Britain.
 The Turkish accepted the result.
 It was a success that Turkey agreed to the agreement but a failure for
 the Kurdish majority that lived there as Iraq never fulfilled the promise
 they made about upholding their rights
\end_layout

\begin_layout Subsubsection
Extra: Teschen, 1919–20
\end_layout

\begin_layout Standard
Czechoslovakia and Poland both believed they should control Teschen.
 Around 1,000 people were killed when fighting broke out between them in
 1919.
 Poland received the bulk of the territory but the areas with the coal mines
 were given to Czechoslovakia.
 140,000 Poles were in Czech territory and they lost control of the railway
 station and the Trinec Ironworks.
 The council of Ambassadors came to this decision rather than holding a
 Plebiscite.
 It was a success in that the decision ended the violence, but neither country
 accepted the decision, and it remained a source of tension right up to
 te Second World War.
 Poland refused to cooperate with Czechoslovakian in opposing Germany after
 Hitler came to power.
\end_layout

\begin_layout Subsubsection
Extra: Memel, 1923
\end_layout

\begin_layout Standard
The League decided to keep Memel as a free city (which 75%) of the population
 had voted for at the end of 1921.
 In November 1922, the Lithuanian President planned a local revolt to try
 and remove the French.
 On January 10 1923, just over 1000 Lithuanian militia men equipped by Germany
 joined 317 men revolting in the port.
 The Conference of Ambassadors ordered Lithuania to withdraw but Lithuania
 refused.
 Eventually the council decided that Lithuania could have the surrounding
 suburbs, but the port would be an 
\begin_inset Quotes eld
\end_inset

international zone
\begin_inset Quotes erd
\end_inset

.
\end_layout

\begin_layout Standard
It was a success in that Lithuania accepted the decision but a failure in
 it showed the League could be forced to back down by a show of force, even
 from a country as weak as Lithuania.
\end_layout

\begin_layout Subsubsection
Extra: Ruhr, 1923
\end_layout

\begin_layout Standard
By the end of 1922, Germany stated that they would miss the next reparation
 payment that was due.
 In response, the French and Belgians took control of the area because it
 was Germany's main industrial area.
 They were then able to take goods or resources from the Ruhr as a form
 of reparations.
 The terms of the Treaty of Versailles meant this was legal.
 France and Belgium sent in 60,000 French and Belgian soldiers, took over
 factories, mines and railways, took food and goods, arrested Germans, killed
 100, displaced 15,000, and forced 100,000 protesters to leave.
 Strikes in the industrial area caused the Germany economy to cripple.
 Printing money to pay the reparation caused serious hyperinflation.
\end_layout

\begin_layout Subsection
How important was the League’s humanitarian work?
\end_layout

\begin_layout Subsubsection
Refugees
\end_layout

\begin_layout Standard
Refugees Committee: Led by Fridtjof Nansen.
 To help the refugees from the first world war to settle down.
 Gave loans to promote self-help and assisted refugees in securing documents
 such as work and residence permits.
 It is estimated that in the first few years after the war, about 400,000
 prisoners were returned to their homes by the League’s agencies.
 When war led to a refugee crisis in Turkey in 1922, hundreds of thousands
 of people had to be housed in refugee camps.
 The League acted quickly to stamp out cholera, smallpox and dysentery in
 the camps.
 However, the Refugees Committee was constantly short of funds and its work
 became more difficult in the 1930s as the international situation became
 tenser and the authority of the League declined.
 
\end_layout

\begin_layout Subsubsection
Health
\end_layout

\begin_layout Standard
Health Committee: As well as collecting statistical information and spreading
 good practice, it sponsored research into infectious diseases at institutes
 in Singapore, London and Denmark.
 These institutes helped develop vaccines and medicines to fight deadly
 diseases such as leprosy and malaria.
 The Health Committee is generally regarded as one of the most successful
 of the League’s organizations and its work was continued after 1945 in
 the form of the World Health Organization.
 
\end_layout

\begin_layout Subsubsection
Working conditions
\end_layout

\begin_layout Itemize
The International Labour Organisation, led by Albert Thomas, the permanent
 secretariat of the LoN, meets yearly 
\end_layout

\begin_layout Itemize
Collects statistics about working conditions, persuade countries to accept
 suggestions 
\end_layout

\begin_layout Itemize
Workers and employers voice out with their governments in their deliberations
 
\end_layout

\begin_layout Itemize
The International Labour Organization succeeded in banning poisonous white
 lead from paint and in limiting the hours that small children were allowed
 to work.
 It also campaigned strongly for employers to improve working conditions.
 It introduced a resolution for a maximum 48-hour week, and an eight-hour
 day, but a majority of members refused to adopt it because they thought
 it would cost their industries too much.
 The ILO was hampered by lack of funds and lack of power.
 It could not do much more than ‘name and shame’ countries or organizations
 that broke its regulations.
 
\end_layout

\begin_layout Subsubsection
Slavery
\end_layout

\begin_layout Standard
Slavery Commission: It helped free 200,000 slaves in British-owned Sierra
 Leone.
 It organised raids against slave owners and traders in Burma.
 It challenged the use of forced labour to build the Tanganyika railway
 in Africa, where the death rate among the African workers was a staggering
 50 per cent.
 League pressure brought this down to 4 per cent, which it said was ‘a much
 more acceptable figure’.
 
\end_layout

\begin_layout Subsubsection
Misc
\end_layout

\begin_layout Standard
Even in the areas where it could not remove social injustice the League
 kept careful records of what was going on and provided information on problems
 such as drug trafficking, prostitution and slavery.
 The League blacklisted four large German, Dutch, French and Swiss companies
 which were involved in the illegal drug trade.
 The League also made recommendations on practical problems such as marking
 shipping lanes and produced an international highway code for road users.
 
\end_layout

\begin_layout Subsection
How far did the Depression make the work of the League more difficult in
 the 1930s?
\end_layout

\begin_layout Itemize
The Great Depression affected attitudes towards international relations,
 peace, aggression, and the League of Nations.
 
\end_layout

\begin_layout Itemize
Attitude toward sanctions: Members of the League were not keen to impose
 economic sanctions because they were worried about losing trade.
 
\end_layout

\begin_layout Itemize
The rise of extremism instead of capitalism: The poverty and unemployment
 in nations created by the Great Depression led to support for political
 parties that promised extreme solutions e.g.
 the Nazi party in Germany: 1928, 108 thousand to 1932, 850 thousand supporters
 
\end_layout

\begin_layout Itemize
The rise of militarism: Nations became more likely to use military force
 to protect their economies and trade.
 Japanese army began to behave more aggressively in 1931.
 
\end_layout

\begin_layout Itemize
Attitudes towards territory: Nations wanted to find new resources and markets
 to boost their economies.
 This meant they were more likely to try and take land belonging to other
 countries, e.g.
 the Manchuria crisis 
\end_layout

\begin_layout Itemize
Attitudes towards armament: The League was committed to disarmament, but
 also relied on member armies to help carry out its work.
 
\end_layout

\begin_deeper
\begin_layout Itemize
Governments were under pressure to cut spending on armies and weapons.
 The League's members didn't have the military power to deal with aggressors.
 
\end_layout

\begin_layout Itemize
As a result of the Great Depression, many governments, such as Germany's,
 turned to rearmament as a way of offering more stability and jobs in a
 time of crisis.
\end_layout

\end_deeper
\begin_layout Subsubsection
The Abyssinian Crisis
\end_layout

\begin_layout Subsubsection
The Manchurian Crisis
\end_layout

\begin_layout Itemize

\color red
Missing: The Manchurian and Abyssinian crisis
\end_layout

\begin_layout Section
How far was Hitler’s foreign policy to blame for the outbreak of war in
 Europe in 1939?
\end_layout

\begin_layout Subsection
What were the long-term consequences of the Treaty of Versailles?
\end_layout

\begin_layout Itemize
Made the LoN look less credible as it upheld a treaty that was seen as unfair.
 Britain abandoned France when it came to enforce the terms.
\end_layout

\begin_layout Itemize
Hitler used discontent over the ToV terms to rise to power.
 Many Germans hated war guilt, disarmament, reparations, and losing colonies.
\end_layout

\begin_layout Subsection
What were the consequences of the failures of the League of Nations in the
 1930s?
\end_layout

\begin_layout Subsubsection
Hitler's Plans
\end_layout

\begin_layout Itemize
1924 Mein Kampf: A book that laid out the Nazi’s plans after taking power,
 including mentioning that USSR/communists was their true enemy.
 
\end_layout

\begin_layout Itemize
Abolish the Treaty of Versailles: The German leaders that signed it coined
 the “the November criminals”.
\end_layout

\begin_layout Itemize
Expand German territory: Unite with Austria, get back land, German minorities
 in other countries like Czechoslovakia to rejoin Germany.
\end_layout

\begin_layout Itemize
Regain all lost territory in the ToV, including 
\end_layout

\begin_layout Itemize
Wanted to carve out an empire in eastern Europe to provide 
\emph on
lebensraum
\emph default
.
\end_layout

\begin_layout Itemize
Defeat Communism and Bolshevism.
 He thinks that Bolsheviks brought the defeat of Germany in WWI
\begin_inset Foot
status open

\begin_layout Plain Layout
Wait, what, why?
\end_layout

\end_inset

, and that they wanted to take over Germany.
\end_layout

\begin_layout Subsubsection
Rearmament
\end_layout

\begin_layout Itemize
Used rearmament to fight unemployment which was common practice, reintroduced
 conscription but got away with it.
 Left the LON.
 
\end_layout

\begin_layout Itemize
Britain was sympathetic since they felt the military restrictions were too
 tight and thought Germany would be good buffer of Communism.
 Britain in 1935 already dismantled the Treaty by allowing Germany to increase
 its navy up to 35% of the British Navy.
 
\end_layout

\begin_layout Itemize
From 1932–39, the number of soldiers increased by more than 9 times, aircrafts
 by 230 times, and warships by 3 times.
 
\end_layout

\begin_layout Subsubsection
The Saar
\end_layout

\begin_layout Itemize
Saar region under control of LON since 1919
\end_layout

\begin_layout Itemize
1935: national plebiscite for people to vote whether region return to German
 rule or not, Hitler was wary, and LON pressured it into happening.
\end_layout

\begin_layout Itemize
However, propaganda minister Joseph Goebbels mounted massive campaign and
 it turned out to be a 90% staggering win for Hitler
\end_layout

\begin_layout Itemize
This was a morale booster and Hitler later declared after the war that he
 had “no further territorial demands to make of France.” 
\end_layout

\begin_layout Subsubsection
Remilitarisation of the Rhineland
\end_layout

\begin_layout Itemize
Rhineland DMZ designed to protect France from Germany, and Hitler moved
 his troops into Rhineland, directly breaking the Treaty.
 
\end_layout

\begin_layout Itemize
Gamble; Hitler’s army was still no match for the French.
 They lacked essential equipment and air support.
 He would face humiliation and loose support of German army.
 But he could gain support of the military otherwise.
\end_layout

\begin_layout Itemize
France just signed a treaty with the USSR to protect each other from Germany.
 Hitler used this agreement and claimed that Germany was under threat from
 this, and should be allowed to have troops at frontier.
 France also was about to hold an election, and no one wanted to take their
 country into war.
 France also didn’t know how weak the Germany army was, and they refused
 to act without British support.
 
\end_layout

\begin_layout Itemize
Many people in Britain felt that he had right to station troops at Rhineland.
 
\end_layout

\begin_layout Itemize
LON was occupied on the Abyssinian crisis.
\end_layout

\begin_layout Subsubsection
Anti-communist alliance with Japan and Italy
\end_layout

\begin_layout Itemize
Winston Churchill described the 1930s as a “Gathering Storm”, 
\end_layout

\begin_layout Itemize
Mussolini triumphed in Abyssinia and Japan was invading China.
 Hitler and Mussolini had many in common with the military dictatorship
 in Japan.
\end_layout

\begin_layout Itemize
They signed the “Anti-Comintern pact”, to oppose communism.
 The new alliance was called the Axis alliance.
 
\end_layout

\begin_layout Subsubsection
German and Italian involvement in the Spanish Civil War, 1936
\end_layout

\begin_layout Itemize
Civil war in Spain broke out between republican supporters and right-wing
 rebels under General Franco.
 
\end_layout

\begin_layout Itemize
USSR supported Republican in the form of weapons, aircrafts and pilots,
 Hitler and Mussolini supported Franco.
 
\end_layout

\begin_layout Itemize
Britain and France refused to intervene directly.
 Although Germany and Italy also agreed to this, they blatantly did and
 sent many troops to Franco which included bombing raids on civilian populations.
 
\end_layout

\begin_layout Itemize
Franco eventually won and right-wing dictatorship ruled Spain for next 36
 years.
\end_layout

\begin_layout Itemize
The conflict strengthened bonds between Italian/German forces, gave them
 more combat experience.
 Non-involvement of the US and Britain became a further motivation for Hitler
 to overturn TOV, and a reason for USSR to be suspicious of Britain and
 France’s reluctance.
 
\end_layout

\begin_layout Itemize
By July 1936, Hitler had sent 6,000 rifles, nearly 500 machine guns and
 10,000 grenades over to the Nationalists.
\end_layout

\begin_layout Subsubsection
Anschluss with Austria
\end_layout

\begin_layout Itemize
The people in Austria were mainly German, and many Austrians supported Union
 with Germany, since their country is economically weak.
 
\end_layout

\begin_layout Itemize
He tried to take over Austria in 1934 but was stopped by Mussolini.
 
\end_layout

\begin_layout Itemize
Now, With Mussolini on his side, Hitler was ready to bring Austria and Germany
 together for a “Greater Germany.” Or an Anschluss.
 
\end_layout

\begin_layout Itemize
Hitler told the strong Nazi party in Austria to cause havoc and demonstrations
 to argue for Anschluss.
 and then told the Austrian Chancellor Schuschnigg to agree to Anschluss.
 
\end_layout

\begin_layout Itemize
Schuschnigg failed to receive support from Britain or France and had no
 choice byt to called for a plebiscite.
 
\end_layout

\begin_layout Itemize
Hitler didn’t want to risk it, so he sent troops in Austria under the pretense
 of “trouble-free plebiscite”.
 The votes were a 99% for Anschluss in 1938.
 
\end_layout

\begin_layout Itemize
Chamberlain thought TOV as unjust in separating them in the first place,
 and there was no military confrontation from France or Britain.
 Lord Halifax of Britain even suggested to Hitler that Britain will not
 resist the union before the Anschluss.
 
\end_layout

\begin_layout Itemize
Hitler’s decisive and risky actions were rewarded and met with success again.
 They were rewarded with raw materials, soldiers, and weapons of Austria.
 Hitler broke yet another part of the treaty, and the pattern of Britain
 & France not going to war over a flawed treaty was becoming clear.
 
\end_layout

\begin_layout Subsubsection
The crisis over Czechoslovakia and the Munich Agreement
\end_layout

\begin_layout Subsection
Was the policy of appeasement justified?
\end_layout

\begin_layout Subsubsection
Appeasement was justified!
\end_layout

\begin_layout Itemize
Trusting Hitler: Aged badly, but appeasement was based on the mistaken idea
 that Hitler was trustworthy.
 
\end_layout

\begin_layout Itemize
Fear of communism: Stalin and the spread of communism was the allies ‘major
 worry, not Hitler.
 Hitler was the buffer to the threat of spreading communism.
 
\end_layout

\begin_layout Itemize
Memories of the Great war: Both British and French remember the consequences
 of WWI, avoid war at any cost.
 1.3 and 1.9 million died.
 
\end_layout

\begin_layout Itemize
German arms: Although Hitler claimed that he is trying to catch up with
 other countries in arms, other countries can clearly see they are better
 armed than Britain or France.
 
\end_layout

\begin_layout Itemize
British arms: The British government only began rearming in 1935, and intelligen
ce showed they were a bit behind from Germany.
 
\end_layout

\begin_layout Itemize
USA: US support in WWI was crucial to Britain’s victory, the policy of isolation
ism that American leaders carried out gave no guarantee that US will help.
 The US was determined to not be dragged into another European war.
 
\end_layout

\begin_layout Itemize
The British empire: For Britain to start a war it needed support of countries
 in its empire or commonwealth, which was not guaranteed.
 
\end_layout

\begin_layout Itemize
Economic problems: France and Britain had large debts from WW1, and huge
 unemployment from Depression.
 They could not afford a war.
 
\end_layout

\begin_layout Subsubsection
Appeasement was wrong!
\end_layout

\begin_layout Itemize
Make a stand: Hitler the gambler took increasing risks, the allies needed
 to stop him before he makes a bigger move.
 
\end_layout

\begin_layout Itemize
The Soviet Union: Hitler openly discussed invading Russia, appeasement would
 send the message that Britain & France will not stand in his way.
 
\end_layout

\begin_layout Itemize
Hitler’s allies: Italy and Japan already got away with acts of aggression.
\end_layout

\begin_layout Subsection
How important was the Nazi–Soviet Pact?
\end_layout

\begin_layout Subsection
Why did Britain and France declare war on Germany in September 1939?
\end_layout

\begin_layout Subsubsection
The Polish crisis and the outbreak of war
\end_layout

\begin_layout Standard
\begin_inset Newpage newpage
\end_inset


\end_layout

\begin_layout Part
The Cold War, 1945–75
\end_layout

\begin_layout Section
Who was to blame for the Cold War?
\end_layout

\begin_layout Subsection
Why did the US–Soviet alliance begin to break down in 1945?
\end_layout

\begin_layout Standard
\begin_inset Note Note
status open

\begin_layout Plain Layout
The 1945 summit conferences and the breakdown of the US–Soviet alliance
 in 1945–46
\end_layout

\end_inset


\end_layout

\begin_layout Itemize

\series bold
The Grand Alliance:
\series default
 United Kingdom (Churchill), United States (Roosevelt), Soviet Union (Stalin).
 Allies during WW2.
\end_layout

\begin_layout Subsection
How had the USSR gained control of Eastern Europe by 1948?
\end_layout

\begin_layout Standard
\begin_inset Note Note
status open

\begin_layout Plain Layout
Soviet expansion into Eastern Europe to 1948, and American reactions to
 it
\end_layout

\end_inset


\end_layout

\begin_layout Subsection
How did the United States react to Soviet expansionism?
\end_layout

\begin_layout Standard
\begin_inset Note Note
status open

\begin_layout Plain Layout
Soviet expansion into Eastern Europe to 1948, and American reactions to
 it
\end_layout

\end_inset


\end_layout

\begin_layout Subsection
What were the consequences of the Berlin Blockade?
\end_layout

\begin_layout Standard
\begin_inset Note Note
status open

\begin_layout Plain Layout
The occupation of Germany and the Berlin Blockade
\end_layout

\end_inset


\end_layout

\begin_layout Subsection
Who was more to blame for starting the Cold War: the United States or the
 USSR?
\end_layout

\begin_layout Standard
\begin_inset Note Note
status open

\begin_layout Plain Layout
Nato and the Warsaw Pact, etc.
\end_layout

\end_inset


\end_layout

\begin_layout Section
How effectively did the United States contain the spread of communism?
\end_layout

\begin_layout Subsection
The United States and events in Korea, 1950–53
\end_layout

\begin_layout Standard
\begin_inset Note Note
status open

\begin_layout Plain Layout
American reactions to North Korea’s invasion of South Korea, the involvement
 of the UN, the course of the war to 1953
\begin_inset Note Note
status open

\begin_layout Plain Layout

\end_layout

\end_inset


\end_layout

\end_inset


\end_layout

\begin_layout Subsection
The United States and events in Cuba, 1959–62
\end_layout

\begin_layout Standard
\begin_inset Note Note
status open

\begin_layout Plain Layout
American reactions to the Cuban Revolution, including the Missile Crisis
 and its aftermath
\end_layout

\end_inset


\end_layout

\begin_layout Itemize
\begin_inset Quotes eld
\end_inset

The most serious incident in the Cold War
\begin_inset Quotes erd
\end_inset


\end_layout

\begin_layout Itemize

\series bold
The arms race and nuclear deterrence
\end_layout

\begin_deeper
\begin_layout Itemize
Nuclear arms race for bigger nuclear bombs and longer-reaching missles
\end_layout

\begin_layout Itemize
Spying: USSR used spies, US used e.g.
 U2
\end_layout

\begin_layout Itemize
US had short-range missiles in Turkey (CENTO)
\end_layout

\begin_layout Itemize
MAD, deterrant
\end_layout

\end_deeper
\begin_layout Itemize

\series bold
The Cuban Revolution
\end_layout

\begin_deeper
\begin_layout Itemize
Batista 
\end_layout

\begin_layout Itemize
Fidel Castro
\end_layout

\begin_layout Itemize
American Response
\end_layout

\begin_layout Itemize
\begin_inset Quotes eld
\end_inset

The Bay of Pigs
\begin_inset Quotes erd
\end_inset


\end_layout

\begin_layout Itemize
Impact
\end_layout

\end_deeper
\begin_layout Itemize

\series bold
The October Crisis
\end_layout

\begin_deeper
\begin_layout Itemize
Khrushchev arms Castro
\end_layout

\begin_layout Itemize
US discovery
\end_layout

\begin_layout Itemize
Blockade
\end_layout

\begin_layout Itemize
Vasily Arkhipov objected launching a nuclear torpedo while the other two
 officers on B-52 Soviet submarine thought that war had already broken out.
\end_layout

\begin_layout Itemize
Negotiations and stuff
\end_layout

\end_deeper
\begin_layout Itemize

\series bold
Why did Khrushchev put missiles in Cuba?
\end_layout

\begin_deeper
\begin_layout Itemize
Bargaining power e.g.
 Turkey / close the missile gap
\end_layout

\begin_layout Itemize
Test the USA's strength
\end_layout

\end_deeper
\begin_layout Itemize

\series bold
Outcome
\end_layout

\begin_deeper
\begin_layout Itemize
Kennedy
\end_layout

\begin_deeper
\begin_layout Itemize
Improved reputation, resisted hardliners
\end_layout

\begin_layout Itemize
Had to remove missiles from Turkey in secret; NATO allies unhappy
\end_layout

\begin_layout Itemize
Had to accept communism in Cuba
\end_layout

\begin_layout Itemize
USA originally criticized for having missiles in Turkey but not allowing
 in Cuba
\end_layout

\end_deeper
\begin_layout Itemize
Khrushchev
\end_layout

\begin_deeper
\begin_layout Itemize
Highlight his role as a responsible peacemaker
\end_layout

\begin_layout Itemize
Kept Cuba safe from US invasion
\end_layout

\begin_layout Itemize
Got Kennedy to withdraw Turkish missiles; in secret, couldn't use for propaganda
\end_layout

\begin_layout Itemize
Humiliated; forced to back down in the crisis; removed from leader in 1964
\end_layout

\begin_layout Itemize
Still lagged behind the US in the arms race
\end_layout

\end_deeper
\begin_layout Itemize
Cold War
\end_layout

\begin_deeper
\begin_layout Itemize
Hot line
\end_layout

\begin_layout Itemize
1963 Nuclear Test Ban Treaty
\end_layout

\begin_layout Itemize
Thaw relations, more prepared to reduce the risk of nuclear war
\end_layout

\end_deeper
\begin_layout Itemize
Castro
\end_layout

\begin_deeper
\begin_layout Itemize
Needed support of USSR, upset but had to accept the deal
\end_layout

\begin_layout Itemize
Still communist, highly armed for South America and Angolan Civil War
\end_layout

\begin_layout Itemize
Castro kept control of the American companies and economic resources he
 took in the revolution
\end_layout

\end_deeper
\end_deeper
\begin_layout Subsection
American involvement in Vietnam, 1955–75
\end_layout

\begin_layout Standard
\begin_inset Note Note
status open

\begin_layout Plain Layout
American involvement in the Vietnam War, including reasons for involvement,
 tactics and strategy, reasons for withdrawal
\end_layout

\end_inset


\end_layout

\end_body
\end_document