[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]
Subject: Re: [docbook-publishers] slight problem with publishers.rnc
//Folks, here's an update on the publishers.rnc. I figured out the error message (forgot the element decl for linegroup!). In my example content, there are some stage directions within the dialogue. As such, I think we should allow para in dialogue. Are there others that should be allowed? Is there a better pattern that we should allow (db.all.blocks or db.para.blocks, perhaps?) Best regards, --Scott Scott Hudson wrote: > Folks, > > still running into some issues with the RNC. Please find the RNC and > content sample attached. I'm getting the following errors: > Location: 709:24 > Description: unfinished element "dialogue": "((mediaobject | (line)+ | > line))+" required to finish the element > > Location: 711:36 > Description: unknown element "linegroup" from namespace > "http://docbook.org/ns/docbook" > > --Scott > > * Scott Hudson* > / Senior XML Architect/ > > scott.hudson@FlatironsSolutions.com > <mailto:scott.hudson@FlatironsSolutions.com> > > > > O: 303.542.2146 > > C: 303.332.1883 > > F: 303.544.0522 > > > > www.FlatironsSolutions.com <http://www.flatironssolutions.com/> > > / An Inc. 500 Company/ > > / / > > > > Dave Pawson wrote: > >> 2008/5/22 Scott Hudson <scott.hudson@flatironssolutions.com>: >> >> >>> Ahem. Looks like we forgot to define where dialogue and poetry should be >>> allowed! Try to validate the attached sample and you get: >>> unknown element "dialogue" from namespace "http://docbook.org/ns/docbook" >>> >>> Suggestions? >>> >>> >> Anywhere where a 'major' block can go. Should be as a sibling to the >> list elements? >> Para won't do, since I can put a para in a list, table cell etc. >> >> db.nopara.blocks would be right... except it's included in db.para (yuk) >> db.all.blocks perhaps >> or db.formal.blocks (are they the same class as the 'formal' set? Both >> can have titles) >> >> regards >> >> >> -- >> Dave Pawson >> XSLT XSL-FO FAQ. >> http://www.dpawson.co.uk >> >>
# This file is a customization of DocBook V5.0 created by the
# OASIS DocBook Publishers Subcommittee.
#
# Copyright 1992-2007 HaL Computer Systems, Inc.,
# O'Reilly & Associates, Inc., ArborText, Inc., Fujitsu Software
# Corporation, Norman Walsh, Sun Microsystems, Inc., and the
# Organization for the Advancement of Structured Information
# Standards (OASIS).
#
# Release: $Id: publishers.rnc 7466 2007-09-27 14:03:55Z shudson310 $
#
# Permission to use, copy, modify and distribute the DocBook schema
# and its accompanying documentation for any purpose and without fee
# is hereby granted in perpetuity, provided that the above copyright
# notice and this paragraph appear in all copies. The copyright
# holders make no representation about the suitability of the schema
# for any purpose. It is provided "as is" without expressed or implied
# warranty.
#
# If you modify the DocBook schema in any way, label your schema as a
# variant of DocBook. See the reference documentation
# (http://docbook.org/tdg5/en/html/ch05.html#s-notdocbook)
# for more information.
#
# Please direct all questions, bug reports, or suggestions for changes
# to the docbook@lists.oasis-open.org mailing list. For more
# information, see http://www.oasis-open.org/docbook/.
#
# ======================================================================
namespace ctrl = "http://nwalsh.com/xmlns/schema-control/"
namespace rng = "http://relaxng.org/ns/structure/1.0"
namespace s = "http://www.ascc.net/xml/schematron"
namespace db = "http://docbook.org/ns/docbook"
default namespace = "http://docbook.org/ns/docbook"
start = db.set
| db.book
| db.divisions
| db.components
| db.navigation.components
| db.section
| db.para
include "core.rnc" {
start |= notAllowed
db.sidebar |= notAllowed
db.person |= notAllowed
db.org |= notAllowed
db.parameter = notAllowed
db.info.extension |= notAllowed
db.extension.blocks |= notAllowed
}
include "dc.rnc" {start |= notAllowed}
include "dcterms.rnc" {start |= notAllowed}
include "dcmitype.rnc"
db.info.extension =
db._any
| dc.title
| dc.creator
| dc.subject
| dc.description
| dc.publisher
| dc.contributor
| dc.date
| dc.type
| dc.format
| dc.identifier
| dc.source
| dc.language
| dc.relation
| dc.coverage
| dc.rights
| dcterms.alternative
| dcterms.tableOfContents
| dcterms.abstract
| dcterms.created
| dcterms.valid
| dcterms.available
| dcterms.issued
| dcterms.modified
| dcterms.dateAccepted
| dcterms.dateCopyrighted
| dcterms.dateSubmitted
| dcterms.extent
| dcterms.medium
| dcterms.isVersionOf
| dcterms.hasVersion
| dcterms.isReplacedBy
| dcterms.replaces
| dcterms.isRequiredBy
| dcterms.requires
| dcterms.isPartOf
| dcterms.hasPart
| dcterms.isReferencedBy
| dcterms.references
| dcterms.isFormatOf
| dcterms.hasFormat
| dcterms.conformsTo
| dcterms.spatial
| dcterms.temporal
| dcterms.audience
| dcterms.accrualMethod
| dcterms.accrualPeriodicity
| dcterms.accrualPolicy
| dcterms.instructionalMethod
| dcterms.provenance
| dcterms.rightsHolder
| dcterms.mediator
| dcterms.educationLevel
| dcterms.accessRights
| dcterms.license
| dcterms.bibliographicCitation
db.extension.blocks = db.dialogue | db.poetry
db.sidebar =
element sidebar {
db.sidebar.attlist,
db.sidebar.info,
db.all.blocks+, db.recursive.sections*
}
db.person =
element person {
db.person.attlist,
db.personname,
(db.address|db.affiliation|db.email|db.uri|db.personblurb|db.mediaobject)*
}
db.org =
element org {
db.org.attlist,
db.orgname,
(db.address|db.affiliation|db.email|db.uri|db.orgdiv|db.mediaobject)*
}
db.speaker.role.attribute = attribute role { text }
db.speaker =
element speaker {
(db.speaker.role.attribute?
| db.person
| text)*
}
db.line =
element line {
db.all.inlines
}
db.linegroup =
element linegroup {
db.speaker? & db.line+
}
db.poetry =
element poetry {
db.poetry.attlist,
db.poetry.info?,
(db.mediaobject|db.linegroup|db.line)+
}
db.dialogue =
element dialogue {
db.dialogue.attlist,
db.dialogue.info?,
(db.mediaobject|db.linegroup|db.line)+
}
db.dialogue.info =
db._info.title.only
db.dialogue.role.attribute = attribute role { text }
db.dialogue.attlist =
db.dialogue.role.attribute?
& db.common.attributes
& db.common.linking.attributes
db.poetry.info =
db._info.title.only
db.poetry.role.attribute = attribute role { text }
db.poetry.attlist =
db.poetry.role.attribute?
& db.common.attributes
& db.common.linking.attributes
<?xml version="1.0"?>
<?oxygen RNGSchema="../../../../../../../../standards/DocBook/sourceforge/src/publishers.rnc" type="compact"?>
<book xmlns="http://docbook.org/ns/docbook" version="5.0" role="play">
<title>The Tragedy of Coriolanus</title>
<info>
<author><personname><firstname>William</firstname><surname>Shakespeare</surname></personname></author>
<legalnotice>
<para>ASCII text placed in the public domain by Moby Lexical Tools, 1992.</para>
<para>source SGML markup by Jon Bosak, 1992-1994.</para>
<para>source XML version by Jon Bosak, 1996-1999.</para>
<para>The XML markup in this version is derived from coriolan.xml Copyright © 1999 Jon Bosak.
This work may freely be distributed on condition that it not be
modified or altered in any way.</para>
</legalnotice>
<copyright><year>2008</year><holder>Scott Hudson</holder></copyright>
</info>
<preface>
<title>Dramatis Personae</title>
<para><personname role="persona">CAIUS MARCIUS</personname>, Afterwards <personname role="persona">CAIUS MARCIUS CORIOLANUS</personname>.</para>
<simplelist columns="2"><member>
<personname role="persona">TITUS LARTIUS</personname>
<personname role="persona">COMINIUS</personname>
</member>
<member>generals against the Volscians.</member>
</simplelist>
<para><personname role="persona">MENENIUS AGRIPPA</personname>, friend to Coriolanus.</para>
<simplelist columns="2">
<member><personname role="persona">SICINIUS VELUTUS</personname>
<personname role="persona">JUNIUS BRUTUS</personname></member>
<member>tribunes of the people.</member>
</simplelist>
<para>Young <personname role="persona">MARCUS</personname>, son to Coriolanus.</para>
<para><personname role="persona">A Roman Herald. </personname></para>
<para><personname role="persona">TULLUS AUFIDIUS, general of the Volscians. </personname></para>
<para><personname role="persona">Lieutenant to Aufidius. </personname></para>
<para><personname role="persona">Conspirators with Aufidius.</personname></para>
<para><personname role="persona">A Citizen of Antium.</personname></para>
<para><personname role="persona">Two Volscian Guards.</personname></para>
<para><personname role="persona">VOLUMNIA, mother to Coriolanus.</personname></para>
<para><personname role="persona">VIRGILIA, wife to Coriolanus.</personname></para>
<para><personname role="persona">VALERIA, friend to Virgilia.</personname></para>
<para><personname role="persona">Gentlewoman, attending on Virgilia. </personname></para>
<para><personname role="persona">Roman and Volscian Senators, Patricians, Aediles, Lictors, Soldiers, Citizens, Messengers, Servants to Aufidius, and other Attendants.</personname></para>
<para role="SCNDESCR">SCENE Rome and the neighbourhood; Corioli and the neighbourhood; Antium.</para>
</preface>
<chapter role="act"><title>ACT I</title>
<section role="scene"><title>SCENE I. Rome. A street.</title>
<para role="stagedir">Enter a company of mutinous Citizens, with staves,
clubs, and other weapons</para>
<dialogue role="speech"><linegroup>
<speaker role="speaker">First Citizen</speaker>
<line>Before we proceed any further, hear me speak.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup>
<speaker role="speaker">All</speaker>
<line>Speak, speak.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Citizen</speaker>
<line>You are all resolved rather to die than to famish?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">All</speaker>
<line>Resolved. resolved.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Citizen</speaker>
<line>First, you know Caius Marcius is chief enemy to the people.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">All</speaker>
<line>We know't, we know't.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Citizen</speaker>
<line>Let us kill him, and we'll have corn at our own price.</line>
<line>Is't a verdict?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">All</speaker>
<line>No more talking on't; let it be done: away, away!</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">Second Citizen</speaker>
<line>One word, good citizens.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Citizen</speaker>
<line>We are accounted poor citizens, the patricians good.</line>
<line>What authority surfeits on would relieve us: if they</line>
<line>would yield us but the superfluity, while it were</line>
<line>wholesome, we might guess they relieved us humanely;</line>
<line>but they think we are too dear: the leanness that</line>
<line>afflicts us, the object of our misery, is as an</line>
<line>inventory to particularise their abundance; our</line>
<line>sufferance is a gain to them Let us revenge this with</line>
<line>our pikes, ere we become rakes: for the gods know I</line>
<line>speak this in hunger for bread, not in thirst for revenge.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">Second Citizen</speaker>
<line>Would you proceed especially against Caius Marcius?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">All</speaker>
<line>Against him first: he's a very dog to the commonalty.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">Second Citizen</speaker>
<line>Consider you what services he has done for his country?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Citizen</speaker>
<line>Very well; and could be content to give him good</line>
<line>report fort, but that he pays himself with being proud.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">Second Citizen</speaker>
<line>Nay, but speak not maliciously.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Citizen</speaker>
<line>I say unto you, what he hath done famously, he did</line>
<line>it to that end: though soft-conscienced men can be</line>
<line>content to say it was for his country he did it to</line>
<line>please his mother and to be partly proud; which he</line>
<line>is, even till the altitude of his virtue.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">Second Citizen</speaker>
<line>What he cannot help in his nature, you account a</line>
<line>vice in him. You must in no way say he is covetous.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Citizen</speaker>
<line>If I must not, I need not be barren of accusations;</line>
<line>he hath faults, with surplus, to tire in repetition.</line>
<para role="stagedir">Shouts within</para>
<line>What shouts are these? The other side o' the city</line>
<line>is risen: why stay we prating here? to the Capitol!</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">All</speaker>
<line>Come, come.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Citizen</speaker>
<line>Soft! who comes here?</line>
</linegroup></dialogue>
<para role="stagedir">Enter MENENIUS AGRIPPA</para>
<dialogue role="speech"><linegroup><speaker role="speaker">Second Citizen</speaker>
<line>Worthy Menenius Agrippa; one that hath always loved</line>
<line>the people.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Citizen</speaker>
<line>He's one honest enough: would all the rest were so!</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>What work's, my countrymen, in hand? where go you</line>
<line>With bats and clubs? The matter? speak, I pray you.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Citizen</speaker>
<line>Our business is not unknown to the senate; they have</line>
<line>had inkling this fortnight what we intend to do,</line>
<line>which now we'll show 'em in deeds. They say poor</line>
<line>suitors have strong breaths: they shall know we</line>
<line>have strong arms too.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>Why, masters, my good friends, mine honest neighbours,</line>
<line>Will you undo yourselves?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Citizen</speaker>
<line>We cannot, sir, we are undone already.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>I tell you, friends, most charitable care</line>
<line>Have the patricians of you. For your wants,</line>
<line>Your suffering in this dearth, you may as well</line>
<line>Strike at the heaven with your staves as lift them</line>
<line>Against the Roman state, whose course will on</line>
<line>The way it takes, cracking ten thousand curbs</line>
<line>Of more strong link asunder than can ever</line>
<line>Appear in your impediment. For the dearth,</line>
<line>The gods, not the patricians, make it, and</line>
<line>Your knees to them, not arms, must help. Alack,</line>
<line>You are transported by calamity</line>
<line>Thither where more attends you, and you slander</line>
<line>The helms o' the state, who care for you like fathers,</line>
<line>When you curse them as enemies.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Citizen</speaker>
<line>Care for us! True, indeed! They ne'er cared for us</line>
<line>yet: suffer us to famish, and their store-houses</line>
<line>crammed with grain; make edicts for usury, to</line>
<line>support usurers; repeal daily any wholesome act</line>
<line>established against the rich, and provide more</line>
<line>piercing statutes daily, to chain up and restrain</line>
<line>the poor. If the wars eat us not up, they will; and</line>
<line>there's all the love they bear us.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>Either you must</line>
<line>Confess yourselves wondrous malicious,</line>
<line>Or be accused of folly. I shall tell you</line>
<line>A pretty tale: it may be you have heard it;</line>
<line>But, since it serves my purpose, I will venture</line>
<line>To stale 't a little more.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Citizen</speaker>
<line>Well, I'll hear it, sir: yet you must not think to</line>
<line>fob off our disgrace with a tale: but, an 't please</line>
<line>you, deliver.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>There was a time when all the body's members</line>
<line>Rebell'd against the belly, thus accused it:</line>
<line>That only like a gulf it did remain</line>
<line>I' the midst o' the body, idle and unactive,</line>
<line>Still cupboarding the viand, never bearing</line>
<line>Like labour with the rest, where the other instruments</line>
<line>Did see and hear, devise, instruct, walk, feel,</line>
<line>And, mutually participate, did minister</line>
<line>Unto the appetite and affection common</line>
<line>Of the whole body. The belly answer'd--</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Citizen</speaker>
<line>Well, sir, what answer made the belly?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>Sir, I shall tell you. With a kind of smile,</line>
<line>Which ne'er came from the lungs, but even thus--</line>
<line>For, look you, I may make the belly smile</line>
<line>As well as speak--it tauntingly replied</line>
<line>To the discontented members, the mutinous parts</line>
<line>That envied his receipt; even so most fitly</line>
<line>As you malign our senators for that</line>
<line>They are not such as you.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Citizen</speaker>
<line>Your belly's answer? What!</line>
<line>The kingly-crowned head, the vigilant eye,</line>
<line>The counsellor heart, the arm our soldier,</line>
<line>Our steed the leg, the tongue our trumpeter.</line>
<line>With other muniments and petty helps</line>
<line>In this our fabric, if that they--</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>What then?</line>
<line>'Fore me, this fellow speaks! What then? what then?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Citizen</speaker>
<line>Should by the cormorant belly be restrain'd,</line>
<line>Who is the sink o' the body,--</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>Well, what then?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Citizen</speaker>
<line>The former agents, if they did complain,</line>
<line>What could the belly answer?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>I will tell you</line>
<line>If you'll bestow a small--of what you have little--</line>
<line>Patience awhile, you'll hear the belly's answer.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Citizen</speaker>
<line>Ye're long about it.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>Note me this, good friend;</line>
<line>Your most grave belly was deliberate,</line>
<line>Not rash like his accusers, and thus answer'd:</line>
<line>'True is it, my incorporate friends,' quoth he,</line>
<line>'That I receive the general food at first,</line>
<line>Which you do live upon; and fit it is,</line>
<line>Because I am the store-house and the shop</line>
<line>Of the whole body: but, if you do remember,</line>
<line>I send it through the rivers of your blood,</line>
<line>Even to the court, the heart, to the seat o' the brain;</line>
<line>And, through the cranks and offices of man,</line>
<line>The strongest nerves and small inferior veins</line>
<line>From me receive that natural competency</line>
<line>Whereby they live: and though that all at once,</line>
<line>You, my good friends,'--this says the belly, mark me,--</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Citizen</speaker>
<line>Ay, sir; well, well.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>'Though all at once cannot</line>
<line>See what I do deliver out to each,</line>
<line>Yet I can make my audit up, that all</line>
<line>From me do back receive the flour of all,</line>
<line>And leave me but the bran.' What say you to't?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Citizen</speaker>
<line>It was an answer: how apply you this?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>The senators of Rome are this good belly,</line>
<line>And you the mutinous members; for examine</line>
<line>Their counsels and their cares, digest things rightly</line>
<line>Touching the weal o' the common, you shall find</line>
<line>No public benefit which you receive</line>
<line>But it proceeds or comes from them to you</line>
<line>And no way from yourselves. What do you think,</line>
<line>You, the great toe of this assembly?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Citizen</speaker>
<line>I the great toe! why the great toe?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>For that, being one o' the lowest, basest, poorest,</line>
<line>Of this most wise rebellion, thou go'st foremost:</line>
<line>Thou rascal, that art worst in blood to run,</line>
<line>Lead'st first to win some vantage.</line>
<line>But make you ready your stiff bats and clubs:</line>
<line>Rome and her rats are at the point of battle;</line>
<line>The one side must have bale.</line>
<para role="stagedir">Enter CAIUS MARCIUS</para>
<line>Hail, noble Marcius!</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>Thanks. What's the matter, you dissentious rogues,</line>
<line>That, rubbing the poor itch of your opinion,</line>
<line>Make yourselves scabs?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Citizen</speaker>
<line>We have ever your good word.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>He that will give good words to thee will flatter</line>
<line>Beneath abhorring. What would you have, you curs,</line>
<line>That like nor peace nor war? the one affrights you,</line>
<line>The other makes you proud. He that trusts to you,</line>
<line>Where he should find you lions, finds you hares;</line>
<line>Where foxes, geese: you are no surer, no,</line>
<line>Than is the coal of fire upon the ice,</line>
<line>Or hailstone in the sun. Your virtue is</line>
<line>To make him worthy whose offence subdues him</line>
<line>And curse that justice did it.</line>
<line>Who deserves greatness</line>
<line>Deserves your hate; and your affections are</line>
<line>A sick man's appetite, who desires most that</line>
<line>Which would increase his evil. He that depends</line>
<line>Upon your favours swims with fins of lead</line>
<line>And hews down oaks with rushes. Hang ye! Trust Ye?</line>
<line>With every minute you do change a mind,</line>
<line>And call him noble that was now your hate,</line>
<line>Him vile that was your garland. What's the matter,</line>
<line>That in these several places of the city</line>
<line>You cry against the noble senate, who,</line>
<line>Under the gods, keep you in awe, which else</line>
<line>Would feed on one another? What's their seeking?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>For corn at their own rates; whereof, they say,</line>
<line>The city is well stored.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>Hang 'em! They say!</line>
<line>They'll sit by the fire, and presume to know</line>
<line>What's done i' the Capitol; who's like to rise,</line>
<line>Who thrives and who declines; side factions</line>
<line>and give out</line>
<line>Conjectural marriages; making parties strong</line>
<line>And feebling such as stand not in their liking</line>
<line>Below their cobbled shoes. They say there's</line>
<line>grain enough!</line>
<line>Would the nobility lay aside their ruth,</line>
<line>And let me use my sword, I'll make a quarry</line>
<line>With thousands of these quarter'd slaves, as high</line>
<line>As I could pick my lance.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>Nay, these are almost thoroughly persuaded;</line>
<line>For though abundantly they lack discretion,</line>
<line>Yet are they passing cowardly. But, I beseech you,</line>
<line>What says the other troop?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>They are dissolved: hang 'em!</line>
<line>They said they were an-hungry; sigh'd forth proverbs,</line>
<line>That hunger broke stone walls, that dogs must eat,</line>
<line>That meat was made for mouths, that the gods sent not</line>
<line>Corn for the rich men only: with these shreds</line>
<line>They vented their complainings; which being answer'd,</line>
<line>And a petition granted them, a strange one--</line>
<line>To break the heart of generosity,</line>
<line>And make bold power look pale--they threw their caps</line>
<line>As they would hang them on the horns o' the moon,</line>
<line>Shouting their emulation.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>What is granted them?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>Five tribunes to defend their vulgar wisdoms,</line>
<line>Of their own choice: one's Junius Brutus,</line>
<line>Sicinius Velutus, and I know not--'Sdeath!</line>
<line>The rabble should have first unroof'd the city,</line>
<line>Ere so prevail'd with me: it will in time</line>
<line>Win upon power and throw forth greater themes</line>
<line>For insurrection's arguing.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>This is strange.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>Go, get you home, you fragments!</line>
</linegroup></dialogue>
<para role="stagedir">Enter a Messenger, hastily</para>
<dialogue role="speech"><linegroup><speaker role="speaker">Messenger</speaker>
<line>Where's Caius Marcius?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>Here: what's the matter?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">Messenger</speaker>
<line>The news is, sir, the Volsces are in arms.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>I am glad on 't: then we shall ha' means to vent</line>
<line>Our musty superfluity. See, our best elders.</line>
</linegroup></dialogue>
<para role="stagedir">Enter COMINIUS, TITUS LARTIUS, and other Senators;
JUNIUS BRUTUS and SICINIUS VELUTUS</para>
<dialogue role="speech"><linegroup><speaker role="speaker">First Senator</speaker>
<line>Marcius, 'tis true that you have lately told us;</line>
<line>The Volsces are in arms.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>They have a leader,</line>
<line>Tullus Aufidius, that will put you to 't.</line>
<line>I sin in envying his nobility,</line>
<line>And were I any thing but what I am,</line>
<line>I would wish me only he.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">COMINIUS</speaker>
<line>You have fought together.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>Were half to half the world by the ears and he.</line>
<line>Upon my party, I'ld revolt to make</line>
<line>Only my wars with him: he is a lion</line>
<line>That I am proud to hunt.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Senator</speaker>
<line>Then, worthy Marcius,</line>
<line>Attend upon Cominius to these wars.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">COMINIUS</speaker>
<line>It is your former promise.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>Sir, it is;</line>
<line>And I am constant. Titus Lartius, thou</line>
<line>Shalt see me once more strike at Tullus' face.</line>
<line>What, art thou stiff? stand'st out?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">TITUS</speaker>
<line>No, Caius Marcius;</line>
<line>I'll lean upon one crutch and fight with t'other,</line>
<line>Ere stay behind this business.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>O, true-bred!</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Senator</speaker>
<line>Your company to the Capitol; where, I know,</line>
<line>Our greatest friends attend us.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">TITUS</speaker>
<line><para role="stagedir">To COMINIUS</para> Lead you on.</line>
<line><para role="stagedir">To MARCIUS</para> Follow Cominius; we must follow you;</line>
<line>Right worthy you priority.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">COMINIUS</speaker>
<line>Noble Marcius!</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Senator</speaker>
<line><para role="stagedir">To the Citizens</para> Hence to your homes; be gone!</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>Nay, let them follow:</line>
<line>The Volsces have much corn; take these rats thither</line>
<line>To gnaw their garners. Worshipful mutiners,</line>
<line>Your valour puts well forth: pray, follow.</line>
</linegroup></dialogue>
<para role="stagedir">Citizens steal away. Exeunt all but SICINIUS
and BRUTUS</para>
<dialogue role="speech"><linegroup><speaker role="speaker">SICINIUS</speaker>
<line>Was ever man so proud as is this Marcius?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">BRUTUS</speaker>
<line>He has no equal.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">SICINIUS</speaker>
<line>When we were chosen tribunes for the people,--</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">BRUTUS</speaker>
<line>Mark'd you his lip and eyes?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">SICINIUS</speaker>
<line>Nay. but his taunts.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">BRUTUS</speaker>
<line>Being moved, he will not spare to gird the gods.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">SICINIUS</speaker>
<line>Be-mock the modest moon.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">BRUTUS</speaker>
<line>The present wars devour him: he is grown</line>
<line>Too proud to be so valiant.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">SICINIUS</speaker>
<line>Such a nature,</line>
<line>Tickled with good success, disdains the shadow</line>
<line>Which he treads on at noon: but I do wonder</line>
<line>His insolence can brook to be commanded</line>
<line>Under Cominius.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">BRUTUS</speaker>
<line>Fame, at the which he aims,</line>
<line>In whom already he's well graced, can not</line>
<line>Better be held nor more attain'd than by</line>
<line>A place below the first: for what miscarries</line>
<line>Shall be the general's fault, though he perform</line>
<line>To the utmost of a man, and giddy censure</line>
<line>Will then cry out of Marcius 'O if he</line>
<line>Had borne the business!'</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">SICINIUS</speaker>
<line>Besides, if things go well,</line>
<line>Opinion that so sticks on Marcius shall</line>
<line>Of his demerits rob Cominius.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">BRUTUS</speaker>
<line>Come:</line>
<line>Half all Cominius' honours are to Marcius.</line>
<line>Though Marcius earned them not, and all his faults</line>
<line>To Marcius shall be honours, though indeed</line>
<line>In aught he merit not.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">SICINIUS</speaker>
<line>Let's hence, and hear</line>
<line>How the dispatch is made, and in what fashion,</line>
<line>More than his singularity, he goes</line>
<line>Upon this present action.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">BRUTUS</speaker>
<line>Lets along.</line>
</linegroup></dialogue>
<para role="stagedir">Exeunt</para>
</section>
<section role="scene"><title>SCENE II. Corioli. The Senate-house.</title>
<para role="stagedir">Enter TULLUS AUFIDIUS and certain Senators</para>
<dialogue role="speech"><linegroup><speaker role="speaker">First Senator</speaker>
<line>So, your opinion is, Aufidius,</line>
<line>That they of Rome are entered in our counsels</line>
<line>And know how we proceed.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">AUFIDIUS</speaker>
<line>Is it not yours?</line>
<line>What ever have been thought on in this state,</line>
<line>That could be brought to bodily act ere Rome</line>
<line>Had circumvention? 'Tis not four days gone</line>
<line>Since I heard thence; these are the words: I think</line>
<line>I have the letter here; yes, here it is.</line>
<para role="stagedir">Reads</para>
<line>'They have press'd a power, but it is not known</line>
<line>Whether for east or west: the dearth is great;</line>
<line>The people mutinous; and it is rumour'd,</line>
<line>Cominius, Marcius your old enemy,</line>
<line>Who is of Rome worse hated than of you,</line>
<line>And Titus Lartius, a most valiant Roman,</line>
<line>These three lead on this preparation</line>
<line>Whither 'tis bent: most likely 'tis for you:</line>
<line>Consider of it.'</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Senator</speaker>
<line>Our army's in the field</line>
<line>We never yet made doubt but Rome was ready</line>
<line>To answer us.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">AUFIDIUS</speaker>
<line>Nor did you think it folly</line>
<line>To keep your great pretences veil'd till when</line>
<line>They needs must show themselves; which</line>
<line>in the hatching,</line>
<line>It seem'd, appear'd to Rome. By the discovery.</line>
<line>We shall be shorten'd in our aim, which was</line>
<line>To take in many towns ere almost Rome</line>
<line>Should know we were afoot.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">Second Senator</speaker>
<line>Noble Aufidius,</line>
<line>Take your commission; hie you to your bands:</line>
<line>Let us alone to guard Corioli:</line>
<line>If they set down before 's, for the remove</line>
<line>Bring your army; but, I think, you'll find</line>
<line>They've not prepared for us.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">AUFIDIUS</speaker>
<line>O, doubt not that;</line>
<line>I speak from certainties. Nay, more,</line>
<line>Some parcels of their power are forth already,</line>
<line>And only hitherward. I leave your honours.</line>
<line>If we and Caius Marcius chance to meet,</line>
<line>'Tis sworn between us we shall ever strike</line>
<line>Till one can do no more.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">All</speaker>
<line>The gods assist you!</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">AUFIDIUS</speaker>
<line>And keep your honours safe!</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Senator</speaker>
<line>Farewell.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">Second Senator</speaker>
<line>Farewell.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">All</speaker>
<line>Farewell.</line>
</linegroup></dialogue>
<para role="stagedir">Exeunt</para>
</section>
<section role="scene"><title>SCENE III. Rome. A room in Marcius' house.</title>
<para role="stagedir">Enter VOLUMNIA and VIRGILIA they set them down
on two low stools, and sew</para>
<dialogue role="speech"><linegroup><speaker role="speaker">VOLUMNIA</speaker>
<line>I pray you, daughter, sing; or express yourself in a</line>
<line>more comfortable sort: if my son were my husband, I</line>
<line>should freelier rejoice in that absence wherein he</line>
<line>won honour than in the embracements of his bed where</line>
<line>he would show most love. When yet he was but</line>
<line>tender-bodied and the only son of my womb, when</line>
<line>youth with comeliness plucked all gaze his way, when</line>
<line>for a day of kings' entreaties a mother should not</line>
<line>sell him an hour from her beholding, I, considering</line>
<line>how honour would become such a person. that it was</line>
<line>no better than picture-like to hang by the wall, if</line>
<line>renown made it not stir, was pleased to let him seek</line>
<line>danger where he was like to find fame. To a cruel</line>
<line>war I sent him; from whence he returned, his brows</line>
<line>bound with oak. I tell thee, daughter, I sprang not</line>
<line>more in joy at first hearing he was a man-child</line>
<line>than now in first seeing he had proved himself a</line>
<line>man.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VIRGILIA</speaker>
<line>But had he died in the business, madam; how then?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VOLUMNIA</speaker>
<line>Then his good report should have been my son; I</line>
<line>therein would have found issue. Hear me profess</line>
<line>sincerely: had I a dozen sons, each in my love</line>
<line>alike and none less dear than thine and my good</line>
<line>Marcius, I had rather had eleven die nobly for their</line>
<line>country than one voluptuously surfeit out of action.</line>
</linegroup></dialogue>
<para role="stagedir">Enter a Gentlewoman</para>
<dialogue role="speech"><linegroup><speaker role="speaker">Gentlewoman</speaker>
<line>Madam, the Lady Valeria is come to visit you.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VIRGILIA</speaker>
<line>Beseech you, give me leave to retire myself.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VOLUMNIA</speaker>
<line>Indeed, you shall not.</line>
<line>Methinks I hear hither your husband's drum,</line>
<line>See him pluck Aufidius down by the hair,</line>
<line>As children from a bear, the Volsces shunning him:</line>
<line>Methinks I see him stamp thus, and call thus:</line>
<line>'Come on, you cowards! you were got in fear,</line>
<line>Though you were born in Rome:' his bloody brow</line>
<line>With his mail'd hand then wiping, forth he goes,</line>
<line>Like to a harvest-man that's task'd to mow</line>
<line>Or all or lose his hire.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VIRGILIA</speaker>
<line>His bloody brow! O Jupiter, no blood!</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VOLUMNIA</speaker>
<line>Away, you fool! it more becomes a man</line>
<line>Than gilt his trophy: the breasts of Hecuba,</line>
<line>When she did suckle Hector, look'd not lovelier</line>
<line>Than Hector's forehead when it spit forth blood</line>
<line>At Grecian sword, contemning. Tell Valeria,</line>
<line>We are fit to bid her welcome.</line>
</linegroup></dialogue>
<para role="stagedir">Exit Gentlewoman</para>
<dialogue role="speech"><linegroup><speaker role="speaker">VIRGILIA</speaker>
<line>Heavens bless my lord from fell Aufidius!</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VOLUMNIA</speaker>
<line>He'll beat Aufidius 'head below his knee</line>
<line>And tread upon his neck.</line>
</linegroup></dialogue>
<para role="stagedir">Enter VALERIA, with an Usher and Gentlewoman</para>
<dialogue role="speech"><linegroup><speaker role="speaker">VALERIA</speaker>
<line>My ladies both, good day to you.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VOLUMNIA</speaker>
<line>Sweet madam.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VIRGILIA</speaker>
<line>I am glad to see your ladyship.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VALERIA</speaker>
<line>How do you both? you are manifest house-keepers.</line>
<line>What are you sewing here? A fine spot, in good</line>
<line>faith. How does your little son?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VIRGILIA</speaker>
<line>I thank your ladyship; well, good madam.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VOLUMNIA</speaker>
<line>He had rather see the swords, and hear a drum, than</line>
<line>look upon his school-master.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VALERIA</speaker>
<line>O' my word, the father's son: I'll swear,'tis a</line>
<line>very pretty boy. O' my troth, I looked upon him o'</line>
<line>Wednesday half an hour together: has such a</line>
<line>confirmed countenance. I saw him run after a gilded</line>
<line>butterfly: and when he caught it, he let it go</line>
<line>again; and after it again; and over and over he</line>
<line>comes, and again; catched it again; or whether his</line>
<line>fall enraged him, or how 'twas, he did so set his</line>
<line>teeth and tear it; O, I warrant it, how he mammocked</line>
<line>it!</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VOLUMNIA</speaker>
<line>One on 's father's moods.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VALERIA</speaker>
<line>Indeed, la, 'tis a noble child.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VIRGILIA</speaker>
<line>A crack, madam.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VALERIA</speaker>
<line>Come, lay aside your stitchery; I must have you play</line>
<line>the idle husewife with me this afternoon.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VIRGILIA</speaker>
<line>No, good madam; I will not out of doors.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VALERIA</speaker>
<line>Not out of doors!</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VOLUMNIA</speaker>
<line>She shall, she shall.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VIRGILIA</speaker>
<line>Indeed, no, by your patience; I'll not over the</line>
<line>threshold till my lord return from the wars.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VALERIA</speaker>
<line>Fie, you confine yourself most unreasonably: come,</line>
<line>you must go visit the good lady that lies in.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VIRGILIA</speaker>
<line>I will wish her speedy strength, and visit her with</line>
<line>my prayers; but I cannot go thither.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VOLUMNIA</speaker>
<line>Why, I pray you?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VIRGILIA</speaker>
<line>'Tis not to save labour, nor that I want love.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VALERIA</speaker>
<line>You would be another Penelope: yet, they say, all</line>
<line>the yarn she spun in Ulysses' absence did but fill</line>
<line>Ithaca full of moths. Come; I would your cambric</line>
<line>were sensible as your finger, that you might leave</line>
<line>pricking it for pity. Come, you shall go with us.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VIRGILIA</speaker>
<line>No, good madam, pardon me; indeed, I will not forth.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VALERIA</speaker>
<line>In truth, la, go with me; and I'll tell you</line>
<line>excellent news of your husband.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VIRGILIA</speaker>
<line>O, good madam, there can be none yet.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VALERIA</speaker>
<line>Verily, I do not jest with you; there came news from</line>
<line>him last night.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VIRGILIA</speaker>
<line>Indeed, madam?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VALERIA</speaker>
<line>In earnest, it's true; I heard a senator speak it.</line>
<line>Thus it is: the Volsces have an army forth; against</line>
<line>whom Cominius the general is gone, with one part of</line>
<line>our Roman power: your lord and Titus Lartius are set</line>
<line>down before their city Corioli; they nothing doubt</line>
<line>prevailing and to make it brief wars. This is true,</line>
<line>on mine honour; and so, I pray, go with us.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VIRGILIA</speaker>
<line>Give me excuse, good madam; I will obey you in every</line>
<line>thing hereafter.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VOLUMNIA</speaker>
<line>Let her alone, lady: as she is now, she will but</line>
<line>disease our better mirth.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VALERIA</speaker>
<line>In troth, I think she would. Fare you well, then.</line>
<line>Come, good sweet lady. Prithee, Virgilia, turn thy</line>
<line>solemness out o' door. and go along with us.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VIRGILIA</speaker>
<line>No, at a word, madam; indeed, I must not. I wish</line>
<line>you much mirth.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VALERIA</speaker>
<line>Well, then, farewell.</line>
</linegroup></dialogue>
<para role="stagedir">Exeunt</para>
</section>
<section role="scene"><title>SCENE IV. Before Corioli.</title>
<para role="stagedir">Enter, with drum and colours, MARCIUS, TITUS
LARTIUS, Captains and Soldiers. To them a
Messenger</para>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>Yonder comes news. A wager they have met.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">LARTIUS</speaker>
<line>My horse to yours, no.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>'Tis done.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">LARTIUS</speaker>
<line>Agreed.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>Say, has our general met the enemy?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">Messenger</speaker>
<line>They lie in view; but have not spoke as yet.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">LARTIUS</speaker>
<line>So, the good horse is mine.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>I'll buy him of you.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">LARTIUS</speaker>
<line>No, I'll nor sell nor give him: lend you him I will</line>
<line>For half a hundred years. Summon the town.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>How far off lie these armies?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">Messenger</speaker>
<line>Within this mile and half.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>Then shall we hear their 'larum, and they ours.</line>
<line>Now, Mars, I prithee, make us quick in work,</line>
<line>That we with smoking swords may march from hence,</line>
<line>To help our fielded friends! Come, blow thy blast.</line>
<para role="stagedir">They sound a parley. Enter two Senators with others
on the walls</para>
<line>Tutus Aufidius, is he within your walls?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Senator</speaker>
<line>No, nor a man that fears you less than he,</line>
<line>That's lesser than a little.</line>
<para role="stagedir">Drums afar off</para>
<line>Hark! our drums</line>
<line>Are bringing forth our youth. We'll break our walls,</line>
<line>Rather than they shall pound us up: our gates,</line>
<line>Which yet seem shut, we, have but pinn'd with rushes;</line>
<line>They'll open of themselves.</line>
<para role="stagedir">Alarum afar off</para>
<line>Hark you. far off!</line>
<line>There is Aufidius; list, what work he makes</line>
<line>Amongst your cloven army.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>O, they are at it!</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">LARTIUS</speaker>
<line>Their noise be our instruction. Ladders, ho!</line>
</linegroup></dialogue>
<para role="stagedir">Enter the army of the Volsces</para>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>They fear us not, but issue forth their city.</line>
<line>Now put your shields before your hearts, and fight</line>
<line>With hearts more proof than shields. Advance,</line>
<line>brave Titus:</line>
<line>They do disdain us much beyond our thoughts,</line>
<line>Which makes me sweat with wrath. Come on, my fellows:</line>
<line>He that retires I'll take him for a Volsce,</line>
<line>And he shall feel mine edge.</line>
</linegroup></dialogue>
<para role="stagedir">Alarum. The Romans are beat back to their
trenches. Re-enter MARCIUS cursing</para>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>All the contagion of the south light on you,</line>
<line>You shames of Rome! you herd of--Boils and plagues</line>
<line>Plaster you o'er, that you may be abhorr'd</line>
<line>Further than seen and one infect another</line>
<line>Against the wind a mile! You souls of geese,</line>
<line>That bear the shapes of men, how have you run</line>
<line>From slaves that apes would beat! Pluto and hell!</line>
<line>All hurt behind; backs red, and faces pale</line>
<line>With flight and agued fear! Mend and charge home,</line>
<line>Or, by the fires of heaven, I'll leave the foe</line>
<line>And make my wars on you: look to't: come on;</line>
<line>If you'll stand fast, we'll beat them to their wives,</line>
<line>As they us to our trenches followed.</line>
<para role="stagedir">Another alarum. The Volsces fly, and MARCIUS
follows them to the gates</para>
<line>So, now the gates are ope: now prove good seconds:</line>
<line>'Tis for the followers fortune widens them,</line>
<line>Not for the fliers: mark me, and do the like.</line>
</linegroup></dialogue>
<para role="stagedir">Enters the gates</para>
<dialogue role="speech"><linegroup><speaker role="speaker">First Soldier</speaker>
<line>Fool-hardiness; not I.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">Second Soldier</speaker>
<line>Nor I.</line>
</linegroup></dialogue>
<para role="stagedir">MARCIUS is shut in</para>
<dialogue role="speech"><linegroup><speaker role="speaker">First Soldier</speaker>
<line>See, they have shut him in.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">All</speaker>
<line>To the pot, I warrant him.</line>
</linegroup></dialogue>
<para role="stagedir">Alarum continues</para>
<para role="stagedir">Re-enter TITUS LARTIUS</para>
<dialogue role="speech"><linegroup><speaker role="speaker">LARTIUS</speaker>
<line>What is become of Marcius?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">All</speaker>
<line>Slain, sir, doubtless.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Soldier</speaker>
<line>Following the fliers at the very heels,</line>
<line>With them he enters; who, upon the sudden,</line>
<line>Clapp'd to their gates: he is himself alone,</line>
<line>To answer all the city.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">LARTIUS</speaker>
<line>O noble fellow!</line>
<line>Who sensibly outdares his senseless sword,</line>
<line>And, when it bows, stands up. Thou art left, Marcius:</line>
<line>A carbuncle entire, as big as thou art,</line>
<line>Were not so rich a jewel. Thou wast a soldier</line>
<line>Even to Cato's wish, not fierce and terrible</line>
<line>Only in strokes; but, with thy grim looks and</line>
<line>The thunder-like percussion of thy sounds,</line>
<line>Thou madst thine enemies shake, as if the world</line>
<line>Were feverous and did tremble.</line>
</linegroup></dialogue>
<para role="stagedir">Re-enter MARCIUS, bleeding, assaulted by the enemy</para>
<dialogue role="speech"><linegroup><speaker role="speaker">First Soldier</speaker>
<line>Look, sir.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">LARTIUS</speaker>
<line>O,'tis Marcius!</line>
<line>Let's fetch him off, or make remain alike.</line>
</linegroup></dialogue>
<para role="stagedir">They fight, and all enter the city</para>
</section>
<section role="scene"><title>SCENE V. Corioli. A street.</title>
<para role="stagedir">Enter certain Romans, with spoils</para>
<dialogue role="speech"><linegroup><speaker role="speaker">First Roman</speaker>
<line>This will I carry to Rome.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">Second Roman</speaker>
<line>And I this.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">Third Roman</speaker>
<line>A murrain on't! I took this for silver.</line>
</linegroup></dialogue>
<para role="stagedir">Alarum continues still afar off</para>
<para role="stagedir">Enter MARCIUS and TITUS LARTIUS with a trumpet</para>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>See here these movers that do prize their hours</line>
<line>At a crack'd drachm! Cushions, leaden spoons,</line>
<line>Irons of a doit, doublets that hangmen would</line>
<line>Bury with those that wore them, these base slaves,</line>
<line>Ere yet the fight be done, pack up: down with them!</line>
<line>And hark, what noise the general makes! To him!</line>
<line>There is the man of my soul's hate, Aufidius,</line>
<line>Piercing our Romans: then, valiant Titus, take</line>
<line>Convenient numbers to make good the city;</line>
<line>Whilst I, with those that have the spirit, will haste</line>
<line>To help Cominius.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">LARTIUS</speaker>
<line>Worthy sir, thou bleed'st;</line>
<line>Thy exercise hath been too violent for</line>
<line>A second course of fight.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>Sir, praise me not;</line>
<line>My work hath yet not warm'd me: fare you well:</line>
<line>The blood I drop is rather physical</line>
<line>Than dangerous to me: to Aufidius thus</line>
<line>I will appear, and fight.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">LARTIUS</speaker>
<line>Now the fair goddess, Fortune,</line>
<line>Fall deep in love with thee; and her great charms</line>
<line>Misguide thy opposers' swords! Bold gentleman,</line>
<line>Prosperity be thy page!</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>Thy friend no less</line>
<line>Than those she placeth highest! So, farewell.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">LARTIUS</speaker>
<line>Thou worthiest Marcius!</line>
<para role="stagedir">Exit MARCIUS</para>
<line>Go, sound thy trumpet in the market-place;</line>
<line>Call thither all the officers o' the town,</line>
<line>Where they shall know our mind: away!</line>
</linegroup></dialogue>
<para role="stagedir">Exeunt</para>
</section>
<section role="scene"><title>SCENE VI. Near the camp of Cominius.</title>
<para role="stagedir">Enter COMINIUS, as it were in retire,
with soldiers</para>
<dialogue role="speech"><linegroup><speaker role="speaker">COMINIUS</speaker>
<line>Breathe you, my friends: well fought;</line>
<line>we are come off</line>
<line>Like Romans, neither foolish in our stands,</line>
<line>Nor cowardly in retire: believe me, sirs,</line>
<line>We shall be charged again. Whiles we have struck,</line>
<line>By interims and conveying gusts we have heard</line>
<line>The charges of our friends. Ye Roman gods!</line>
<line>Lead their successes as we wish our own,</line>
<line>That both our powers, with smiling</line>
<line>fronts encountering,</line>
<line>May give you thankful sacrifice.</line>
<para role="stagedir">Enter a Messenger</para>
<line>Thy news?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">Messenger</speaker>
<line>The citizens of Corioli have issued,</line>
<line>And given to Lartius and to Marcius battle:</line>
<line>I saw our party to their trenches driven,</line>
<line>And then I came away.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">COMINIUS</speaker>
<line>Though thou speak'st truth,</line>
<line>Methinks thou speak'st not well.</line>
<line>How long is't since?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">Messenger</speaker>
<line>Above an hour, my lord.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">COMINIUS</speaker>
<line>'Tis not a mile; briefly we heard their drums:</line>
<line>How couldst thou in a mile confound an hour,</line>
<line>And bring thy news so late?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">Messenger</speaker>
<line>Spies of the Volsces</line>
<line>Held me in chase, that I was forced to wheel</line>
<line>Three or four miles about, else had I, sir,</line>
<line>Half an hour since brought my report.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">COMINIUS</speaker>
<line>Who's yonder,</line>
<line>That does appear as he were flay'd? O gods</line>
<line>He has the stamp of Marcius; and I have</line>
<line>Before-time seen him thus.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line><para role="stagedir">Within</para> Come I too late?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">COMINIUS</speaker>
<line>The shepherd knows not thunder from a tabour</line>
<line>More than I know the sound of Marcius' tongue</line>
<line>From every meaner man.</line>
</linegroup></dialogue>
<para role="stagedir">Enter MARCIUS</para>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>Come I too late?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">COMINIUS</speaker>
<line>Ay, if you come not in the blood of others,</line>
<line>But mantled in your own.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>O, let me clip ye</line>
<line>In arms as sound as when I woo'd, in heart</line>
<line>As merry as when our nuptial day was done,</line>
<line>And tapers burn'd to bedward!</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">COMINIUS</speaker>
<line>Flower of warriors,</line>
<line>How is it with Titus Lartius?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>As with a man busied about decrees:</line>
<line>Condemning some to death, and some to exile;</line>
<line>Ransoming him, or pitying, threatening the other;</line>
<line>Holding Corioli in the name of Rome,</line>
<line>Even like a fawning greyhound in the leash,</line>
<line>To let him slip at will.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">COMINIUS</speaker>
<line>Where is that slave</line>
<line>Which told me they had beat you to your trenches?</line>
<line>Where is he? call him hither.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>Let him alone;</line>
<line>He did inform the truth: but for our gentlemen,</line>
<line>The common file--a plague! tribunes for them!--</line>
<line>The mouse ne'er shunn'd the cat as they did budge</line>
<line>From rascals worse than they.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">COMINIUS</speaker>
<line>But how prevail'd you?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>Will the time serve to tell? I do not think.</line>
<line>Where is the enemy? are you lords o' the field?</line>
<line>If not, why cease you till you are so?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">COMINIUS</speaker>
<line>Marcius,</line>
<line>We have at disadvantage fought and did</line>
<line>Retire to win our purpose.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>How lies their battle? know you on which side</line>
<line>They have placed their men of trust?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">COMINIUS</speaker>
<line>As I guess, Marcius,</line>
<line>Their bands i' the vaward are the Antiates,</line>
<line>Of their best trust; o'er them Aufidius,</line>
<line>Their very heart of hope.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>I do beseech you,</line>
<line>By all the battles wherein we have fought,</line>
<line>By the blood we have shed together, by the vows</line>
<line>We have made to endure friends, that you directly</line>
<line>Set me against Aufidius and his Antiates;</line>
<line>And that you not delay the present, but,</line>
<line>Filling the air with swords advanced and darts,</line>
<line>We prove this very hour.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">COMINIUS</speaker>
<line>Though I could wish</line>
<line>You were conducted to a gentle bath</line>
<line>And balms applied to, you, yet dare I never</line>
<line>Deny your asking: take your choice of those</line>
<line>That best can aid your action.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>Those are they</line>
<line>That most are willing. If any such be here--</line>
<line>As it were sin to doubt--that love this painting</line>
<line>Wherein you see me smear'd; if any fear</line>
<line>Lesser his person than an ill report;</line>
<line>If any think brave death outweighs bad life</line>
<line>And that his country's dearer than himself;</line>
<line>Let him alone, or so many so minded,</line>
<line>Wave thus, to express his disposition,</line>
<line>And follow Marcius.</line>
<para role="stagedir">They all shout and wave their swords, take him up in
their arms, and cast up their caps</para>
<line>O, me alone! make you a sword of me?</line>
<line>If these shows be not outward, which of you</line>
<line>But is four Volsces? none of you but is</line>
<line>Able to bear against the great Aufidius</line>
<line>A shield as hard as his. A certain number,</line>
<line>Though thanks to all, must I select</line>
<line>from all: the rest</line>
<line>Shall bear the business in some other fight,</line>
<line>As cause will be obey'd. Please you to march;</line>
<line>And four shall quickly draw out my command,</line>
<line>Which men are best inclined.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">COMINIUS</speaker>
<line>March on, my fellows:</line>
<line>Make good this ostentation, and you shall</line>
<line>Divide in all with us.</line>
</linegroup></dialogue>
<para role="stagedir">Exeunt</para>
</section>
<section role="scene"><title>SCENE VII. The gates of Corioli.</title>
<para role="stagedir">TITUS LARTIUS, having set a guard upon
Corioli, going with drum and trumpet toward
COMINIUS and CAIUS MARCIUS, enters with
Lieutenant, other Soldiers, and a Scout</para>
<dialogue role="speech"><linegroup><speaker role="speaker">LARTIUS</speaker>
<line>So, let the ports be guarded: keep your duties,</line>
<line>As I have set them down. If I do send, dispatch</line>
<line>Those centuries to our aid: the rest will serve</line>
<line>For a short holding: if we lose the field,</line>
<line>We cannot keep the town.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">Lieutenant</speaker>
<line>Fear not our care, sir.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">LARTIUS</speaker>
<line>Hence, and shut your gates upon's.</line>
<line>Our guider, come; to the Roman camp conduct us.</line>
</linegroup></dialogue>
<para role="stagedir">Exeunt</para>
</section>
<section role="scene"><title>SCENE VIII. A field of battle.</title>
<para role="stagedir">Alarum as in battle. Enter, from opposite sides,
MARCIUS and AUFIDIUS</para>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>I'll fight with none but thee; for I do hate thee</line>
<line>Worse than a promise-breaker.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">AUFIDIUS</speaker>
<line>We hate alike:</line>
<line>Not Afric owns a serpent I abhor</line>
<line>More than thy fame and envy. Fix thy foot.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>Let the first budger die the other's slave,</line>
<line>And the gods doom him after!</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">AUFIDIUS</speaker>
<line>If I fly, Marcius,</line>
<line>Holloa me like a hare.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>Within these three hours, Tullus,</line>
<line>Alone I fought in your Corioli walls,</line>
<line>And made what work I pleased: 'tis not my blood</line>
<line>Wherein thou seest me mask'd; for thy revenge</line>
<line>Wrench up thy power to the highest.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">AUFIDIUS</speaker>
<line>Wert thou the Hector</line>
<line>That was the whip of your bragg'd progeny,</line>
<line>Thou shouldst not scape me here.</line>
<para role="stagedir">They fight, and certain Volsces come to the aid of
AUFIDIUS. MARCIUS fights till they be driven in
breathless</para>
<line>Officious, and not valiant, you have shamed me</line>
<line>In your condemned seconds.</line>
</linegroup></dialogue>
<para role="stagedir">Exeunt</para>
</section>
<section role="scene"><title>SCENE IX. The Roman camp.</title>
<para role="stagedir">Flourish. Alarum. A retreat is sounded. Flourish.
Enter, from one side, COMINIUS with the Romans; from
the other side, MARCIUS, with his arm in a scarf</para>
<dialogue role="speech"><linegroup><speaker role="speaker">COMINIUS</speaker>
<line>If I should tell thee o'er this thy day's work,</line>
<line>Thou'ldst not believe thy deeds: but I'll report it</line>
<line>Where senators shall mingle tears with smiles,</line>
<line>Where great patricians shall attend and shrug,</line>
<line>I' the end admire, where ladies shall be frighted,</line>
<line>And, gladly quaked, hear more; where the</line>
<line>dull tribunes,</line>
<line>That, with the fusty plebeians, hate thine honours,</line>
<line>Shall say against their hearts 'We thank the gods</line>
<line>Our Rome hath such a soldier.'</line>
<line>Yet camest thou to a morsel of this feast,</line>
<line>Having fully dined before.</line>
</linegroup></dialogue>
<para role="stagedir">Enter TITUS LARTIUS, with his power,
from the pursuit</para>
<dialogue role="speech"><linegroup><speaker role="speaker">LARTIUS</speaker>
<line>O general,</line>
<line>Here is the steed, we the caparison:</line>
<line>Hadst thou beheld--</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>Pray now, no more: my mother,</line>
<line>Who has a charter to extol her blood,</line>
<line>When she does praise me grieves me. I have done</line>
<line>As you have done; that's what I can; induced</line>
<line>As you have been; that's for my country:</line>
<line>He that has but effected his good will</line>
<line>Hath overta'en mine act.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">COMINIUS</speaker>
<line>You shall not be</line>
<line>The grave of your deserving; Rome must know</line>
<line>The value of her own: 'twere a concealment</line>
<line>Worse than a theft, no less than a traducement,</line>
<line>To hide your doings; and to silence that,</line>
<line>Which, to the spire and top of praises vouch'd,</line>
<line>Would seem but modest: therefore, I beseech you</line>
<line>In sign of what you are, not to reward</line>
<line>What you have done--before our army hear me.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>I have some wounds upon me, and they smart</line>
<line>To hear themselves remember'd.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">COMINIUS</speaker>
<line>Should they not,</line>
<line>Well might they fester 'gainst ingratitude,</line>
<line>And tent themselves with death. Of all the horses,</line>
<line>Whereof we have ta'en good and good store, of all</line>
<line>The treasure in this field achieved and city,</line>
<line>We render you the tenth, to be ta'en forth,</line>
<line>Before the common distribution, at</line>
<line>Your only choice.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>I thank you, general;</line>
<line>But cannot make my heart consent to take</line>
<line>A bribe to pay my sword: I do refuse it;</line>
<line>And stand upon my common part with those</line>
<line>That have beheld the doing.</line>
</linegroup></dialogue>
<para role="stagedir">A long flourish. They all cry 'Marcius! Marcius!'
cast up their caps and lances: COMINIUS and LARTIUS
stand bare</para>
<dialogue role="speech"><linegroup><speaker role="speaker">MARCIUS</speaker>
<line>May these same instruments, which you profane,</line>
<line>Never sound more! when drums and trumpets shall</line>
<line>I' the field prove flatterers, let courts and cities be</line>
<line>Made all of false-faced soothing!</line>
<line>When steel grows soft as the parasite's silk,</line>
<line>Let him be made a coverture for the wars!</line>
<line>No more, I say! For that I have not wash'd</line>
<line>My nose that bled, or foil'd some debile wretch.--</line>
<line>Which, without note, here's many else have done,--</line>
<line>You shout me forth</line>
<line>In acclamations hyperbolical;</line>
<line>As if I loved my little should be dieted</line>
<line>In praises sauced with lies.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">COMINIUS</speaker>
<line>Too modest are you;</line>
<line>More cruel to your good report than grateful</line>
<line>To us that give you truly: by your patience,</line>
<line>If 'gainst yourself you be incensed, we'll put you,</line>
<line>Like one that means his proper harm, in manacles,</line>
<line>Then reason safely with you. Therefore, be it known,</line>
<line>As to us, to all the world, that Caius Marcius</line>
<line>Wears this war's garland: in token of the which,</line>
<line>My noble steed, known to the camp, I give him,</line>
<line>With all his trim belonging; and from this time,</line>
<line>For what he did before Corioli, call him,</line>
<line>With all the applause and clamour of the host,</line>
<line>CAIUS MARCIUS CORIOLANUS! Bear</line>
<line>The addition nobly ever!</line>
</linegroup></dialogue>
<para role="stagedir">Flourish. Trumpets sound, and drums</para>
<dialogue role="speech"><linegroup><speaker role="speaker">All</speaker>
<line>Caius Marcius Coriolanus!</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">CORIOLANUS</speaker>
<line>I will go wash;</line>
<line>And when my face is fair, you shall perceive</line>
<line>Whether I blush or no: howbeit, I thank you.</line>
<line>I mean to stride your steed, and at all times</line>
<line>To undercrest your good addition</line>
<line>To the fairness of my power.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">COMINIUS</speaker>
<line>So, to our tent;</line>
<line>Where, ere we do repose us, we will write</line>
<line>To Rome of our success. You, Titus Lartius,</line>
<line>Must to Corioli back: send us to Rome</line>
<line>The best, with whom we may articulate,</line>
<line>For their own good and ours.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">LARTIUS</speaker>
<line>I shall, my lord.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">CORIOLANUS</speaker>
<line>The gods begin to mock me. I, that now</line>
<line>Refused most princely gifts, am bound to beg</line>
<line>Of my lord general.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">COMINIUS</speaker>
<line>Take't; 'tis yours. What is't?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">CORIOLANUS</speaker>
<line>I sometime lay here in Corioli</line>
<line>At a poor man's house; he used me kindly:</line>
<line>He cried to me; I saw him prisoner;</line>
<line>But then Aufidius was within my view,</line>
<line>And wrath o'erwhelm'd my pity: I request you</line>
<line>To give my poor host freedom.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">COMINIUS</speaker>
<line>O, well begg'd!</line>
<line>Were he the butcher of my son, he should</line>
<line>Be free as is the wind. Deliver him, Titus.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">LARTIUS</speaker>
<line>Marcius, his name?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">CORIOLANUS</speaker>
<line>By Jupiter! forgot.</line>
<line>I am weary; yea, my memory is tired.</line>
<line>Have we no wine here?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">COMINIUS</speaker>
<line>Go we to our tent:</line>
<line>The blood upon your visage dries; 'tis time</line>
<line>It should be look'd to: come.</line>
</linegroup></dialogue>
<para role="stagedir">Exeunt</para>
</section>
<section role="scene"><title>SCENE X. The camp of the Volsces.</title>
<para role="stagedir">A flourish. Cornets. Enter TULLUS AUFIDIUS,
bloody, with two or three Soldiers</para>
<dialogue role="speech"><linegroup><speaker role="speaker">AUFIDIUS</speaker>
<line>The town is ta'en!</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Soldier</speaker>
<line>'Twill be deliver'd back on good condition.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">AUFIDIUS</speaker>
<line>Condition!</line>
<line>I would I were a Roman; for I cannot,</line>
<line>Being a Volsce, be that I am. Condition!</line>
<line>What good condition can a treaty find</line>
<line>I' the part that is at mercy? Five times, Marcius,</line>
<line>I have fought with thee: so often hast thou beat me,</line>
<line>And wouldst do so, I think, should we encounter</line>
<line>As often as we eat. By the elements,</line>
<line>If e'er again I meet him beard to beard,</line>
<line>He's mine, or I am his: mine emulation</line>
<line>Hath not that honour in't it had; for where</line>
<line>I thought to crush him in an equal force,</line>
<line>True sword to sword, I'll potch at him some way</line>
<line>Or wrath or craft may get him.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Soldier</speaker>
<line>He's the devil.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">AUFIDIUS</speaker>
<line>Bolder, though not so subtle. My valour's poison'd</line>
<line>With only suffering stain by him; for him</line>
<line>Shall fly out of itself: nor sleep nor sanctuary,</line>
<line>Being naked, sick, nor fane nor Capitol,</line>
<line>The prayers of priests nor times of sacrifice,</line>
<line>Embarquements all of fury, shall lift up</line>
<line>Their rotten privilege and custom 'gainst</line>
<line>My hate to Marcius: where I find him, were it</line>
<line>At home, upon my brother's guard, even there,</line>
<line>Against the hospitable canon, would I</line>
<line>Wash my fierce hand in's heart. Go you to the city;</line>
<line>Learn how 'tis held; and what they are that must</line>
<line>Be hostages for Rome.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Soldier</speaker>
<line>Will not you go?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">AUFIDIUS</speaker>
<line>I am attended at the cypress grove: I pray you--</line>
<line>'Tis south the city mills--bring me word thither</line>
<line>How the world goes, that to the pace of it</line>
<line>I may spur on my journey.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">First Soldier</speaker>
<line>I shall, sir.</line>
</linegroup></dialogue>
<para role="stagedir">Exeunt</para>
</section>
</chapter>
<chapter role="act"><title>ACT II</title>
<section role="scene"><title>SCENE I. Rome. A public place.</title>
<para role="stagedir">Enter MENENIUS with the two Tribunes of the people,
SICINIUS and BRUTUS.</para>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>The augurer tells me we shall have news to-night.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">BRUTUS</speaker>
<line>Good or bad?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>Not according to the prayer of the people, for they</line>
<line>love not Marcius.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">SICINIUS</speaker>
<line>Nature teaches beasts to know their friends.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>Pray you, who does the wolf love?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">SICINIUS</speaker>
<line>The lamb.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>Ay, to devour him; as the hungry plebeians would the</line>
<line>noble Marcius.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">BRUTUS</speaker>
<line>He's a lamb indeed, that baes like a bear.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>He's a bear indeed, that lives like a lamb. You two</line>
<line>are old men: tell me one thing that I shall ask you.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">Both</speaker>
<line>Well, sir.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>In what enormity is Marcius poor in, that you two</line>
<line>have not in abundance?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">BRUTUS</speaker>
<line>He's poor in no one fault, but stored with all.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">SICINIUS</speaker>
<line>Especially in pride.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">BRUTUS</speaker>
<line>And topping all others in boasting.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>This is strange now: do you two know how you are</line>
<line>censured here in the city, I mean of us o' the</line>
<line>right-hand file? do you?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">Both</speaker>
<line>Why, how are we censured?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>Because you talk of pride now,--will you not be angry?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">Both</speaker>
<line>Well, well, sir, well.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>Why, 'tis no great matter; for a very little thief of</line>
<line>occasion will rob you of a great deal of patience:</line>
<line>give your dispositions the reins, and be angry at</line>
<line>your pleasures; at the least if you take it as a</line>
<line>pleasure to you in being so. You blame Marcius for</line>
<line>being proud?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">BRUTUS</speaker>
<line>We do it not alone, sir.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>I know you can do very little alone; for your helps</line>
<line>are many, or else your actions would grow wondrous</line>
<line>single: your abilities are too infant-like for</line>
<line>doing much alone. You talk of pride: O that you</line>
<line>could turn your eyes toward the napes of your necks,</line>
<line>and make but an interior survey of your good selves!</line>
<line>O that you could!</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">BRUTUS</speaker>
<line>What then, sir?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>Why, then you should discover a brace of unmeriting,</line>
<line>proud, violent, testy magistrates, alias fools, as</line>
<line>any in Rome.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">SICINIUS</speaker>
<line>Menenius, you are known well enough too.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>I am known to be a humorous patrician, and one that</line>
<line>loves a cup of hot wine with not a drop of allaying</line>
<line>Tiber in't; said to be something imperfect in</line>
<line>favouring the first complaint; hasty and tinder-like</line>
<line>upon too trivial motion; one that converses more</line>
<line>with the buttock of the night than with the forehead</line>
<line>of the morning: what I think I utter, and spend my</line>
<line>malice in my breath. Meeting two such wealsmen as</line>
<line>you are--I cannot call you Lycurguses--if the drink</line>
<line>you give me touch my palate adversely, I make a</line>
<line>crooked face at it. I can't say your worships have</line>
<line>delivered the matter well, when I find the ass in</line>
<line>compound with the major part of your syllables: and</line>
<line>though I must be content to bear with those that say</line>
<line>you are reverend grave men, yet they lie deadly that</line>
<line>tell you you have good faces. If you see this in</line>
<line>the map of my microcosm, follows it that I am known</line>
<line>well enough too? what barm can your bisson</line>
<line>conspectuities glean out of this character, if I be</line>
<line>known well enough too?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">BRUTUS</speaker>
<line>Come, sir, come, we know you well enough.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>You know neither me, yourselves nor any thing. You</line>
<line>are ambitious for poor knaves' caps and legs: you</line>
<line>wear out a good wholesome forenoon in hearing a</line>
<line>cause between an orange wife and a fosset-seller;</line>
<line>and then rejourn the controversy of three pence to a</line>
<line>second day of audience. When you are hearing a</line>
<line>matter between party and party, if you chance to be</line>
<line>pinched with the colic, you make faces like</line>
<line>mummers; set up the bloody flag against all</line>
<line>patience; and, in roaring for a chamber-pot,</line>
<line>dismiss the controversy bleeding the more entangled</line>
<line>by your hearing: all the peace you make in their</line>
<line>cause is, calling both the parties knaves. You are</line>
<line>a pair of strange ones.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">BRUTUS</speaker>
<line>Come, come, you are well understood to be a</line>
<line>perfecter giber for the table than a necessary</line>
<line>bencher in the Capitol.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>Our very priests must become mockers, if they shall</line>
<line>encounter such ridiculous subjects as you are. When</line>
<line>you speak best unto the purpose, it is not worth the</line>
<line>wagging of your beards; and your beards deserve not</line>
<line>so honourable a grave as to stuff a botcher's</line>
<line>cushion, or to be entombed in an ass's pack-</line>
<line>saddle. Yet you must be saying, Marcius is proud;</line>
<line>who in a cheap estimation, is worth predecessors</line>
<line>since Deucalion, though peradventure some of the</line>
<line>best of 'em were hereditary hangmen. God-den to</line>
<line>your worships: more of your conversation would</line>
<line>infect my brain, being the herdsmen of the beastly</line>
<line>plebeians: I will be bold to take my leave of you.</line>
<para role="stagedir">BRUTUS and SICINIUS go aside</para>
<para role="stagedir">Enter VOLUMNIA, VIRGILIA, and VALERIA</para>
<line>How now, my as fair as noble ladies,--and the moon,</line>
<line>were she earthly, no nobler,--whither do you follow</line>
<line>your eyes so fast?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VOLUMNIA</speaker>
<line>Honourable Menenius, my boy Marcius approaches; for</line>
<line>the love of Juno, let's go.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>Ha! Marcius coming home!</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VOLUMNIA</speaker>
<line>Ay, worthy Menenius; and with most prosperous</line>
<line>approbation.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>Take my cap, Jupiter, and I thank thee. Hoo!</line>
<line>Marcius coming home!</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VOLUMNIA</speaker>
<speaker role="speaker">VIRGILIA</speaker>
<line>Nay,'tis true.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VOLUMNIA</speaker>
<line>Look, here's a letter from him: the state hath</line>
<line>another, his wife another; and, I think, there's one</line>
<line>at home for you.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>I will make my very house reel tonight: a letter for</line>
<line>me!</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VIRGILIA</speaker>
<line>Yes, certain, there's a letter for you; I saw't.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>A letter for me! it gives me an estate of seven</line>
<line>years' health; in which time I will make a lip at</line>
<line>the physician: the most sovereign prescription in</line>
<line>Galen is but empiricutic, and, to this preservative,</line>
<line>of no better report than a horse-drench. Is he</line>
<line>not wounded? he was wont to come home wounded.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VIRGILIA</speaker>
<line>O, no, no, no.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VOLUMNIA</speaker>
<line>O, he is wounded; I thank the gods for't.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>So do I too, if it be not too much: brings a'</line>
<line>victory in his pocket? the wounds become him.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VOLUMNIA</speaker>
<line>On's brows: Menenius, he comes the third time home</line>
<line>with the oaken garland.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>Has he disciplined Aufidius soundly?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VOLUMNIA</speaker>
<line>Titus Lartius writes, they fought together, but</line>
<line>Aufidius got off.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>And 'twas time for him too, I'll warrant him that:</line>
<line>an he had stayed by him, I would not have been so</line>
<line>fidiused for all the chests in Corioli, and the gold</line>
<line>that's in them. Is the senate possessed of this?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VOLUMNIA</speaker>
<line>Good ladies, let's go. Yes, yes, yes; the senate</line>
<line>has letters from the general, wherein he gives my</line>
<line>son the whole name of the war: he hath in this</line>
<line>action outdone his former deeds doubly</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VALERIA</speaker>
<line>In troth, there's wondrous things spoke of him.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>Wondrous! ay, I warrant you, and not without his</line>
<line>true purchasing.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VIRGILIA</speaker>
<line>The gods grant them true!</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VOLUMNIA</speaker>
<line>True! pow, wow.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>True! I'll be sworn they are true.</line>
<line>Where is he wounded?</line>
<para role="stagedir">To the Tribunes</para>
<line>God save your good worships! Marcius is coming</line>
<line>home: he has more cause to be proud. Where is he wounded?</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VOLUMNIA</speaker>
<line>I' the shoulder and i' the left arm there will be</line>
<line>large cicatrices to show the people, when he shall</line>
<line>stand for his place. He received in the repulse of</line>
<line>Tarquin seven hurts i' the body.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">MENENIUS</speaker>
<line>One i' the neck, and two i' the thigh,--there's</line>
<line>nine that I know.</line>
</linegroup></dialogue>
<dialogue role="speech"><linegroup><speaker role="speaker">VOLUMNIA</s