-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path018.lyx
3404 lines (2676 loc) · 77 KB
/
018.lyx
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
#LyX 2.1 created this file. For more info see http://www.lyx.org/
\lyxformat 474
\begin_document
\begin_header
\textclass memoir
\use_default_options true
\master hpmor_volume1_16x23.lyx
\begin_modules
initials
\end_modules
\maintain_unincluded_children false
\language english
\language_package default
\inputencoding auto
\fontencoding global
\font_roman times
\font_sans default
\font_typewriter default
\font_math auto
\font_default_family default
\use_non_tex_fonts false
\font_sc false
\font_osf false
\font_sf_scale 100
\font_tt_scale 100
\graphics default
\default_output_format default
\output_sync 0
\bibtex_command default
\index_command default
\paperfontsize 11
\spacing single
\use_hyperref false
\papersize custom
\use_geometry true
\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 true
\justification true
\use_refstyle 1
\index Index
\shortcut idx
\color #008000
\end_index
\paperwidth 8.25in
\paperheight 10.75in
\leftmargin 0.5in
\topmargin 0.875in
\rightmargin 0.625in
\bottommargin 0.875in
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\paragraph_indentation default
\quotes_language english
\papercolumns 2
\papersides 2
\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 Chapter
Dominance Hierarchies
\end_layout
\begin_layout Initial
\begin_inset Argument 2
status open
\begin_layout Plain Layout
I
\end_layout
\end_inset
\begin_inset Argument 3
status open
\begin_layout Plain Layout
t
\end_layout
\end_inset
was breakfast time on Friday morning.
Harry took another huge bite out of his toast and then tried to remind
his brain that scarfing his breakfast wouldn't actually get him into the
dungeons any faster.
Anyway they had a full hour of study time between breakfast and the start
of Potions.
\end_layout
\begin_layout Standard
But dungeons! In Hogwarts! Harry's imagination was already sketching the
chasms, narrow bridges, torchlit sconces, and patches of glowing moss.
Would there be rats? Would there be
\emph on
dragons?
\end_layout
\begin_layout Standard
“Harry Potter,” said a quiet voice from behind him.
\end_layout
\begin_layout Standard
Harry looked over his shoulder and found himself beholding Ernie Macmillan,
smartly dressed in yellow-trimmed robes and looking a little worried.
\end_layout
\begin_layout Standard
“Neville thought I should warn you,” Ernie said in a low voice.
“I think he's right.
Be careful of the Potions Master in our session today.
The older Hufflepuffs told us that Professor Snape can be really nasty
to people he doesn't like, and he doesn't like most people who aren't Slytherin
s.
If you say anything smart to him it… it could be really bad for you, from
what I've heard.
Just keep your head down and don't give him any reason to notice you.”
\end_layout
\begin_layout Standard
There was a pause as Harry processed this, and then he lifted his eyebrows.
(Harry wished he could raise just one eyebrow, like Spock, but he'd never
been able to manage.) “Thanks,” Harry said.
“You might've just saved me a lot of trouble.”
\end_layout
\begin_layout Standard
Ernie nodded, and turned to go back to the Hufflepuff table.
\end_layout
\begin_layout Standard
Harry resumed eating his toast.
\end_layout
\begin_layout Standard
It was around four bites afterward that someone said “Pardon me,” and Harry
turned around to see an older Ravenclaw, looking a little worried
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
\end_layout
\begin_layout Standard
Some time later, Harry was finishing up his third plate of rashers.
(He'd learned to eat heavily at breakfast.
He could always eat lightly at lunch if he didn't end up using the Time-Turner.)
And there was yet another voice from behind him saying “Harry?”
\end_layout
\begin_layout Standard
“Yes,” Harry said wearily, “I'll try not to draw Professor Snape's attention
\begin_inset space ~
\end_inset
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
”
\end_layout
\begin_layout Standard
“Oh, that's hopeless,” said Fred.
\end_layout
\begin_layout Standard
“Completely hopeless,” said George.
\end_layout
\begin_layout Standard
“So we had the house elves bake you a cake,” said Fred.
\end_layout
\begin_layout Standard
“We're going to put one candle on it for every point you lose for Ravenclaw,”
said George.
\end_layout
\begin_layout Standard
“And have a party for you at the Gryffindor table during lunch,” said Fred.
\end_layout
\begin_layout Standard
“We hope that'll cheer you up afterward,” finished George.
\end_layout
\begin_layout Standard
Harry swallowed his last bite of rasher and turned around.
“All right,” said Harry.
“I wasn't going to ask this after Professor Binns, I really wasn't, but
if Professor Snape is
\emph on
that
\emph default
awful why hasn't he been fired?”
\end_layout
\begin_layout Standard
“Fired?” said Fred.
\end_layout
\begin_layout Standard
“You mean, let go?” said George.
\end_layout
\begin_layout Standard
“Yes,” Harry said.
“It's what you do to bad teachers.
You fire them.
Then you hire a better teacher instead.
You don't have unions or tenure here, right?”
\end_layout
\begin_layout Standard
Fred and George were frowning in much the same way that hunter-gatherer
tribal elders might frown if you tried to tell them about calculus.
\end_layout
\begin_layout Standard
“I don't know,” said Fred after a while.
“I never thought about that.”
\end_layout
\begin_layout Standard
“Me neither,” said George.
\end_layout
\begin_layout Standard
“Yeah,” said Harry, “I get that a lot.
See you at lunch, guys, and don't blame me if there aren't any candles
on that cake.”
\end_layout
\begin_layout Standard
Fred and George both laughed, as if Harry had said something funny, and
bowed to him and headed back toward Gryffindor.
\end_layout
\begin_layout Standard
Harry turned back to the breakfast table and grabbed a cupcake.
His stomach already felt full, but he had a feeling this morning might
use a lot of calories.
\end_layout
\begin_layout Standard
As he ate his cupcake, Harry thought of the worst teacher he'd met so far,
Professor Binns of History.
Professor Binns was a ghost.
From what Hermione had said about ghosts, it didn't seem likely that they
were fully self-aware.
There were no famous discoveries made by ghosts, or much of any original
work, no matter who they'd been in life.
Ghosts tended to have trouble remembering the current century.
Hermione had said they were like accidental portraits, impressed into the
surrounding matter by a burst of psychic energy accompanying a wizard's
sudden death.
\end_layout
\begin_layout Standard
Harry had run into some stupid teachers during his abortive forays into
standard Muggle education
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
his father had been a lot pickier when it came to selecting grad students
as tutors, of course
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
but History class was the first time he'd encountered a teacher who literally
wasn't sentient.
\end_layout
\begin_layout Standard
And it showed, too.
Harry had given up after five minutes and started reading a textbook.
When it became clear that “Professor Binns” wasn't going to object, Harry
had also reached into his pouch and gotten earplugs.
\end_layout
\begin_layout Standard
Did ghosts not require a salary? Was that it? Or was it literally impossible
to fire anyone in Hogwarts
\emph on
even if they died?
\end_layout
\begin_layout Standard
Now it seemed that Professor Snape was going about being absolutely awful
to everyone who wasn't a Slytherin and it hadn't even
\emph on
occurred
\emph default
to anyone to terminate his contract.
\end_layout
\begin_layout Standard
And the Headmaster had set fire to a chicken.
\end_layout
\begin_layout Standard
“Excuse me,” came a worried voice from behind him.
\end_layout
\begin_layout Standard
“I swear,” Harry said without turning around, “this place is almost eight
and a half percent as bad as what Dad says about Oxford.”
\end_layout
\begin_layout Quote
\align center
\begin_inset Graphics
filename fleur.png
scale 50
\end_inset
\end_layout
\begin_layout Standard
Harry stamped down the stone corridors, looking affronted, annoyed, and
infuriated all at once.
\end_layout
\begin_layout Standard
“Dungeons!” Harry hissed.
“
\emph on
Dungeons!
\emph default
These are not dungeons! This is a basement! A
\emph on
basement!
\emph default
”
\end_layout
\begin_layout Standard
Some of the Ravenclaw girls gave him odd looks.
The boys were all used to him by now.
\end_layout
\begin_layout Standard
It seemed that the level in which the Potions classroom was located was
called the “dungeons” for no better reason than that it was below ground
and slightly colder than the main castle.
\end_layout
\begin_layout Standard
In
\emph on
Hogwarts!
\emph default
In
\emph on
Hogwarts!
\emph default
Harry had been waiting his whole life and now he was
\emph on
still
\emph default
waiting and if there was anywhere
\emph on
on the face of the Earth
\emph default
that had decent dungeons it ought to be Hogwarts! Was Harry going to have
to build his own castle if he wanted to see one little bottomless abyss?
\end_layout
\begin_layout Standard
A short time later they got to the actual Potions classroom and Harry cheered
up considerably.
\end_layout
\begin_layout Standard
The Potions classroom had strange preserved creatures floating in huge jars
on shelves that covered every centimeter of wall space between the closets.
Harry had gotten far enough along in his reading now that he could actually
identify some of the creatures, like the Zabriskan Fontema.
Albeit the fifty-centimeter spider
\emph on
looked
\emph default
like an Acromantula but it was too small to
\emph on
be
\emph default
one.
He'd tried asking Hermione, but she hadn't seemed very interested in looking
anywhere near where he was pointing.
\end_layout
\begin_layout Standard
Harry was looking at a large dust ball with eyes and feet when the assassin
swept into the room.
\end_layout
\begin_layout Standard
That was the first thought that crossed Harry's mind when he saw Professor
Severus Snape.
There was something quiet and deadly about the way the man stalked between
the children's desks.
His robes were unkempt, his hair spotted and greasy.
There was something about him that seemed reminiscent of Lucius, although
the two of them looked nothing remotely alike, and you got the impression
that where Lucius would kill you with flawless elegance, this man would
simply kill you.
\end_layout
\begin_layout Standard
“Sit down,” said Professor Severus Snape.
“Now.”
\end_layout
\begin_layout Standard
Harry and a few other children who had been standing around talking to each
other scrambled for desks.
Harry had planned on ending up next to Her\SpecialChar \-
mione but somehow he found himself
sitting down in the nearest empty desk next to Justin Finch-Fletchley (it
was a Doubles session, Ravenclaw and Hufflepuff) which put him two desks
to the left of Hermione.
\end_layout
\begin_layout Standard
Severus seated himself behind the teacher's desk, and without the slightest
transition or introduction, said, “Hannah Abbott.”
\end_layout
\begin_layout Standard
“Here,” said Hannah in a somewhat trembling voice.
\end_layout
\begin_layout Standard
“Susan Bones.”
\end_layout
\begin_layout Standard
“Present.”
\end_layout
\begin_layout Standard
And so it went, no one daring to say a word in edgewise, until:
\end_layout
\begin_layout Standard
“Ah, yes.
Harry Potter.
Our new…
\emph on
celebrity.
\emph default
“
\end_layout
\begin_layout Standard
“The celebrity is present,
\emph on
sir
\emph default
.”
\end_layout
\begin_layout Standard
Half the class flinched, and some of the smarter ones suddenly looked like
they wanted to run out the door while the classroom was still there.
\end_layout
\begin_layout Standard
Severus smiled in an anticipatory sort of way and called the next name on
his list.
\end_layout
\begin_layout Standard
Harry gave a mental sigh.
That had happened way too fast for him to do anything about it.
Oh well.
Clearly this man already didn't like him, for whatever reason.
And when Harry thought about it, better by far that this Potions professor
should pick on
\emph on
him
\emph default
rather than, say, Neville or Hermione.
Harry was a lot better able to defend himself.
Yep, probably all for the best.
\end_layout
\begin_layout Standard
When full attendance had been taken, Severus swept his gaze over the full
class.
His eyes were as empty as a night sky without stars.
\end_layout
\begin_layout Standard
“You are here,” Severus said in a quiet voice which the students at back
strained to hear, “to learn the subtle science and exact art of potionmaking.
As there is little foolish wand-waving here, many of you will hardly believe
this is magic.
I don't expect you will really understand the beauty of the softly simmering
cauldron with its shimmering fumes, the delicate power of liquids that
creep through human veins,” this in a rather caressing, gloating tone,
“bewitching the mind, ensnaring the senses,” this was just getting creepier
and creepier.
“I can teach you how to bottle fame, brew glory, even stopper death
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
if you aren't as great a pack of fools as I usually have to teach.”
\end_layout
\begin_layout Standard
Severus somehow seemed to notice the look of skepticism on Harry's face,
or at least his eyes suddenly jumped to where Harry was sitting.
\end_layout
\begin_layout Standard
“Potter!” snapped the Potions professor.
“What would I get if I added powdered root of asphodel to an infusion of
wormwood?”
\end_layout
\begin_layout Standard
Harry blinked.
“Was that in
\emph on
Magical Drafts and Potions
\emph default
?” he said.
“I just finished reading it, and I don't remember anything which used wormwood
\begin_inset space ~
\end_inset
--”
\end_layout
\begin_layout Standard
Hermione's hand went up and Harry shot her a glare which caused her to raise
her hand even higher.
\end_layout
\begin_layout Standard
“Tut, tut,” Severus said silkily.
“Fame clearly isn't everything.”
\end_layout
\begin_layout Standard
“Really?” Harry said.
“But you just told us you'd teach us how to bottle fame.
Say, how
\emph on
does
\emph default
that work, exactly? You drink it and turn into a celebrity?”
\end_layout
\begin_layout Standard
Three-quarters of the class flinched.
\end_layout
\begin_layout Standard
Hermione's hand was dropping slowly back down.
Well, that wasn't surprising.
She might be his rival, but she wasn't the sort of girl who would play
along after it became clear that the professor was deliberately trying
to humiliate him.
\end_layout
\begin_layout Standard
Harry was trying hard to keep control of his temper.
The first rejoinder that had crossed his mind was `Abracadabra'.
\end_layout
\begin_layout Standard
“Let's try again,” said Severus.
“Potter, where would you look if I told you to find me a bezoar?”
\end_layout
\begin_layout Standard
“That's not in the textbook either,” Harry said, “but in one Muggle book
I read that a trichinobezoar is a mass of solidified hair found in a human
stomach, and Muggles used to believe it would cure any poison
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
”
\end_layout
\begin_layout Standard
“Wrong,” Severus said.
“A bezoar is found in the stomach of a goat, it is not made of hair, and
it will cure most poisons but not all.”
\end_layout
\begin_layout Standard
“I didn't
\emph on
say
\emph default
it would, I said that was what I read in one Muggle book
\begin_inset space ~
\end_inset
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
”
\end_layout
\begin_layout Standard
“No one here is interested in your
\emph on
pathetic
\emph default
Muggle books.
Final try.
What is the difference, Potter, between monksblood and wolfsbane?”
\end_layout
\begin_layout Standard
That did it.
\end_layout
\begin_layout Standard
“You know,” Harry said icily, “in one of my quite
\emph on
fascinating
\emph default
Muggle books, they describe a study in which people managed to make themselves
look very smart by asking questions about random facts that only they knew.
Apparently the onlookers only noticed that the askers knew and the answerers
didn't, and failed to adjust for the unfairness of the underlying game.
So, Professor, can you tell me how many electrons are in the outermost
orbital of a carbon atom?”
\end_layout
\begin_layout Standard
Severus's smile widened.
“Four,” he said.
“It is a useless fact which no one should bother writing down, however.
And for your information, Potter, asphodel and wormwood make a sleeping
potion so powerful it is known as the Draught of Living Death.
As for monkshood and wolfsbane, they are the same plant, which also goes
by the name of aconite, as you would know if you had read
\emph on
One Thousand Magical Herbs and Fungi.
\emph default
Thought you didn't need to open the book before coming, eh, Potter? All
the rest of you should be copying that down so that you will not be as
ignorant as him.” Severus paused, looking quite pleased with himself.
“And that will be… five points? No, let us make it an even ten points from
Ravenclaw for backchat.”
\end_layout
\begin_layout Standard
Hermione gasped, along with a number of others.
\end_layout
\begin_layout Standard
“Professor Severus Snape,” Harry bit out.
“I know of nothing which I have done to earn your enmity.
If there is some problem you have with me which I do not know about, I
suggest we
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
”
\end_layout
\begin_layout Standard
“Shut up, Potter.
Ten more points from Ravenclaw.
The rest of you, open your books to page 3.”
\end_layout
\begin_layout Standard
There was only a slight, only a very faint burning sensation in the back
of Harry's throat, and no moisture at all in his eyes.
If crying was not an effective strategy for destroying this Potions professor
then there was no point in crying.
\end_layout
\begin_layout Standard
Slowly, Harry sat up very straight.
All his blood seemed to have been drained away and replaced with liquid
nitrogen.
He knew he'd been trying to keep his temper but he couldn't seem to remember
why.
\end_layout
\begin_layout Standard
“Harry,” whispered Hermione frantically from two desks over, “stop, please,
it's all right, we won't count it
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
”
\end_layout
\begin_layout Standard
“Talking in class, Granger? Three
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
”
\end_layout
\begin_layout Standard
“So,” said a voice colder than zero Kelvin, “how does one go about filing
a formal complaint against an abusive professor? Does one talk to the Deputy
Headmistress, write a letter to the Board of Governors… would you care
to explain how it works?”
\end_layout
\begin_layout Standard
The class was utterly frozen.
\end_layout
\begin_layout Standard
“Detention for one month, Potter,” Severus said, smiling even more broadly.
\end_layout
\begin_layout Standard
“I decline to recognize your authority as a teacher and I will not serve
any detention you give.”
\end_layout
\begin_layout Standard
People stopped breathing.
\end_layout
\begin_layout Standard
Severus's smile vanished.
“Then you will be
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
” his voice stopped short.
\end_layout
\begin_layout Standard
“Expelled, were you about to say?” Harry, on the other hand, was now smiling
thinly.
“But then you seemed to doubt your ability to carry out the threat, or
fear the consequences if you did.
I, on the other hand, neither doubt nor fear the prospect of finding a
school with less abusive professors.
Or perhaps I should hire private tutors, as is my accustomed practice,
and be taught at my full learning speed.
I have enough money in my vault.
Something about bounties on a Dark Lord I defeated.
But there
\emph on
are
\emph default
teachers at Hogwarts who I rather like, so I think it will be easier if
I find some way to get rid of you instead.”
\end_layout
\begin_layout Standard
“Get rid of me?” Severus said, now also smiling thinly.
“What an amusing conceit.
How do you suppose you will do that, Potter?”
\end_layout
\begin_layout Standard
“I understand there have been a number of complaints about you from students
and their parents,” a guess but a safe one, “which leaves only the question
of why you're not already gone.
Is Hogwarts too financially strapped to afford a real Potions professor?
I could chip in, if so.
I'm sure they could find a better class of teacher if they offered double
your current salary.”
\end_layout
\begin_layout Standard
Two poles of ice radiated freezing winter across the classroom.
\end_layout
\begin_layout Standard
“You will find,” Severus said softly, “that the Board of Governers is not
the slightest bit sympathetic to your offer.”
\end_layout
\begin_layout Standard
“Lucius…” Harry said.
“
\emph on
That's
\emph default
why you're still here.
Perhaps I should chat with Lucius about that.
I believe he desires to meet with me.
I wonder if I have anything he wants?”
\end_layout
\begin_layout Standard
Hermione frantically shook her head.
Harry noticed out of the corner of his eye, but his attention was all on
Severus.
\end_layout
\begin_layout Standard
“You are a very foolish boy,” Severus said.
He wasn't smiling at all, now.
“You have nothing that Lucius values more than my friendship.
And if you did, I have other allies.” His voice grew hard.
“And I find it increasingly unlikely that you were not Sorted into Slytherin.
How was it that you managed to stay out of my House? Ah, yes, because the
Sorting Hat claimed it was
\emph on
joking
\emph default
.
For the first time in recorded history.
What were you really
\emph on
chatting
\emph default
about with the Sorting Hat, Potter? Did you have something that it wanted?”
\end_layout
\begin_layout Standard
Harry stared into Severus's cold gaze and remembered that the Sorting Hat
had warned him not to meet anyone's eyes while thinking about
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
Harry dropped his gaze to Severus's desk.
\end_layout
\begin_layout Standard
“You seem oddly reluctant to look me in the eyes, Potter!”
\end_layout
\begin_layout Standard
A shock of sudden understanding
\begin_inset ERT
status open
\begin_layout Plain Layout
--
\end_layout
\end_inset
“So it was
\emph on
you
\emph default
the Sorting Hat was warning me about!”
\end_layout
\begin_layout Standard
“What?” said Severus's voice, sounding genuinely surprised, though of course
Harry didn't look at his face.
\end_layout
\begin_layout Standard
Harry got up out of his desk.
\end_layout
\begin_layout Standard
“Sit down, Potter,” said an angry voice from somewhere he wasn't looking.
\end_layout
\begin_layout Standard
Harry ignored it, and looked around the classroom.
“I have no intention of letting one unprofessional teacher ruin my time
at Hogwarts,” Harry said with deadly calm.
“I think I'll take my leave of this class, and either hire a tutor to teach
me Potions while I'm here, or if the Board is really that locked up, learn
over the summer.
If any of you decide that you don't care to be bullied by this man, my
sessions will be open to you.”
\end_layout
\begin_layout Standard
“
\emph on
Sit down, Potter!
\emph default
”
\end_layout
\begin_layout Standard
Harry strode across the room and grasped the doorknob.
\end_layout