forked from TheMITTech/shakespeare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfull.html
7219 lines (6168 loc) · 249 KB
/
full.html
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
"http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head>
<title>Love's Labour's Lost: Entire Play
</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<LINK rel="stylesheet" type="text/css" media="screen"
href="/shake.css">
</HEAD>
<body bgcolor="#ffffff" text="#000000">
<table width="100%" bgcolor="#CCF6F6">
<tr><td class="play" align="center">Loves Labours Lost
<tr><td class="nav" align="center">
<a href="/Shakespeare">Shakespeare homepage</A>
| <A href="/lll/">Love's Labour's Lost</A>
| Entire play
</table>
<H3>ACT I</h3>
<h3>SCENE I. The king of Navarre's park.</h3>
<p><blockquote>
<i>Enter FERDINAND king of Navarre, BIRON, LONGAVILLE and DUMAIN</i>
</blockquote>
<A NAME=speech1><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.1>Let fame, that all hunt after in their lives,</A><br>
<A NAME=1.1.2>Live register'd upon our brazen tombs</A><br>
<A NAME=1.1.3>And then grace us in the disgrace of death;</A><br>
<A NAME=1.1.4>When, spite of cormorant devouring Time,</A><br>
<A NAME=1.1.5>The endeavor of this present breath may buy</A><br>
<A NAME=1.1.6>That honour which shall bate his scythe's keen edge</A><br>
<A NAME=1.1.7>And make us heirs of all eternity.</A><br>
<A NAME=1.1.8>Therefore, brave conquerors,--for so you are,</A><br>
<A NAME=1.1.9>That war against your own affections</A><br>
<A NAME=1.1.10>And the huge army of the world's desires,--</A><br>
<A NAME=1.1.11>Our late edict shall strongly stand in force:</A><br>
<A NAME=1.1.12>Navarre shall be the wonder of the world;</A><br>
<A NAME=1.1.13>Our court shall be a little Academe,</A><br>
<A NAME=1.1.14>Still and contemplative in living art.</A><br>
<A NAME=1.1.15>You three, Biron, Dumain, and Longaville,</A><br>
<A NAME=1.1.16>Have sworn for three years' term to live with me</A><br>
<A NAME=1.1.17>My fellow-scholars, and to keep those statutes</A><br>
<A NAME=1.1.18>That are recorded in this schedule here:</A><br>
<A NAME=1.1.19>Your oaths are pass'd; and now subscribe your names,</A><br>
<A NAME=1.1.20>That his own hand may strike his honour down</A><br>
<A NAME=1.1.21>That violates the smallest branch herein:</A><br>
<A NAME=1.1.22>If you are arm'd to do as sworn to do,</A><br>
<A NAME=1.1.23>Subscribe to your deep oaths, and keep it too.</A><br>
</blockquote>
<A NAME=speech2><b>LONGAVILLE</b></a>
<blockquote>
<A NAME=1.1.24>I am resolved; 'tis but a three years' fast:</A><br>
<A NAME=1.1.25>The mind shall banquet, though the body pine:</A><br>
<A NAME=1.1.26>Fat paunches have lean pates, and dainty bits</A><br>
<A NAME=1.1.27>Make rich the ribs, but bankrupt quite the wits.</A><br>
</blockquote>
<A NAME=speech3><b>DUMAIN</b></a>
<blockquote>
<A NAME=1.1.28>My loving lord, Dumain is mortified:</A><br>
<A NAME=1.1.29>The grosser manner of these world's delights</A><br>
<A NAME=1.1.30>He throws upon the gross world's baser slaves:</A><br>
<A NAME=1.1.31>To love, to wealth, to pomp, I pine and die;</A><br>
<A NAME=1.1.32>With all these living in philosophy.</A><br>
</blockquote>
<A NAME=speech4><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.33>I can but say their protestation over;</A><br>
<A NAME=1.1.34>So much, dear liege, I have already sworn,</A><br>
<A NAME=1.1.35>That is, to live and study here three years.</A><br>
<A NAME=1.1.36>But there are other strict observances;</A><br>
<A NAME=1.1.37>As, not to see a woman in that term,</A><br>
<A NAME=1.1.38>Which I hope well is not enrolled there;</A><br>
<A NAME=1.1.39>And one day in a week to touch no food</A><br>
<A NAME=1.1.40>And but one meal on every day beside,</A><br>
<A NAME=1.1.41>The which I hope is not enrolled there;</A><br>
<A NAME=1.1.42>And then, to sleep but three hours in the night,</A><br>
<A NAME=1.1.43>And not be seen to wink of all the day--</A><br>
<A NAME=1.1.44>When I was wont to think no harm all night</A><br>
<A NAME=1.1.45>And make a dark night too of half the day--</A><br>
<A NAME=1.1.46>Which I hope well is not enrolled there:</A><br>
<A NAME=1.1.47>O, these are barren tasks, too hard to keep,</A><br>
<A NAME=1.1.48>Not to see ladies, study, fast, not sleep!</A><br>
</blockquote>
<A NAME=speech5><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.49>Your oath is pass'd to pass away from these.</A><br>
</blockquote>
<A NAME=speech6><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.50>Let me say no, my liege, an if you please:</A><br>
<A NAME=1.1.51>I only swore to study with your grace</A><br>
<A NAME=1.1.52>And stay here in your court for three years' space.</A><br>
</blockquote>
<A NAME=speech7><b>LONGAVILLE</b></a>
<blockquote>
<A NAME=1.1.53>You swore to that, Biron, and to the rest.</A><br>
</blockquote>
<A NAME=speech8><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.54>By yea and nay, sir, then I swore in jest.</A><br>
<A NAME=1.1.55>What is the end of study? let me know.</A><br>
</blockquote>
<A NAME=speech9><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.56>Why, that to know, which else we should not know.</A><br>
</blockquote>
<A NAME=speech10><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.57>Things hid and barr'd, you mean, from common sense?</A><br>
</blockquote>
<A NAME=speech11><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.58>Ay, that is study's godlike recompense.</A><br>
</blockquote>
<A NAME=speech12><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.59>Come on, then; I will swear to study so,</A><br>
<A NAME=1.1.60>To know the thing I am forbid to know:</A><br>
<A NAME=1.1.61>As thus,--to study where I well may dine,</A><br>
<A NAME=1.1.62>When I to feast expressly am forbid;</A><br>
<A NAME=1.1.63>Or study where to meet some mistress fine,</A><br>
<A NAME=1.1.64>When mistresses from common sense are hid;</A><br>
<A NAME=1.1.65>Or, having sworn too hard a keeping oath,</A><br>
<A NAME=1.1.66>Study to break it and not break my troth.</A><br>
<A NAME=1.1.67>If study's gain be thus and this be so,</A><br>
<A NAME=1.1.68>Study knows that which yet it doth not know:</A><br>
<A NAME=1.1.69>Swear me to this, and I will ne'er say no.</A><br>
</blockquote>
<A NAME=speech13><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.70>These be the stops that hinder study quite</A><br>
<A NAME=1.1.71>And train our intellects to vain delight.</A><br>
</blockquote>
<A NAME=speech14><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.72>Why, all delights are vain; but that most vain,</A><br>
<A NAME=1.1.73>Which with pain purchased doth inherit pain:</A><br>
<A NAME=1.1.74>As, painfully to pore upon a book</A><br>
<A NAME=1.1.75>To seek the light of truth; while truth the while</A><br>
<A NAME=1.1.76>Doth falsely blind the eyesight of his look:</A><br>
<A NAME=1.1.77>Light seeking light doth light of light beguile:</A><br>
<A NAME=1.1.78>So, ere you find where light in darkness lies,</A><br>
<A NAME=1.1.79>Your light grows dark by losing of your eyes.</A><br>
<A NAME=1.1.80>Study me how to please the eye indeed</A><br>
<A NAME=1.1.81>By fixing it upon a fairer eye,</A><br>
<A NAME=1.1.82>Who dazzling so, that eye shall be his heed</A><br>
<A NAME=1.1.83>And give him light that it was blinded by.</A><br>
<A NAME=1.1.84>Study is like the heaven's glorious sun</A><br>
<A NAME=1.1.85>That will not be deep-search'd with saucy looks:</A><br>
<A NAME=1.1.86>Small have continual plodders ever won</A><br>
<A NAME=1.1.87>Save base authority from others' books</A><br>
<A NAME=1.1.88>These earthly godfathers of heaven's lights</A><br>
<A NAME=1.1.89>That give a name to every fixed star</A><br>
<A NAME=1.1.90>Have no more profit of their shining nights</A><br>
<A NAME=1.1.91>Than those that walk and wot not what they are.</A><br>
<A NAME=1.1.92>Too much to know is to know nought but fame;</A><br>
<A NAME=1.1.93>And every godfather can give a name.</A><br>
</blockquote>
<A NAME=speech15><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.94>How well he's read, to reason against reading!</A><br>
</blockquote>
<A NAME=speech16><b>DUMAIN</b></a>
<blockquote>
<A NAME=1.1.95>Proceeded well, to stop all good proceeding!</A><br>
</blockquote>
<A NAME=speech17><b>LONGAVILLE</b></a>
<blockquote>
<A NAME=1.1.96>He weeds the corn and still lets grow the weeding.</A><br>
</blockquote>
<A NAME=speech18><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.97>The spring is near when green geese are a-breeding.</A><br>
</blockquote>
<A NAME=speech19><b>DUMAIN</b></a>
<blockquote>
<A NAME=1.1.98>How follows that?</A><br>
</blockquote>
<A NAME=speech20><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.99> Fit in his place and time.</A><br>
</blockquote>
<A NAME=speech21><b>DUMAIN</b></a>
<blockquote>
<A NAME=1.1.100>In reason nothing.</A><br>
</blockquote>
<A NAME=speech22><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.101> Something then in rhyme.</A><br>
</blockquote>
<A NAME=speech23><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.102>Biron is like an envious sneaping frost,</A><br>
<A NAME=1.1.103>That bites the first-born infants of the spring.</A><br>
</blockquote>
<A NAME=speech24><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.104>Well, say I am; why should proud summer boast</A><br>
<A NAME=1.1.105>Before the birds have any cause to sing?</A><br>
<A NAME=1.1.106>Why should I joy in any abortive birth?</A><br>
<A NAME=1.1.107>At Christmas I no more desire a rose</A><br>
<A NAME=1.1.108>Than wish a snow in May's new-fangled mirth;</A><br>
<A NAME=1.1.109>But like of each thing that in season grows.</A><br>
<A NAME=1.1.110>So you, to study now it is too late,</A><br>
<A NAME=1.1.111>Climb o'er the house to unlock the little gate.</A><br>
</blockquote>
<A NAME=speech25><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.112>Well, sit you out: go home, Biron: adieu.</A><br>
</blockquote>
<A NAME=speech26><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.113>No, my good lord; I have sworn to stay with you:</A><br>
<A NAME=1.1.114>And though I have for barbarism spoke more</A><br>
<A NAME=1.1.115>Than for that angel knowledge you can say,</A><br>
<A NAME=1.1.116>Yet confident I'll keep what I have swore</A><br>
<A NAME=1.1.117>And bide the penance of each three years' day.</A><br>
<A NAME=1.1.118>Give me the paper; let me read the same;</A><br>
<A NAME=1.1.119>And to the strict'st decrees I'll write my name.</A><br>
</blockquote>
<A NAME=speech27><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.120>How well this yielding rescues thee from shame!</A><br>
</blockquote>
<A NAME=speech28><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.121>[Reads] 'Item, That no woman shall come within a</A><br>
<A NAME=1.1.122>mile of my court:' Hath this been proclaimed?</A><br>
</blockquote>
<A NAME=speech29><b>LONGAVILLE</b></a>
<blockquote>
<A NAME=1.1.123>Four days ago.</A><br>
</blockquote>
<A NAME=speech30><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.124>Let's see the penalty.</A><br>
<p><i>Reads</i></p>
<A NAME=1.1.125>'On pain of losing her tongue.' Who devised this penalty?</A><br>
</blockquote>
<A NAME=speech31><b>LONGAVILLE</b></a>
<blockquote>
<A NAME=1.1.126>Marry, that did I.</A><br>
</blockquote>
<A NAME=speech32><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.127>Sweet lord, and why?</A><br>
</blockquote>
<A NAME=speech33><b>LONGAVILLE</b></a>
<blockquote>
<A NAME=1.1.128>To fright them hence with that dread penalty.</A><br>
</blockquote>
<A NAME=speech34><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.129>A dangerous law against gentility!</A><br>
<p><i>Reads</i></p>
<A NAME=1.1.130>'Item, If any man be seen to talk with a woman</A><br>
<A NAME=1.1.131>within the term of three years, he shall endure such</A><br>
<A NAME=1.1.132>public shame as the rest of the court can possibly devise.'</A><br>
<A NAME=1.1.133>This article, my liege, yourself must break;</A><br>
<A NAME=1.1.134>For well you know here comes in embassy</A><br>
<A NAME=1.1.135>The French king's daughter with yourself to speak--</A><br>
<A NAME=1.1.136>A maid of grace and complete majesty--</A><br>
<A NAME=1.1.137>About surrender up of Aquitaine</A><br>
<A NAME=1.1.138>To her decrepit, sick and bedrid father:</A><br>
<A NAME=1.1.139>Therefore this article is made in vain,</A><br>
<A NAME=1.1.140>Or vainly comes the admired princess hither.</A><br>
</blockquote>
<A NAME=speech35><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.141>What say you, lords? Why, this was quite forgot.</A><br>
</blockquote>
<A NAME=speech36><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.142>So study evermore is overshot:</A><br>
<A NAME=1.1.143>While it doth study to have what it would</A><br>
<A NAME=1.1.144>It doth forget to do the thing it should,</A><br>
<A NAME=1.1.145>And when it hath the thing it hunteth most,</A><br>
<A NAME=1.1.146>'Tis won as towns with fire, so won, so lost.</A><br>
</blockquote>
<A NAME=speech37><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.147>We must of force dispense with this decree;</A><br>
<A NAME=1.1.148>She must lie here on mere necessity.</A><br>
</blockquote>
<A NAME=speech38><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.149>Necessity will make us all forsworn</A><br>
<A NAME=1.1.150>Three thousand times within this three years' space;</A><br>
<A NAME=1.1.151>For every man with his affects is born,</A><br>
<A NAME=1.1.152>Not by might master'd but by special grace:</A><br>
<A NAME=1.1.153>If I break faith, this word shall speak for me;</A><br>
<A NAME=1.1.154>I am forsworn on 'mere necessity.'</A><br>
<A NAME=1.1.155>So to the laws at large I write my name:</A><br>
<p><i>Subscribes</i></p>
<A NAME=1.1.156>And he that breaks them in the least degree</A><br>
<A NAME=1.1.157>Stands in attainder of eternal shame:</A><br>
<A NAME=1.1.158>Suggestions are to other as to me;</A><br>
<A NAME=1.1.159>But I believe, although I seem so loath,</A><br>
<A NAME=1.1.160>I am the last that will last keep his oath.</A><br>
<A NAME=1.1.161>But is there no quick recreation granted?</A><br>
</blockquote>
<A NAME=speech39><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.162>Ay, that there is. Our court, you know, is haunted</A><br>
<A NAME=1.1.163>With a refined traveller of Spain;</A><br>
<A NAME=1.1.164>A man in all the world's new fashion planted,</A><br>
<A NAME=1.1.165>That hath a mint of phrases in his brain;</A><br>
<A NAME=1.1.166>One whom the music of his own vain tongue</A><br>
<A NAME=1.1.167>Doth ravish like enchanting harmony;</A><br>
<A NAME=1.1.168>A man of complements, whom right and wrong</A><br>
<A NAME=1.1.169>Have chose as umpire of their mutiny:</A><br>
<A NAME=1.1.170>This child of fancy, that Armado hight,</A><br>
<A NAME=1.1.171>For interim to our studies shall relate</A><br>
<A NAME=1.1.172>In high-born words the worth of many a knight</A><br>
<A NAME=1.1.173>From tawny Spain lost in the world's debate.</A><br>
<A NAME=1.1.174>How you delight, my lords, I know not, I;</A><br>
<A NAME=1.1.175>But, I protest, I love to hear him lie</A><br>
<A NAME=1.1.176>And I will use him for my minstrelsy.</A><br>
</blockquote>
<A NAME=speech40><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.177>Armado is a most illustrious wight,</A><br>
<A NAME=1.1.178>A man of fire-new words, fashion's own knight.</A><br>
</blockquote>
<A NAME=speech41><b>LONGAVILLE</b></a>
<blockquote>
<A NAME=1.1.179>Costard the swain and he shall be our sport;</A><br>
<A NAME=1.1.180>And so to study, three years is but short.</A><br>
<p><i>Enter DULL with a letter, and COSTARD</i></p>
</blockquote>
<A NAME=speech42><b>DULL</b></a>
<blockquote>
<A NAME=1.1.181>Which is the duke's own person?</A><br>
</blockquote>
<A NAME=speech43><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.182>This, fellow: what wouldst?</A><br>
</blockquote>
<A NAME=speech44><b>DULL</b></a>
<blockquote>
<A NAME=1.1.183>I myself reprehend his own person, for I am his</A><br>
<A NAME=1.1.184>grace's tharborough: but I would see his own person</A><br>
<A NAME=1.1.185>in flesh and blood.</A><br>
</blockquote>
<A NAME=speech45><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.186>This is he.</A><br>
</blockquote>
<A NAME=speech46><b>DULL</b></a>
<blockquote>
<A NAME=1.1.187>Signior Arme--Arme--commends you. There's villany</A><br>
<A NAME=1.1.188>abroad: this letter will tell you more.</A><br>
</blockquote>
<A NAME=speech47><b>COSTARD</b></a>
<blockquote>
<A NAME=1.1.189>Sir, the contempts thereof are as touching me.</A><br>
</blockquote>
<A NAME=speech48><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.190>A letter from the magnificent Armado.</A><br>
</blockquote>
<A NAME=speech49><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.191>How low soever the matter, I hope in God for high words.</A><br>
</blockquote>
<A NAME=speech50><b>LONGAVILLE</b></a>
<blockquote>
<A NAME=1.1.192>A high hope for a low heaven: God grant us patience!</A><br>
</blockquote>
<A NAME=speech51><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.193>To hear? or forbear laughing?</A><br>
</blockquote>
<A NAME=speech52><b>LONGAVILLE</b></a>
<blockquote>
<A NAME=1.1.194>To hear meekly, sir, and to laugh moderately; or to</A><br>
<A NAME=1.1.195>forbear both.</A><br>
</blockquote>
<A NAME=speech53><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.196>Well, sir, be it as the style shall give us cause to</A><br>
<A NAME=1.1.197>climb in the merriness.</A><br>
</blockquote>
<A NAME=speech54><b>COSTARD</b></a>
<blockquote>
<A NAME=1.1.198>The matter is to me, sir, as concerning Jaquenetta.</A><br>
<A NAME=1.1.199>The manner of it is, I was taken with the manner.</A><br>
</blockquote>
<A NAME=speech55><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.200>In what manner?</A><br>
</blockquote>
<A NAME=speech56><b>COSTARD</b></a>
<blockquote>
<A NAME=1.1.201>In manner and form following, sir; all those three:</A><br>
<A NAME=1.1.202>I was seen with her in the manor-house, sitting with</A><br>
<A NAME=1.1.203>her upon the form, and taken following her into the</A><br>
<A NAME=1.1.204>park; which, put together, is in manner and form</A><br>
<A NAME=1.1.205>following. Now, sir, for the manner,--it is the</A><br>
<A NAME=1.1.206>manner of a man to speak to a woman: for the form,--</A><br>
<A NAME=1.1.207>in some form.</A><br>
</blockquote>
<A NAME=speech57><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.208>For the following, sir?</A><br>
</blockquote>
<A NAME=speech58><b>COSTARD</b></a>
<blockquote>
<A NAME=1.1.209>As it shall follow in my correction: and God defend</A><br>
<A NAME=1.1.210>the right!</A><br>
</blockquote>
<A NAME=speech59><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.211>Will you hear this letter with attention?</A><br>
</blockquote>
<A NAME=speech60><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.212>As we would hear an oracle.</A><br>
</blockquote>
<A NAME=speech61><b>COSTARD</b></a>
<blockquote>
<A NAME=1.1.213>Such is the simplicity of man to hearken after the flesh.</A><br>
</blockquote>
<A NAME=speech62><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.214>[Reads] 'Great deputy, the welkin's vicegerent and</A><br>
<A NAME=1.1.215>sole dominator of Navarre, my soul's earth's god,</A><br>
<A NAME=1.1.216>and body's fostering patron.'</A><br>
</blockquote>
<A NAME=speech63><b>COSTARD</b></a>
<blockquote>
<A NAME=1.1.217>Not a word of Costard yet.</A><br>
</blockquote>
<A NAME=speech64><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.218>[Reads] 'So it is,'--</A><br>
</blockquote>
<A NAME=speech65><b>COSTARD</b></a>
<blockquote>
<A NAME=1.1.219>It may be so: but if he say it is so, he is, in</A><br>
<A NAME=1.1.220>telling true, but so.</A><br>
</blockquote>
<A NAME=speech66><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.221>Peace!</A><br>
</blockquote>
<A NAME=speech67><b>COSTARD</b></a>
<blockquote>
<A NAME=1.1.222>Be to me and every man that dares not fight!</A><br>
</blockquote>
<A NAME=speech68><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.223>No words!</A><br>
</blockquote>
<A NAME=speech69><b>COSTARD</b></a>
<blockquote>
<A NAME=1.1.224>Of other men's secrets, I beseech you.</A><br>
</blockquote>
<A NAME=speech70><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.225>[Reads] 'So it is, besieged with sable-coloured</A><br>
<A NAME=1.1.226>melancholy, I did commend the black-oppressing humour</A><br>
<A NAME=1.1.227>to the most wholesome physic of thy health-giving</A><br>
<A NAME=1.1.228>air; and, as I am a gentleman, betook myself to</A><br>
<A NAME=1.1.229>walk. The time when. About the sixth hour; when</A><br>
<A NAME=1.1.230>beasts most graze, birds best peck, and men sit down</A><br>
<A NAME=1.1.231>to that nourishment which is called supper: so much</A><br>
<A NAME=1.1.232>for the time when. Now for the ground which; which,</A><br>
<A NAME=1.1.233>I mean, I walked upon: it is y-cleped thy park. Then</A><br>
<A NAME=1.1.234>for the place where; where, I mean, I did encounter</A><br>
<A NAME=1.1.235>that obscene and preposterous event, that draweth</A><br>
<A NAME=1.1.236>from my snow-white pen the ebon-coloured ink, which</A><br>
<A NAME=1.1.237>here thou viewest, beholdest, surveyest, or seest;</A><br>
<A NAME=1.1.238>but to the place where; it standeth north-north-east</A><br>
<A NAME=1.1.239>and by east from the west corner of thy curious-</A><br>
<A NAME=1.1.240>knotted garden: there did I see that low-spirited</A><br>
<A NAME=1.1.241>swain, that base minnow of thy mirth,'--</A><br>
</blockquote>
<A NAME=speech71><b>COSTARD</b></a>
<blockquote>
<A NAME=1.1.242>Me?</A><br>
</blockquote>
<A NAME=speech72><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.243>[Reads] 'that unlettered small-knowing soul,'--</A><br>
</blockquote>
<A NAME=speech73><b>COSTARD</b></a>
<blockquote>
<A NAME=1.1.244>Me?</A><br>
</blockquote>
<A NAME=speech74><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.245>[Reads] 'that shallow vassal,'--</A><br>
</blockquote>
<A NAME=speech75><b>COSTARD</b></a>
<blockquote>
<A NAME=1.1.246>Still me?</A><br>
</blockquote>
<A NAME=speech76><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.247>[Reads] 'which, as I remember, hight Costard,'--</A><br>
</blockquote>
<A NAME=speech77><b>COSTARD</b></a>
<blockquote>
<A NAME=1.1.248>O, me!</A><br>
</blockquote>
<A NAME=speech78><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.249>[Reads] 'sorted and consorted, contrary to thy</A><br>
<A NAME=1.1.250>established proclaimed edict and continent canon,</A><br>
<A NAME=1.1.251>which with,--O, with--but with this I passion to say</A><br>
<A NAME=1.1.252>wherewith,--</A><br>
</blockquote>
<A NAME=speech79><b>COSTARD</b></a>
<blockquote>
<A NAME=1.1.253>With a wench.</A><br>
</blockquote>
<A NAME=speech80><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.254>[Reads] 'with a child of our grandmother Eve, a</A><br>
<A NAME=1.1.255>female; or, for thy more sweet understanding, a</A><br>
<A NAME=1.1.256>woman. Him I, as my ever-esteemed duty pricks me on,</A><br>
<A NAME=1.1.257>have sent to thee, to receive the meed of</A><br>
<A NAME=1.1.258>punishment, by thy sweet grace's officer, Anthony</A><br>
<A NAME=1.1.259>Dull; a man of good repute, carriage, bearing, and</A><br>
<A NAME=1.1.260>estimation.'</A><br>
</blockquote>
<A NAME=speech81><b>DULL</b></a>
<blockquote>
<A NAME=1.1.261>'Me, an't shall please you; I am Anthony Dull.</A><br>
</blockquote>
<A NAME=speech82><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.262>[Reads] 'For Jaquenetta,--so is the weaker vessel</A><br>
<A NAME=1.1.263>called which I apprehended with the aforesaid</A><br>
<A NAME=1.1.264>swain,--I keep her as a vessel of the law's fury;</A><br>
<A NAME=1.1.265>and shall, at the least of thy sweet notice, bring</A><br>
<A NAME=1.1.266>her to trial. Thine, in all compliments of devoted</A><br>
<A NAME=1.1.267>and heart-burning heat of duty.</A><br>
<A NAME=1.1.268>DON ADRIANO DE ARMADO.'</A><br>
</blockquote>
<A NAME=speech83><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.269>This is not so well as I looked for, but the best</A><br>
<A NAME=1.1.270>that ever I heard.</A><br>
</blockquote>
<A NAME=speech84><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.271>Ay, the best for the worst. But, sirrah, what say</A><br>
<A NAME=1.1.272>you to this?</A><br>
</blockquote>
<A NAME=speech85><b>COSTARD</b></a>
<blockquote>
<A NAME=1.1.273>Sir, I confess the wench.</A><br>
</blockquote>
<A NAME=speech86><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.274>Did you hear the proclamation?</A><br>
</blockquote>
<A NAME=speech87><b>COSTARD</b></a>
<blockquote>
<A NAME=1.1.275>I do confess much of the hearing it but little of</A><br>
<A NAME=1.1.276>the marking of it.</A><br>
</blockquote>
<A NAME=speech88><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.277>It was proclaimed a year's imprisonment, to be taken</A><br>
<A NAME=1.1.278>with a wench.</A><br>
</blockquote>
<A NAME=speech89><b>COSTARD</b></a>
<blockquote>
<A NAME=1.1.279>I was taken with none, sir: I was taken with a damsel.</A><br>
</blockquote>
<A NAME=speech90><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.280>Well, it was proclaimed 'damsel.'</A><br>
</blockquote>
<A NAME=speech91><b>COSTARD</b></a>
<blockquote>
<A NAME=1.1.281>This was no damsel, neither, sir; she was a virgin.</A><br>
</blockquote>
<A NAME=speech92><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.282>It is so varied, too; for it was proclaimed 'virgin.'</A><br>
</blockquote>
<A NAME=speech93><b>COSTARD</b></a>
<blockquote>
<A NAME=1.1.283>If it were, I deny her virginity: I was taken with a maid.</A><br>
</blockquote>
<A NAME=speech94><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.284>This maid will not serve your turn, sir.</A><br>
</blockquote>
<A NAME=speech95><b>COSTARD</b></a>
<blockquote>
<A NAME=1.1.285>This maid will serve my turn, sir.</A><br>
</blockquote>
<A NAME=speech96><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.286>Sir, I will pronounce your sentence: you shall fast</A><br>
<A NAME=1.1.287>a week with bran and water.</A><br>
</blockquote>
<A NAME=speech97><b>COSTARD</b></a>
<blockquote>
<A NAME=1.1.288>I had rather pray a month with mutton and porridge.</A><br>
</blockquote>
<A NAME=speech98><b>FERDINAND</b></a>
<blockquote>
<A NAME=1.1.289>And Don Armado shall be your keeper.</A><br>
<A NAME=1.1.290>My Lord Biron, see him deliver'd o'er:</A><br>
<A NAME=1.1.291>And go we, lords, to put in practise that</A><br>
<A NAME=1.1.292>Which each to other hath so strongly sworn.</A><br>
<p><i>Exeunt FERDINAND, LONGAVILLE, and DUMAIN</i></p>
</blockquote>
<A NAME=speech99><b>BIRON</b></a>
<blockquote>
<A NAME=1.1.293>I'll lay my head to any good man's hat,</A><br>
<A NAME=1.1.294>These oaths and laws will prove an idle scorn.</A><br>
<A NAME=1.1.295>Sirrah, come on.</A><br>
</blockquote>
<A NAME=speech100><b>COSTARD</b></a>
<blockquote>
<A NAME=1.1.296>I suffer for the truth, sir; for true it is, I was</A><br>
<A NAME=1.1.297>taken with Jaquenetta, and Jaquenetta is a true</A><br>
<A NAME=1.1.298>girl; and therefore welcome the sour cup of</A><br>
<A NAME=1.1.299>prosperity! Affliction may one day smile again; and</A><br>
<A NAME=1.1.300>till then, sit thee down, sorrow!</A><br>
<p><i>Exeunt</i></p>
<A NAME=1.1.301>LOVE'S LABOURS LOST</A><br>
</blockquote>
<h3>SCENE II. The same.</h3>
<p><blockquote>
<i>Enter DON ADRIANO DE ARMADO and MOTH</i>
</blockquote>
<blockquote>
<A NAME=1.2.1>DON</A><br>
</blockquote>
<A NAME=speech1><b>ADRIANO DE ARMADO</b></a>
<blockquote>
<A NAME=1.2.2>Boy, what sign is it when a man of great spirit</A><br>
<A NAME=1.2.3>grows melancholy?</A><br>
</blockquote>
<A NAME=speech2><b>MOTH</b></a>
<blockquote>
<A NAME=1.2.4>A great sign, sir, that he will look sad.</A><br>
<A NAME=1.2.5>DON</A><br>
</blockquote>
<A NAME=speech3><b>ADRIANO DE ARMADO</b></a>
<blockquote>
<A NAME=1.2.6>Why, sadness is one and the self-same thing, dear imp.</A><br>
</blockquote>
<A NAME=speech4><b>MOTH</b></a>
<blockquote>
<A NAME=1.2.7>No, no; O Lord, sir, no.</A><br>
<A NAME=1.2.8>DON</A><br>
</blockquote>
<A NAME=speech5><b>ADRIANO DE ARMADO</b></a>
<blockquote>
<A NAME=1.2.9>How canst thou part sadness and melancholy, my</A><br>
<A NAME=1.2.10>tender juvenal?</A><br>
</blockquote>
<A NAME=speech6><b>MOTH</b></a>
<blockquote>
<A NAME=1.2.11>By a familiar demonstration of the working, my tough senior.</A><br>
<A NAME=1.2.12>DON</A><br>
</blockquote>
<A NAME=speech7><b>ADRIANO DE ARMADO</b></a>
<blockquote>
<A NAME=1.2.13>Why tough senior? why tough senior?</A><br>
</blockquote>
<A NAME=speech8><b>MOTH</b></a>
<blockquote>
<A NAME=1.2.14>Why tender juvenal? why tender juvenal?</A><br>
<A NAME=1.2.15>DON</A><br>
</blockquote>
<A NAME=speech9><b>ADRIANO DE ARMADO</b></a>
<blockquote>
<A NAME=1.2.16>I spoke it, tender juvenal, as a congruent epitheton</A><br>
<A NAME=1.2.17>appertaining to thy young days, which we may</A><br>
<A NAME=1.2.18>nominate tender.</A><br>
</blockquote>
<A NAME=speech10><b>MOTH</b></a>
<blockquote>
<A NAME=1.2.19>And I, tough senior, as an appertinent title to your</A><br>
<A NAME=1.2.20>old time, which we may name tough.</A><br>
<A NAME=1.2.21>DON ADRIANO DE</A><br>
</blockquote>
<A NAME=speech11><b>ARMADO</b></a>
<blockquote>
<A NAME=1.2.22>Pretty and apt.</A><br>
</blockquote>
<A NAME=speech12><b>MOTH</b></a>
<blockquote>
<A NAME=1.2.23>How mean you, sir? I pretty, and my saying apt? or</A><br>
<A NAME=1.2.24>I apt, and my saying pretty?</A><br>
<A NAME=1.2.25>DON</A><br>
</blockquote>
<A NAME=speech13><b>ADRIANO DE ARMADO</b></a>
<blockquote>
<A NAME=1.2.26>Thou pretty, because little.</A><br>
</blockquote>
<A NAME=speech14><b>MOTH</b></a>
<blockquote>
<A NAME=1.2.27>Little pretty, because little. Wherefore apt?</A><br>
<A NAME=1.2.28>DON</A><br>
</blockquote>
<A NAME=speech15><b>ADRIANO DE ARMADO</b></a>
<blockquote>
<A NAME=1.2.29>And therefore apt, because quick.</A><br>
</blockquote>
<A NAME=speech16><b>MOTH</b></a>
<blockquote>
<A NAME=1.2.30>Speak you this in my praise, master?</A><br>
<A NAME=1.2.31>DON</A><br>
</blockquote>
<A NAME=speech17><b>ADRIANO DE ARMADO</b></a>
<blockquote>
<A NAME=1.2.32>In thy condign praise.</A><br>
</blockquote>
<A NAME=speech18><b>MOTH</b></a>
<blockquote>
<A NAME=1.2.33>I will praise an eel with the same praise.</A><br>
<A NAME=1.2.34>DON</A><br>
</blockquote>
<A NAME=speech19><b>ADRIANO DE ARMADO</b></a>
<blockquote>
<A NAME=1.2.35>What, that an eel is ingenious?</A><br>
</blockquote>
<A NAME=speech20><b>MOTH</b></a>
<blockquote>
<A NAME=1.2.36>That an eel is quick.</A><br>
<A NAME=1.2.37>DON</A><br>
</blockquote>
<A NAME=speech21><b>ADRIANO DE ARMADO</b></a>
<blockquote>
<A NAME=1.2.38>I do say thou art quick in answers: thou heatest my blood.</A><br>
</blockquote>
<A NAME=speech22><b>MOTH</b></a>
<blockquote>
<A NAME=1.2.39>I am answered, sir.</A><br>
<A NAME=1.2.40>DON</A><br>
</blockquote>
<A NAME=speech23><b>ADRIANO DE ARMADO</b></a>
<blockquote>
<A NAME=1.2.41>I love not to be crossed.</A><br>
</blockquote>
<A NAME=speech24><b>MOTH</b></a>
<blockquote>
<A NAME=1.2.42>[Aside] He speaks the mere contrary; crosses love not him.</A><br>
<A NAME=1.2.43>DON</A><br>
</blockquote>
<A NAME=speech25><b>ADRIANO DE ARMADO</b></a>
<blockquote>
<A NAME=1.2.44>I have promised to study three years with the duke.</A><br>
</blockquote>
<A NAME=speech26><b>MOTH</b></a>
<blockquote>
<A NAME=1.2.45>You may do it in an hour, sir.</A><br>
<A NAME=1.2.46>DON</A><br>
</blockquote>
<A NAME=speech27><b>ADRIANO DE ARMADO</b></a>
<blockquote>
<A NAME=1.2.47>Impossible.</A><br>
</blockquote>
<A NAME=speech28><b>MOTH</b></a>
<blockquote>
<A NAME=1.2.48>How many is one thrice told?</A><br>
<A NAME=1.2.49>DON</A><br>
</blockquote>
<A NAME=speech29><b>ADRIANO DE ARMADO</b></a>
<blockquote>
<A NAME=1.2.50>I am ill at reckoning; it fitteth the spirit of a tapster.</A><br>
</blockquote>
<A NAME=speech30><b>MOTH</b></a>
<blockquote>
<A NAME=1.2.51>You are a gentleman and a gamester, sir.</A><br>
<A NAME=1.2.52>DON</A><br>
</blockquote>
<A NAME=speech31><b>ADRIANO DE ARMADO</b></a>
<blockquote>
<A NAME=1.2.53>I confess both: they are both the varnish of a</A><br>
<A NAME=1.2.54>complete man.</A><br>
</blockquote>
<A NAME=speech32><b>MOTH</b></a>
<blockquote>
<A NAME=1.2.55>Then, I am sure, you know how much the gross sum of</A><br>
<A NAME=1.2.56>deuce-ace amounts to.</A><br>
<A NAME=1.2.57>DON</A><br>
</blockquote>
<A NAME=speech33><b>ADRIANO DE ARMADO</b></a>
<blockquote>
<A NAME=1.2.58>It doth amount to one more than two.</A><br>
</blockquote>
<A NAME=speech34><b>MOTH</b></a>
<blockquote>
<A NAME=1.2.59>Which the base vulgar do call three.</A><br>
<A NAME=1.2.60>DON</A><br>
</blockquote>
<A NAME=speech35><b>ADRIANO DE ARMADO</b></a>
<blockquote>
<A NAME=1.2.61>True.</A><br>
</blockquote>
<A NAME=speech36><b>MOTH</b></a>
<blockquote>
<A NAME=1.2.62>Why, sir, is this such a piece of study? Now here</A><br>
<A NAME=1.2.63>is three studied, ere ye'll thrice wink: and how</A><br>
<A NAME=1.2.64>easy it is to put 'years' to the word 'three,' and</A><br>
<A NAME=1.2.65>study three years in two words, the dancing horse</A><br>
<A NAME=1.2.66>will tell you.</A><br>
<A NAME=1.2.67>DON</A><br>
</blockquote>
<A NAME=speech37><b>ADRIANO DE ARMADO</b></a>
<blockquote>
<A NAME=1.2.68>A most fine figure!</A><br>
</blockquote>
<A NAME=speech38><b>MOTH</b></a>
<blockquote>
<A NAME=1.2.69>To prove you a cipher.</A><br>
<A NAME=1.2.70>DON</A><br>
</blockquote>
<A NAME=speech39><b>ADRIANO DE ARMADO</b></a>
<blockquote>
<A NAME=1.2.71>I will hereupon confess I am in love: and as it is</A><br>
<A NAME=1.2.72>base for a soldier to love, so am I in love with a</A><br>
<A NAME=1.2.73>base wench. If drawing my sword against the humour</A><br>
<A NAME=1.2.74>of affection would deliver me from the reprobate</A><br>
<A NAME=1.2.75>thought of it, I would take Desire prisoner, and</A><br>
<A NAME=1.2.76>ransom him to any French courtier for a new-devised</A><br>
<A NAME=1.2.77>courtesy. I think scorn to sigh: methinks I should</A><br>
<A NAME=1.2.78>outswear Cupid. Comfort, me, boy: what great men</A><br>
<A NAME=1.2.79>have been in love?</A><br>
</blockquote>
<A NAME=speech40><b>MOTH</b></a>
<blockquote>
<A NAME=1.2.80>Hercules, master.</A><br>
<A NAME=1.2.81>DON</A><br>
</blockquote>
<A NAME=speech41><b>ADRIANO DE ARMADO</b></a>
<blockquote>
<A NAME=1.2.82>Most sweet Hercules! More authority, dear boy, name</A><br>
<A NAME=1.2.83>more; and, sweet my child, let them be men of good</A><br>
<A NAME=1.2.84>repute and carriage.</A><br>
</blockquote>
<A NAME=speech42><b>MOTH</b></a>
<blockquote>
<A NAME=1.2.85>Samson, master: he was a man of good carriage, great</A><br>
<A NAME=1.2.86>carriage, for he carried the town-gates on his back</A><br>
<A NAME=1.2.87>like a porter: and he was in love.</A><br>
<A NAME=1.2.88>DON</A><br>
</blockquote>
<A NAME=speech43><b>ADRIANO DE ARMADO</b></a>
<blockquote>
<A NAME=1.2.89>O well-knit Samson! strong-jointed Samson! I do</A><br>
<A NAME=1.2.90>excel thee in my rapier as much as thou didst me in</A><br>
<A NAME=1.2.91>carrying gates. I am in love too. Who was Samson's</A><br>