100% found this document useful (5 votes)
36 views

JavaScript The Web Warrior Series 6th Edition Vodnik Solutions Manual download

The document is an instructor's manual for Chapter 6 of 'JavaScript The Web Warrior Series 6th Edition', focusing on enhancing and validating web forms using JavaScript. It provides teaching tips, objectives, and activities designed to improve students' understanding of form usability, validation techniques, and dynamic form behavior. Additionally, it includes resources for further learning and exercises to reinforce the concepts covered in the chapter.

Uploaded by

amuedoliazid
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
100% found this document useful (5 votes)
36 views

JavaScript The Web Warrior Series 6th Edition Vodnik Solutions Manual download

The document is an instructor's manual for Chapter 6 of 'JavaScript The Web Warrior Series 6th Edition', focusing on enhancing and validating web forms using JavaScript. It provides teaching tips, objectives, and activities designed to improve students' understanding of form usability, validation techniques, and dynamic form behavior. Additionally, it includes resources for further learning and exercises to reinforce the concepts covered in the chapter.

Uploaded by

amuedoliazid
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 43

JavaScript The Web Warrior Series 6th Edition

Vodnik Solutions Manual pdf download

https://testbankdeal.com/product/javascript-the-web-warrior-
series-6th-edition-vodnik-solutions-manual/

Download more testbank from https://testbankdeal.com


Instant digital products (PDF, ePub, MOBI) available
Download now and explore formats that suit you...

JavaScript The Web Warrior Series 6th Edition Vodnik Test


Bank

https://testbankdeal.com/product/javascript-the-web-warrior-
series-6th-edition-vodnik-test-bank/

testbankdeal.com

Principles of Web Design The Web Warrior Series 6th


Edition Sklar Solutions Manual

https://testbankdeal.com/product/principles-of-web-design-the-web-
warrior-series-6th-edition-sklar-solutions-manual/

testbankdeal.com

Principles of Web Design The Web Technologies Series 5th


Edition Skalar Test Bank

https://testbankdeal.com/product/principles-of-web-design-the-web-
technologies-series-5th-edition-skalar-test-bank/

testbankdeal.com

Materials Science and Engineering An Introduction 9th


Edition Callister Solutions Manual

https://testbankdeal.com/product/materials-science-and-engineering-an-
introduction-9th-edition-callister-solutions-manual/

testbankdeal.com
Principles of Macroeconomics 6th Edition Frank Test Bank

https://testbankdeal.com/product/principles-of-macroeconomics-6th-
edition-frank-test-bank/

testbankdeal.com

M Management 5th Edition Bateman Solutions Manual

https://testbankdeal.com/product/m-management-5th-edition-bateman-
solutions-manual/

testbankdeal.com

People and a Nation Volume I To 1877 9th Edition Norton


Test Bank

https://testbankdeal.com/product/people-and-a-nation-volume-i-
to-1877-9th-edition-norton-test-bank/

testbankdeal.com

Topical Approach to Lifespan Development 7th Edition


Santrock Test Bank

https://testbankdeal.com/product/topical-approach-to-lifespan-
development-7th-edition-santrock-test-bank/

testbankdeal.com

Single Variable Calculus Early Transcendentals 7th Edition


Stewart Test Bank

https://testbankdeal.com/product/single-variable-calculus-early-
transcendentals-7th-edition-stewart-test-bank/

testbankdeal.com
Object-Oriented Approach to Programming Logic and Design
4th Edition Joyce Farrell Solutions Manual

https://testbankdeal.com/product/object-oriented-approach-to-
programming-logic-and-design-4th-edition-joyce-farrell-solutions-
manual/
testbankdeal.com
JavaScript, Sixth Edition 6-1

Chapter 6

Enhancing and Validating Forms


A Guide to this Instructor’s Manual:

We have designed this Instructor’s Manual to supplement and enhance your teaching
experience through classroom activities and a cohesive chapter summary.

This document is organized chronologically, using the same headings that you see in the
textbook. Under the headings you will find: lecture notes that summarize the section, Teacher
Tips, Class Discussion Topics, and Additional Projects and Resources. Pay special attention to
teaching tips and activities geared towards quizzing your students and enhancing their critical
thinking skills.

In addition to this Instructor’s Manual, our Instructor’s Resources also contain PowerPoint
Presentations, Test Banks, and other supplements to aid in your teaching experience.

At a Glance

Instructor’s Manual Table of Contents


• Overview

• Objectives

• Teaching Tips

• Quick Quizzes

• Class Discussion Topics

• Additional Projects

• Additional Resources

• Key Terms

© 2015 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a
license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
JavaScript, Sixth Edition 6-2

Lecture Notes

Overview
Forms are one of the most common web page elements used with JavaScript. Chapter 6
explains how to use JavaScript to make web forms easier for users to complete. Students
will learn about form elements and objects. Students will learn about basic form validation,
and implement custom form validation.

Objectives
After completing this chapter, students will be able to:
• Enhance form usability with JavaScript
• Customize browser-based HTML validation
• Implement custom validation to check for errors and display error messages

Teaching Tips
Using JavaScript with Forms
1. Explain that JavaScript is commonly used with forms for two reasons:
• To make forms easier for users to fill out
• To validate or process user-entered data before the data is submitted to a server-
side script

2. Introduce the concept of validation, the process of checking user-entered data to ensure
it conforms to the proper rules and format. Give examples of the types of validation
typically found on a customer form to order merchandise from a website.

3. Explain that a form object represents a form element in an HTML document. Use
Tables 6-1 through 6-3 to present the properties, events, and methods of form objects.

4. Mention that the elements used for collecting data in a form include input, select,
option, textarea, and button. Review Tables 6-4 through 6-6 with students,
which show properties, events, and methods common to most or all of these elements.

Referencing Forms and Form Elements

1. Explain that in addition to getElementById() and


getElementsByTagName(), there are other ways to address form objects.

2. Introduce the document. syntax shown on Pages 366-367 and the forms array.

© 2015 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a
license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
JavaScript, Sixth Edition 6-3

3. Note that using Document object methods makes your code more flexible when you
need the same code to be able to refer to both form and non-form elements.

4. Allow students time to complete the steps on Page 367 to open and view the order form.

Teaching Another introduction to forms may be found at:


Tip http://www.quirksmode.org/js/forms.html

Improving Form Usability

1. Mention that one of the most important form-related roles is validating user input. Note
that there are a few steps a programmer can take to reduce the amount of validation
necessary.

Designing Forms to Collect More Accurate Content

1. Explain that most form validation consists of checking data typed into input and
textarea boxes for accuracy. Give an example, using Figure 6-2.

2. Mention that a programmer can use other types of form fields to limit users’ choices.
Review some of the alternative form elements using Table 6-7.

3. Give an example of improving the design shown in Figure 6-2 with the alternative in
Figure 6-3.

More information on JavaScript forms may be found at:


Teaching
www.w3.org/TR/html401/interact/forms.html
Tip

Programming Forms to Increase Content Accuracy

1. Define assistive functions, which prevent users from entering erroneous data in the first
place.

2. Give the example of an order form for flowers, for which setting a default delivery data
may result in incorrect delivery. Note that a solution for this situation is to set the
selectedIndex property of a select object to -1, which corresponds to no
selection.

3. Review Table 6-8, which describes the select element properties.

4. Allow students time to complete the exercise on Pages 372-374 to change the
selectedIndex property for select elements.
© 2015 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a
license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
JavaScript, Sixth Edition 6-4

Quick Quiz 1
1. Many websites use ____ to collect information from users and transmit that information
to a server for processing.
Answer: forms

2. The ____ element designates a form within a web page and contains all the text and
elements that make up a form.
Answer: form

3. Any form element into which a user can enter data (such as a text box) is called a(n)
____.
Answer: field

4. To use JavaScript to access form controls and verify form information, you use the
____ object, which represents a form on a web page.
Answer: Form

5. Programming constructs that prevent users from entering erroneous data in the first
place are called ____.
Answer: assistive functions

More information on using JavaScript with forms may be found at:


Teaching
http://www.javaworld.com/article/2077176/scripting-jvm-languages/using-
Tip
javascript-and-forms.html

Dynamically Updating Selection List Values

1. Explain that a programmer can add and remove option elements in a select
element.

2. Note that a programmer can also set properties of option elements. Review Table 6-9
for properties of option elements.

3. Mention that a common use of adding and removing options from a select element is
to change the options shown in a list based on another selection a user has made in the
same form. Give the example of changing the number of days available in a selection
list based on the selected month.

4. Allow students time to complete the exercise on Pages 376-381 to program the days list
to change dynamically based on the selected month and year.

© 2015 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a
license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
JavaScript, Sixth Edition 6-5

Adding Placeholder Text for Older Browsers

1. Explain that many older browsers do not support the usability enhancements to HTML.
Note that JavaScript can simulate the behavior of these features in older browsers.

2. Mention that a popular recent feature in form creation is the placeholder attribute
of the input and textarea elements.

3. Note that a programmer can specify a word or phrase as the value of the
placeholder attribute, which is then displayed in the input or textarea box,
generally in gray rather than black characters.

4. Explain that the placeholder attribute provides guidance on what the user should
enter, as well as any formatting constraints.

5. Allow students time to complete the three exercises on Pages 382-388 to add
placeholder text to the Custom message box in older browsers.

Automatically Updating an Associated Field Based on a User Entry

1. Give the example of a form which has a “Custom message” checkbox a user can check
to send a message which is entered into a textarea element. Explain that if there is
an inconsistency between the two, it may not be treated properly by back-end code.

2. Explain that a solution is to add a function that checks a user’s entry in the textarea
field and checks the “Custom message” box for them if they have entered custom text.

3. Review Tables 6-10 and 6-11 for properties and methods of textarea elements.

4. Allow students time to complete the exercise on Pages 389-390 to create a function to
automatically check the Custom message check box when a custom message has been
entered.

Transferring Duplicate Field Values

1. Explain that JavaScript is commonly used to improve form usability by copying data
entered in one field to another field that a user indicates should contain the same data.
Give the example of billing and shipping addresses in a purchasing application.

2. Allow students time to complete the exercise on Pages 391-393 to enable users to use
billing address information for the shipping address.

© 2015 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a
license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
JavaScript, Sixth Edition 6-6

Customizing Browser-Based Validation

1. Explain that historically, JavaScript code was written to perform common and important
validation tasks. Note that in recent years, many browsers themselves often perform
validation without extra JavaScript code. This type of validation is called browser-based
validation, native validation, or HTML5 validation.

Specifying Browser-Based Validation Parameters

1. Review the attributes in Table 6-12, which are used to specify browser-based validation.

2. Describe additional browser-based validation linked to values for the type attribute,
presented in Table 6-13.

3. Allow students time to complete the exercise on Pages 395-397 to see how browser-
based validation deals with missing or invalid data in the order form.

Customizing Browser-Based Validation Feedback

1. Define constraint validation API, and explain that many aspects of the way browsers
present browser-based validation feedback are customizable through its properties and
methods.

2. Review Table 6-14, which describes properties of the validity object.

3. Discuss the methods of the constraint validation API, as presented in Table 6-15.

4. Describe that in conjunction with these properties and methods, you can use the CSS
:invalid and :valid pseudo-classes to change the properties of form elements based on
their validity status.

5. Work through the example code on Page 399, and show the result of the code, using
Figure 6-13.

6. Note that some features of browser-based validation are missing, which makes it
difficult to use in complex situations.

7. Allow students time to complete the exercise on Pages 401-402 to disable browser-
based validation for the order form.

Programming Custom Validation


1. Describe the common validation functions:
• Checking that required fields contain entries
• Checking values that are dependent on the values of other controls
• Checking for an appropriate content type in one or more fields
© 2015 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a
license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
JavaScript, Sixth Edition 6-7

2. Preview the Snoot Flowers order form, using Figure 6-14.

Validating Submitted Data

1. Describe the submit event, which fires when a form is submitted.

2. Allow students time to complete the exercise on Pages 404-408 to create the main
validation function.

Validating Required Fields with Custom Functions

1. Explain that creating a function to validate required fields generally involves retrieving
the values of the required fields and checking to see whether the value of any of them is
an empty string. Review the general form of the syntax, given on Page 408.

Checking for Empty Text Input Fields

1. Mention that a programmer uses different properties to validate each form element and
input type. Note that for text boxes, a programmer can use the value property to check
for a value.

2. Review both Table 6-16 and Table 6-17, which contain the properties and methods of
the input element.

3. Give an example, using the code on Page 410.

4. Allow students time to complete the exercise on Pages 410-413 to create a custom
validation function for input fields in the Billing Address fieldset.

Checking for Selection Lists with No Values

1. Introduce the State field and review its syntax, using the code on Page 414.

2. Allow students time to complete the exercises on Pages 414-417 to add validation for
the State selection lists to the validation function for the address and delivery date
fieldsets.

Checking for Option Button Sets with No Selection

1. Mention that to check whether an option button has been selected, you access the value
of its checked property.

2. Give an example, using the code at the top of Page 418.

3. Allow students time to complete the exercise on Pages 418-421 to create a validation
function for the Payment fieldset.
© 2015 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a
license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
JavaScript, Sixth Edition 6-8

Validating Dependent Fields with Custom Functions

1. Explain that a programmer may need to create functions to test logic specific to the
form. Give the example of a set of option buttons including “other”, followed by a text
box. Note that validation code could include the text box only when “other” is selected.

Validating Based on the State of a Check Box

1. Go through the example given at the bottom of Page 421, which addresses the Message
fieldset. Note that if the Custom message box is checked, a programmer’s code should
verify the text in the textarea control.

2. Allow students time to complete the exercise on Pages 422-424 to create a validation
function for the Custom message checkbox and its dependent textarea control.

Validating Based on Text Input Box Contents

1. Explain that in the Snoot Flowers order form, some fields need not be completed,
because buyers are not required to create an account. Note, however, that if a user
makes an entry in one of the fields, all three must be completed.

2. Show the required logic flow using Figure 6-21.

3. Allow students time to complete the exercise on Pages 425-428 to create a validation
function for the Create Account fieldset.

Validating Content Type with Custom Functions

1. Explain that a programmer can use JavaScript’s built-in isNaN() function for fields
that require numeric values to determine whether the user actually entered a number.
Show the syntax of the function, given on Page 429.

2. Allow students time to complete the exercise on Pages 429-432 to validate the Card
Number and CVV numeric fields.

Teaching More JavaScript forms examples may be found at:


Tip http://javascript.internet.com/forms/

Quick Quiz 2
1. The JavaScript ____ function can be used to determine if the value entered by a user is
numeric.
© 2015 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a
license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
JavaScript, Sixth Edition 6-9

Answer: isNaN()

2. You can use the ____ property to determine whether an individual check box has been
selected.
Answer: checked

3. The ____ property can be used to determine if a text box has a value.
Answer: value

4. True or False: Browser-based validation can replace the need to write custom JavaScript
code to validate user input.
Answer: True

5. The ____ attribute is used to provide guidance on what the user should enter, and any
formatting constraints that apply.
Answer: placeholder

Teaching More information on JavaScript form validation may be found at:


Tip www.w3schools.com/jS/js_form_validation.asp

Class Discussion Topics


1. Describe the attributes of the <form> object.

2. Why is the <input> element the most commonly used form element?

Additional Projects
1. Use JavaScript to create a web page that allows clients to order pizza. Clients should be
able to select toppings, type of crust, and method of payment. Validate that the form is
correct before submitting it.

2. Use JavaScript to create a web page for a shuttle company. The client should be able to
reserve a ticket using this page, selecting the date and time, pick-up and destination
locations, and the method of payment from a list of available options. Your code should
validate the form before it is submitted.

© 2015 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a
license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
JavaScript, Sixth Edition 6-10

Additional Resources
1. JavaScript Form Object:
www.comptechdoc.org/independent/web/cgi/javamanual/javaform.html

2. Form Object:
www.javascriptkit.com/jsref/form.shtml

3. JavaScript Form Object:


www.exforsys.com/tutorials/javascript/javascript-form-object.html

4. Form Validation:
www.yourhtmlsource.com/javascript/formvalidation.html

5. JavaScript form validation – doing it right:


www.xs4all.nl/~sbpoley/webmatters/formval.html

Key Terms
 assistive functions—JavaScript functions that reduce the likelihood of user errors when
completing a form by preventing users from entering erroneous data in the first place
 browser-based validation—Validation tasks performed by browsers themselves
without any extra JavaScript, enabled by recent enhancements to HTML and to modern
browsers; also known as native validation
 constraint validation API—The set of properties and methods that enables developers
to customize aspects of the way browsers present browser-based validation feedback
 createDocumentFragment() method—The method of the Document object that
creates an empty document fragment
 friction—A loose measure of the persistence required for a website user to accomplish
a goal, such as placing an order
 HTML5 validation—See browser-based validation
 native validation—See browser-based validation
 submit event—The event that fires when a form is submitted, which is generally when
a submit button is selected on a form
 validation—The process of checking that information provided by users conforms to
rules to ensure that it appropriately answers the form’s questions and is provided in a
format that the site’s back-end programs can work with

© 2015 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in part, except for use as permitted in a
license distributed with a certain product or service or otherwise on a password-protected website for classroom use.
Another Random Scribd Document
with Unrelated Content
Apud alios.—I, 210.—Cicéron, Tusc., V, 36.
Ἀριστα χωλός*.—III, 542.—Théocrite, Idylle, IV, 62.
Ἀριστον μέτρον*.—III, 674.—Diogène Laerce, I, 93.
Aristoni tragico.—I, 288.—Tite-Live, XXIV, 24.
Arma acri.—III, 224.—Virgile, En., VIII, 441.
Arma enim.—II, 56.—Cicéron, Tusc., II, 16.
Arma proferri.—I, 532.—César, de Bello gall., VII, 11.
Arma rogo.—III, 224.—Virgile, En., VIII, 383.
Armati terram.—III, 396.—Virgile, Enéid., VII, 748.
Arripe dilatam.—II, 556.—Prudence, Cont. Symm., II, 643.
Ἀσώτους ex.—I, 218.—Cicéron, de Nat. deor., III, 31.
At tibi nil.—I, 548.—Martial, Epigr., II, 58, 11.
At tu Catulle.—III, 466.—Catulle, Carm., VIII, 19.
Athenis tenue*.—II, 366.—Cicéron, de Fato, 4.
Atque adeo.—II, 128.—Manilius, IV, 907.
Atque aliquis.—III, 222.—Ovide, Métam., IV. 187.
Atque idem.—I, 54.—Virgile, En., X, 732.
Atque illum.—II, 222.—Cicéron, trad. du Timée, 2.
Atque in se.—I, 128.—Virgile, Georg., II, 402.
Attonitus novitate.—II, 370.—Ovide, Métam., XI, 128.
Audit iter.—I, 112.—Claudien, in Ruf., II, 137.
Auferimur.—II, 400.—Ovide, de Rem. Amor., I, 343.
Auro quoque*.—III, 304.—Calpurnius, Eclog., VII, 53.
Aut bibat.—II, 218.—Cicéron, Tusc., V, 4.
Aut fuit*.—I, 452.—La Boétie.—Ovide, Ep. d’Ariadne.
Aut nimiis.—III, 382.—Lucrèce, V, 216.
Aut qui non.—I, 276.—Quintil., VIII, 3.
Aut verberatæ.—III, 383.—Horace, Od., III, 1, 29.
Aves quasdam.—I, 72.—Cicéron, de Nat. deor., II, 64.
Avida est.—I, 454.—Sénèque, de Prov., 4.
Ayme l’estat.—III, 398.—De Pibracq, Quatrains.
B

Balteus.—III, 302.—Calpurnius, Eclog., VIII, 47.


Basti*.—I, 92.—Properce, II, 1, 43, trad. italienne.
Belli.—III, 238.—Lucrèce, I, 33.
Belluæ.—II, 106.—Cicéron, de Nat. deor., I, 36.
Bellum.—II, 378.—Virgile, En., III, 539.
Beneficia.—III, 368.—Tacite, Ann., IV, 18.
Bina.—II, 406.—Lucrèce, IV, 451.
Bona iam.—III, 478.—Source inconnue.
Bouha.—I, 210.—Dicton gascon.
Brevis esse.—II, 476.—Horace, Art. poét., 25.
Brevis est*.—II, 118.—Quintilien, XII, 11.

Chercher par Q les citations qui ne se trouveraient pas ici.


Cædebant.—I, 534.—Virgile, En., X, 756.
Cædimur.—II, 506.—Horace, Epist., II, 2, 97.
Cætera pars.—II, 312.—Lucrèce, III, 144.
Calamitosus.—I, 28.—Sénèque, Epist. 99.
Capienda.—II, 490.—Sénèque, Agam., II, 1, 47.
Captisque.—III, 540.—Tite-Live, VIII, 18.
Caspamus.—I, 426.—Perse, Sat., V, 151.
Casta.—II, 668.—Martial, I, 14.
Casus.—II, 458.—Juvénal, Sat., XIII, 9.
Catoni.—II, 90.—Cicéron, de Off., I, 31.
Cavete.—II, 204.—S. Paul, ad Coloss., II, 8.
Ceu flamina.—III, 510.—Virgile, En., X, 97.
Ceux qui.—III, 192.—D’après Plutarque, Qu’il faut qu’un philosophe
converse avec les princes, c. 5.
Che non.—I, 238.—Dante, Inf., XI, 93.
Che ricordasi.—II, 214.—Le Tasse, Jér. dél.
Chi puo.—I, 26.—Pétrarque, sonnet 137.
Chi troppo.—II, 332.—Pétrarque, Chants, XI, 48.
Clare.—I, 592.—Horace, Epist., I, 16, 59.
Clarus.—II, 240.—Lucrèce, I, 640.
Coacervanturque.—II, 548.—Tite-Live, II, 47.
Cogitationes.—II, 244.—Liv. de la Sagesse, IX, 14.
Come quei.—I, 670.—Le Tasse, Ger. lib., VIII, 26.
Come segue.—I, 302.—Ariosto, X, 7.
Communi*.—I, 566.—César, de Bello civ., II, 4.
Concessa.—III, 236.—Lucain, II, 446.
Conentur.—I, 422.—Horace, Ep., I, 1, 19.
Confusum.—III, 602.—Sénèque, Epist. 89.
Coniicito humorem.—III, 170.—Lucrèce, IV, 1062.
Coniugis.—I, 386.—Catulle, LXVIII, 81.
Coniugium*.—II, 368.—Juvénal, X, 352.
Conscia.—I, 660.—Ovide, Fast., I, 485.
Consiliis*.—I, 516.—Cicéron, Tusc., V, 17.
Consueta.—II, 192.—Lucrèce, IV, 999.
Consuetudine.—I, 290.—Cicéron, de Nat. deor., II, 38.
Consuetudinis.—I, 156.—Cicéron, Tusc., II, 17.
Consurgit*.—II, 558.—Prudence, Cont. Symm., II, 617.
Contemnite.—II, 434.—Properce, II, 14, 19.
Contextus.—III, 240.—Sénèque, Epist. 33.
Contorta.—I, 276.—Cic., Acad., II, 24.
Contrahi*.—II, 320.—Cicéron, de Divin., II, 58.
Convenit.—III, 510.—Cicéron, de Off., II, 18.
Converso.—II, 568.—Juvénal, III, 36.
Corpoream.—II, 318.—Lucrèce, III, 176.
Corruptibile.—II, 136.—S. Augustin, de Civ. Dei, XIII, 15.
Cosi per.—II, 148.—Dante, nel Purg., XXVI, 34.
Cras vel.—II, 278.—Horace, Od., III, 29, 43.
Credit.—II, 422.—Lucain, V, 653.
Credo.—II, 450.—Ariosto, Orlando, XI, 81.
Crocodilon.—II, 108.—Juvénal, XV, 2-7.
Cui cor.—III, 688.—Cicéron, de Fin. bon. et mal., II, 8.
Cui cum.—III, 620.—Lucain, IV, 599.
Cui malus.—II, 12.—Martial, XII, 82.
Cui sit.—II, 490.—Horace, Epist., I, 1, 51.
Cui vivendi.—I, 610.—Cicéron, Parad., V, 1.
Cujus in*.—III, 280.—Horace, Epod., XII, 19.
Cujus livida.—III, 258.—Martial, VII, 94.
Cujusque.—III, 12.—Manilius, II, 18.
Cum de.—II, 324.—Sénèque, Epist. 117.
Cum in summa.—II, 272.—Lucrèce, II, 1077.
Cum jam.—II, 100.—Lucrèce, IV, 1099.
Cum moriar.—I, 120.—Ovide, Am., II, 10, 36.
Cum morosa.—III, 170.—Perse, Sat., IV, 73.
Cum relego.—II, 474.—Ovide, de Ponto, I, 5, 15.
Cum res.—I, 274.—Sénèque, Cont., 111.
Cum semper.—III, 518.—Q. Cicéron, de Petit. Consulat., 2.
Cum suspicimus.—II, 134.—Lucrèce, V, 1203.
Cum vini.—I, 614.—Lucrèce, III, 475.
Cuncta ferit.—II, 580.—Claudien, in Eutr., I, 182.
Cunctaque.—II, 400.—Ovide, Métam., III, 424.
Cupidine.—III, 536.—Tacite, Hist., I, 22.
Cur amplius.—I, 126.—Lucrèce, III, 954.
Cur isto.—I, 72.—Cicéron, de Divin., II, 57.
Cur hanc.—I, 74.—Lucain, II, 4, 44.
Cur non.—I, 126.—Lucrèce, III, 951.
Curæ.—I, 26.—Sénèque, Hipp., II, 3, 607.
Curatio.—I, 38.—S. Augustin, de Civ. Dei, I, 12.
Curentur.—III, 462.—Juvénal, XIII, 124.
Curis.—III, 572.—Virgile, Georg., I, 123.

D’autant es-tu.—III, 702.—Plutarque, Pompée, c. 7 (Amyot).


Dare pondus.—III, 528.—Perse, V, 20.
De capsula*.—III, 144.—D’après Sénèque, Epist. 115.
De la vertu.—II, 218.—Plutarque, Cont. des Phil. Stoïq. (Amyot).
Debet enim.—I, 634.—Lucrèce, III, 874.
Debilem*.—III, 24.—Sénèque, Epist. 101.
Deça vers.—II, 442.—D’après Homère, Od., XII. 184.
Dedit hoc.—II, 452.—Quintilien, Inst. orat., I, 12.
Defienda.—III, 642.—Dicton espagnol.
Deliberata*.—II, 90.—Horace, Od., I, 37.
Democriti pecus.—I, 422.—Horace, Ep., I, 12, 12.
Democritum postquam.—II, 218.—Lucrèce, III, 1052.
Denique connubia.—II, 328.—Lucrèce, III, 777.
Denique cur.—II, 314.—Lucrèce, III, 741, 746.
Denique ut.—II, 410.—Lucrèce, IV, 714.
Deprendas.—I, 258.—Juvénal, IX, 18.
Desinit in.—I, 296.—Horace, Art. poét., 4.
Deum namque*.—II, 314.—Virgile, Georg., IV, 221.
Deus hæc.—III, 406.—Horace, Epod., XIII, 7.
Deus ille.—II, 206.—Lucrèce, V, 8.
Deus ita.—II, 280.—S. Augustin, de Civ. Dei, XI, 22.
Deus superbis.—II, 130.—S. Pierre, Epist. I, 5, 5.
Di citatorie.—II, 220.—Ariosto, Orland. fur., 14, 84.
Diaboli*.—III, 218.—S. Jérôme, Contre Jovinien.
Dicendum.—II, 228.—Cicéron, de Divin., II, 3.
Difficultatem*.—III, 604.—Quintilien, Inst. orat., X, 3.
Diriguisse*.—I, 24.—Ovide, Métam., VI, 304.
Diis te.—III, 702.—Horace, Od., III, 6, 5.
Distinguo.—I, 608.—Terme de logique.
Diversos.—II, 588.—Pseudo-Gallus, I, 104.
Divitiarum.—I, 472.—Cicéron, Parad., VI, 2.
Dixerat.—III, 194.—Virgile, En., 387, 392.
Dolus an*.—I, 46.—Virgile, En., II, 390.
II, 238.
Dominus novit.—Psaume XCIII, 11. { III, 460.
Domitosque.—II, 288.—Horace, Od., II, 12, 6.
Dubia.—II, 488.—Sénèque, Agam., III, 1, 29.
Ducimur.—I, 602.—Horace, Sat., II, 7, 82.
Dum abest.—I, 566.—Lucrèce, III, 1095.
Dum æs.—I, 550.—Horace, Sat., I, 5, 13.
Dum fortuna.—I, 518.—Lucain, VII, 734.
Dum in.—II, 506.—Térence, Andr., I, 6, 32.
Dum licet.—III, 186.—Horace, Epod., XIII, 7.
Dum melior.—III, 624.—Virgile, En., V, 415.
Dum nova.—III, 276.—Juvénal, Sat., III, 26.
Dum spectant.—I, 148.—Ovide, De rem. amor, 615.
Dum tela*.—III, 106.—Lucain, VII, 320.
Duris ut.—I, 634.—Horace, Od., IV, 4, 57.

E cosi.—I, 406.—Pétrarque.
Ἡ δεισιδαιμονια*.—II, 222.—Stobée, Serm., XXII, 189.
Ἐ ζῆν*.—I, 380.—D’après Stobée, Serm., 20.
Ea non.—III, 84.—Tite-Live, XXXII, 21.
Eam vir.—I, 46.—Florus, I, 12.
Ego deum.—II, 256.—Ennius, ap. Cic., de Div., II, 50.
Ego hoc.—II, 452.—Cicéron, de Fin., II, 15.
Ego illos.—III, 476.—Sénèque, Epist. 64.
Ego vero*.—II, 76.—Cicéron, de Senect., 10.
Egregium.—III, 470.—Juvénal, XIII, 64.
Eheu! cicatricum.—III, 402.—Horace, Od., I, 35, 33.
Ejulatu*.—III, 28.—Cicéron, Tusc., II, 14.
E’l silenzio.—II, 140.—Le Tasse, Aminta, II, 34.
Emori*.—II, 426.—Cicéron, Tusc., I, 8.
Emunctæ.—I, 274.—Hor., Sat., I, 4, 8.
Ἐν τῷ.—II, 218.—Sophocle, Ajax, 552.
Enimvero*.—III, 404.—Plaute, Prologue des Captifs.
Ense maritali.—III, 222.—Source inconnue.
Eodem enim.—III, 692.—Cicéron, Tusc., IV, 31.
Ἐπέων δὲ.—I, 518.—Homère, Iliade, XX, 249.
Equi sine.—I, 538.—Tite-Live, XXXV, 11.
Equidem.—III, 374.—Quinte-Curce, IX, 1.
Eritis.—II, 204.—Homère, ap. Cic., de Fin., V, 18.
Esse unum.—III, 270.—Q. Cicéron, de Petit. consul., 14.
Esse videatur.—II, 76.—Cicéron, de Orat., 23.
Est prudentis.—III, 418.—Cicéron, de Amic., 17.
Est quædam flere.—II, 538.—Ovide, Trist., IV, 3, 27.
Est quædam vox.—III, 646.—Quintilien, XI, 3.
Est situm.—II, 216.—Cicéron, de Fin., I, 17.
Estne.—I, 406.—Catulle, LXVI, 15.
Et cantharus.—III, 394.—Horace, Epist., I, 5, 23.
Et casta.—II, 266.—Lucrèce, I, 99.
Et cuncta.—I, 404.—Horace, Od., II, 1, 23.
Et errat.—II, 26.—Térence, Adelph., I, 1, 40.
Et fugit.—II, 434.—Virgile, Eglog., III, 65.
Et gens.—I, 538.—Lucain, IV, 682.
Et habet.—III, 186.—Martial, VII, 58, 9.
Et ii, qui.—II, 86.—Cicéron, Epist. fam., XV, 19.
Et invictum.—I, 404.—Manilius, Astr., IV, 87.
Et ipse.—I, 300.—Horace, Od., II, 2, 6.
Et languor.—II, 432.—Horace, Epod., XI, 9.
Et laxas.—II, 522.—Catulle, XCIV, 8.
Et lupus.—II, 570.—Ovide, Trist., III, 5, 35.
Et male.—I, 528.—Manilius, IV, 95.
Et mentem.—III, 210.—Virgile, Georg., III, 267.
Et mihi.—III, 200.—Pseudo-Gallus, I, 61.
Et militavi.—III, 642.—Horace, Od., III, 26, 2.
Et minimæ.—III, 184.—Ovide, Trist., III, 11, 22.
Et mutæ.—II, 138.—Lucrèce, V, 1058.
Et nihil.—II, 262.—Lucrèce, III, 857.
Et nudam.—III, 254.—Ovide, Amor., I, 5, 24.
Et nulla.—III, 104.—Ovide, de Ponto, I, 7, 37.
Et Numidæ.—I, 538.—Virgile, En., IV, 41.
Et obscenas.—II, 380.—Cicéron, Tusc., IV, 33.
Et patimur.—II, 554.—Juvénal, VI, 291.
Et plaga.—II, 366.—Végèce, I, 2.
Et post.—I, 412.—Horace, Od., III, 1, 40.
Et quærendum.—III, 266.—Catulle, Carm., LXVII, 27.
Et quo ferre.—I, 534.—Lucain, VIII, 384.
Et quo quemque.—I, 254.—Virgile, En., III, 459.
Et se n’aflige.—(III, 26).—Auteur inconnu. (Ne se trouve que dans
les éd. ant. à 1595).
Et secum.—II, 616.—Claudien, in Eutrop., I, 237.
Et solem*.—II, 404.—Virgile, Enéide, IV, 470.
Et sua sunt*.—III, 406.—Source inconnue.
Et supera*.—III, 304.—Lucrèce, V, 327.
Et taciti.—III, 268.—Ovide, Amor., I, 7, 21.
Et tellus.—II, 146.—Lucrèce, II, 1157.
Et velut.—III, 16.—Virgile, Enéid., XII, 521.
Et veniunt.—I, 360.—Properce, I, 2, 10.
Et via.—I, 26.—Virgile, En., XI, 151.
Et versus.—III, 194.—Juvénal, VI, 196.
Et vulgo.—II, 408.—Lucrèce, IV, 73.
Etenim.—III, 510.—Cicéron, Tusc., IV, 18.
Etiam.—I, 662.—Sentences de Publius Syrus.
Εῦλογον*.—I, 636.—Diogène Laerce, VIII, 130.
Ex quo Ennius.—I, 212.—Cicéron, de Off., III, 45.
Ex quo intelligitur.—I, 462.—Cicéron, Tusc., III, 28.
Ex senatus-consultis.—III, 92.—Sénèque, Epist. 95.
Excindintur*.—III, 516.—Source inconnue.
Excludat.—III, 434.—Horace, Ep., II, 1, 38 et 45.
Excursusque.—II, 70.—Virgile, Georg., IV, 194.
Excutienda.—III, 444.—Cicéron, de Amic., 6. (Se trouve une
seconde fois dans l’éd. de 88, II, 60).
Exeat aula.—III, 464.—Lucain, VIII, 493.
Exeat inquit.—III, 302.—Juvénal, Sat., III, 153.
Experta.—III, 266.—Martial, VII, 58, 3.
Exsilia tormenta.—III, 572.—Sénèque, Epist., 91, 107.
Exsilioque.—III, 254.—Virgile, Georg., II, 511.
Exstantesque.—II, 398.—Lucrèce, IV, 398, 390, 421.
Exsuperat.—III, 554.—Virgile, Enéid., XII, 46.
Extrema.—II, 666.—Virgile, Georg., II, 473.

Faber est.—I, 468.—Salluste, de Rep. Ord., I, 1.


Faciasne.—II, 518.—Horace, Sat., II, 3, 253.
Facta etenim.—II, 134.—Manilius, III, 58.
Falciferos.—I, 674.—Lucrèce, III, 642.
Falsus honor.—II, 454.—Horace, Epist., I, 16, 39.
Fata viam.—III, 354.—Virgile, En., III, 395.
Fate ben*.—III, 282.—Proverbe italien.
Fatum est.—III, 202.—Juvénal, Sat., IX, 32.
Fautor.—II, 568.—Horace, Epist., I, 18, 66.
Favellar.—III, 142.—Expression italienne.
Fay ton faict.—I, 28.—Platon, Timée.
Felix qui.—III, 516.—Virgile, Georg., II, 490.
Ferox gens.—I, 462.—Tite-Live, XXXIV, 17.
Festinatio.—III, 494.—Quinte-Curce, IX, 9, 12.
Fit etiam.—II, 402.—Cicéron, de Divin., I, 37.
Flagitii.—III, 214.—Ennius, ap. Cicéron, Tusc., IV, 33.
Flere omnes.—I, 42.—Tite-Live, XXV, 37.
Flexilis.—II, 58.—Claudien, contre Rufin, II, 358.
Fluctus uti.—III, 618.—Virgile, En., VII, 528.
Folliculos.—III, 172.—Lucrèce, V, 801.
Formæ.—II, 258.—Cicéron, de Nat. deor., II, 28.
Fors etiam.—III, 234.—Catulle, Carm., LXVII, 170.
Fortes creantur.—II, 314.—Horace, Od., IV, 4, 29.
Fortis imaginatio.—I, 132.—Sénèque, Epist. 24.
Fortuna vitrea*.—I, 468.—Ex Mim. P. Syri.
Fortunæ cetera.—III, 478.—Ovide, Métam., II, 140.
Fortunæ miseras.—I, 350.—Properce, III, 7, 44.
Fractam et.—II, 76.—Cicéron, de Orat., 18.
Fructus enim.—III, 390.—Cicéron, de Amicit., 19.
Frui paratis.—III, 704.—Horace, Od., I, 31, 17.
Fu il vincer.—I, 52.—Ariosto, XV, 1.
Fulgur ibi.—II, 178.—Lucrèce, II, 325.
Fugax rerum.—III, 484.—Ovide, Trist., III, 2, 9.
Fuge suspicari*.—III, 268.—Horace, Od., II, 4, 12.
Furem signata.—II, 438.—Sénèque, Epist., 68.
Furit alter.—II, 134.—Manilius, IV, 79, 118.

G
Galla nega.—II, 432.—Martial, IV, 37.
Gaudeat.—II, 346.—Dicton judiciaire.
Gentes esse.—II, 376.—Ovide, Métam., X, 331.
Gigni pariter.—II, 318.—Lucrèce, III, 446.
Gloria in.—II, 442.—S. Luc, Evang., II, 14.
Gloria nostra.—II, 450.—S. Paul, Ep. ad Corinth., II, 1, 12.
Gloria, quantalibet.—II, 442.—Juvénal, Sat., VII, 81.
Gratatusque.—I, 548.—Ovide, de Ponto, IV, 9, 13.
Gratum est.—II, 608.—Juvénal, XIV, 70.
Gravissimi.—I, 520.—Porcius Latro.

Habita fides.—I, 196.—Tite-Live, XXII, 22.


Habitum quemdam.—I, 304.—Lucrèce, III, 100.
Hac duce.—I, 612.—Tibulle, II, 1, 75.
Hæc demum*.—I, 278.—Fabricius, II, 10.
Hæc loca.—I, 364.—Virgile, En., III, 414.
Hæc nempe*.—II, 486.—Horace, Epist., I, 6, 45.
Hæc neque.—III, 374.—Tite-Live, I, Præf., et VIII, 6.
Hæc perinde.—I, 486.—Térence, Heaut., I, 3, 21.
Hæc si.—III, 274.—Térence, Eunuch., I, 1, 16.
Hæc sunt.—III, 168.—Cicéron, Tusc., II, 23.
Hæret lateri.—I, 412.—Virgile, En., IV, 73.
Hanc amplissimam.—I, 270.—Cicéron, Tusc., IV, 3.
Harum sententiarum.—II, 306.—Cicéron, Tusc., I, 11.
Has meus.—II, 64.-Properce, IV, 1, 70.
Has vobis.—I, 548.—Martial, Epigr., VII, 48, 4.
Haud cuivis.—I, 592.—Perse, II, 6.
Haud ignarus.—II, 94.—Virgile, En., XI, 154.
Hector erat.—II, 260.—Ovide, Trist., III, 11, 27.
Hem! vir.—I, 480.—Térence, Eun., II, 3, 1.
Heredis, fletus.—I, 406.—Publius Syrus.
Hesterno*.—I, 614.—Virgile, Egl., V, 15.
Heu! patior.—I, 178.—Ovide, Ep. Phyl. Dam., v. 48.
Heu! reliquias.—II, 104.—Cicéron, Tusc., I, 44.
Heu! senibus.—I, 122.—Pseudo-Gallus, I, 16.
Heu! tantum.—III, 592.—Source inconnue.
Hi, motus.—II, 180.—Virgile, Georg., IV, 86.
Hic illius.—II, 288.—Virgile, En., I, 16.
Hic exultat.—II, 306.—Lucrèce, III, 142.
Hic rogo.—I, 634.—Martial, II, 80, 2.
His dantem.—I, 404.—Virgile, En., VIII, 670.
His quidam.—II, 142.—Virgile, Georg., IV, 219.
His se.—III, 172.—Lucrèce, II, 42.
Hoc age*.—II, 72.—Sentence tirée du grec.
Hoc est.—III, 180.—Martial, X, 23, 7.
Hoc ipsum ita.—III, 418.—Cicéron, de Off., I, 9.
Hoc ipsum, quo.—I, 590.—Perse, II, 51.
Hoc liberiores.—II, 232.—Cicéron, Acad., II, 3.
Hoc quoque.—I, 616.—Pseudo-Gallus, I, 47.
Hoc salsum.—I, 562.—Térence, Adelph., III, 3, 71.
Hoc sermone.—III, 144.—Juvénal, VI, 189.
Homo homini*.—III, 200.—Cecilius, d’après Symmaque, Epist., X,
104; et Plaute, Asinar., II, 4, 88.
Honesta.—I, 178.—Térence, Andr., I, 1, 114.
Hos inter.—II, 558.—Stace, Sylv., I, 6, 51.
Hos natura.—I, 362.—Virgile, Georg., II, 20.
Hostis adest.—III, 554.—Ovide, de Ponto., I, 3, 57.
Huic versatile.—III, 136.—Tite-Live, XXXIX, 40.
Humani a se*.—I, 624.—Térence, Heaut., I, 1, 25.
Humani qualis.—III, 352.—Claudien, in Eutrop., I, 303.
Hunc ego.—I, 672.—Virgile, En., IV, 702.
Hunc saltem.—III, 556.—Virgile, Georg., I, 500.

Chercher par J les citations qui ne se trouveraient pas ici.


Id cinerem.—I, 516.—Virgile, En., IV, 34.
Id cum.—I, 540.—Tite-Live, XL, 40.
Id genus.—I, 378.—Horace, Sat., I, 2, 2.
Id maxime.—III, 90.—Cicéron, de Off., I, 34.
Igneus est.—II, 304.—Virgile, En., VI, 730.
Ignoratur.—II, 304.—Lucrèce, I, 113.
Illam meæ.—I, 316.—Horace, Od., II, 17, 5.
Ille beatus.—I, 484.—Sénèque, Ep., 115.
Ille etiam.—II, 422.—Virgile, Georg., I, 466.
Ille licet.—I, 116.—Properce, III, 18, 25.
Ille quod.—II, 196.—Ovide, de Rem. amor., 429.
Ille solus.—II, 34.—Térence, Ad., IV, 2, 9.
Ille velut.—II, 466.—Horace, Sat., II, 1, 30.
Illis est.—(III, 688).—Source inconnue. (Ne se trouve que dans
l’ex. de Bord.).
Illisos*.—II, 116.—Imité de Virgile, En., VII, 587.
Illiterati.—II, 202.—Horace, Epod., 8, 17.
Illud in his.—I, 120.—Lucrèce, III, 913.
Illud sæpe.—III, 288.—Martial, VII, 62, 6.
Immortalia.—II, 224.—Lucrèce, V, 122.
Immunis.—I, 594.—Horace, Od., III, 23, 17.
Impellens.—III, 14.—Lucain, I, 149.
Imperet bellante.—I, 432.—Horace, Carm. sæc., v. 51.
Imperiti enim.—III, 490.—Quintilien, Inst. orat., II, 17.
Impiger... et.—II, 424.—Lucain, IV, 798.
Impius hæc*.—III, 424.—Virgile, Eglog., I, 71.
Imponit finem.—II, 586.—Juvénal, VI, 444.
Importunus.—III, 284.—Horace, Od., IV, 13, 9.
In æquo.—II, 432.—Sénèque, Epist. 98.
In culpa*.—I, 414.—Horace, Ep., I, 14, 13.
In divitiis.—I, 468.—Sénèque, Epist. 74.
In ferrum.—II, 462.—Lucain, I, 461.
In fragili.—III, 182.—Cicéron, de Senect., I, 18.
In genere.—I, 222.—Formule scolastique.
In manicis.—I, 124.—Horace, Epist., I, 16, 76.
In me omnis.—III, 420.—Térence, Adelph., III, 5, 9.
In negotiis*.—III, 486.—Sénèque, Epist. 22.
In rebus.—II, 404.—Lucrèce, IV, 812.
In solis.—I, 416.—Tibulle, IV, 13, 12.
In tam*.—III, 510.—Source inconnue.
In vera.—I, 128.—Lucrèce, III, 898.
In virtute.—II, 206.—Cicéron, de Nat. deor., III, 36.
In vitium.—I, 678.—Horace, de Art. poet., 31.
Incedis per.—III, 488.—Horace, Od., II, 1, 7.
Incertam.—III, 574.—Properce, II, 27, 1.
Inde furor.—II, 378.—Juvénal, XV, 37.
Inde toro.—I, 546.—Virgile, En., II, 2.
Inde tragus.—III, 642.—Martial, XI, 22, 7.
Indignare si.—III, 648.—Sénèque, Epist. 91.
Indum sanguineo.—III, 268.—Virgile, Enéid., XII, 67.
Indupedita.—II, 150.—Lucrèce, V, 874.
Iners malorum.—II, 216.—Sénèque, Œdipe, III, 7.
Infirmum.—II, 268.—S. Paul, Ep. aux Corinthiens, I, 1, 25.
Inguina.—I, 550.—Martial, Epigr., VII, 35, 1.
Insani sapiens.—I, 344.—Horace, Ep., I, 6, 15.
Insita.—III, 530.—Tite-Live, XXVIII, 24.
Instillata.—II, 314.—Auteur inconnu.
Inter cætera.—II, 136.—Sénèque, de Ira, II, 9.
Inter enim.—II, 262.—Lucrèce, III, 872.
Inter furor.—II, 378.—Juvénal, XV, 37.
Inter se.—I, 126.—Lucrèce, II, 75, 78.
Inter visa.—II, 340.—Cicéron, Acad., II, 28.
Interdum.—II, 436.—Properce, II, 15, 6.
Intolerantissima.—II, 54.—Tite-Live, X, 28.
Intrandum.—III, 698.—Cicéron, de Fin. bon. et mal., V, 16.
Invenies.—II, 390.—Lucrèce, IV, 479, 483.
Invitum qui.—II, 428.—Horace, de Art. poet., 467.
Ipsa consuetudo.—II, 504.—Cicéron, Acad., II, 21.
Ipsa dies.—III, 380.—Pétrone, Fragments.
Ipsa felicitas.—II, 538.—Sénèque, Epist. 74.
Ipsa se velocitas.—III, 494.—Sénèque, Epist. 44.
Ipsa si velit.—III, 402.—Térence, Adelph., IV, 7, 43.
Ipsa veritatis.—II, 324.—S. Augustin, de Civ. Dei, XI, 22.
Ipsæ res.—I, 274.—Cicéron, de Fin., III. 5.
Ipse ego*.—II, 106.—Ovide, Métam., XV, 160.
Ipse inter.—II, 480.—Virgile, Enéide, VII, 783.
Ipsi animi.—III, 586.—Cicéron, Tusc., I, 33.
Irarumque.—III, 238.—Virgile, En., XII, 499.
Ista sic.—I, 74.—Cicéron, de Divin., I, 6.
Istud nihil.—II, 214.—Cicéron, Tusc., III, 6.
It nigrum.—II, 180.—Virgile, En., IV, 404.
Ita est.—II, 286.—Cicéron, de Nat. deor., I, 27.
Ita finitima.—III, 528.—Cicéron, Academ., II, 21.
Italiam si*.—II, 422.—Lucain, V, 579.

Chercher par I les citations qui ne se trouveraient pas ici.


Jactantius*.—II, 664.—Tacite, Ann., II, 77.
Jam fuerit.—I, 118.—Lucrèce, III, 928.
Jam nemo.—I, 290.—Lucrèce, II, 1037.
Jam prece*.—III, 596.—Catulle, Carm., LXVI, 65.
Jamque adeo.—III, 306.—Lucrèce, II, 1151.
Jamque caput.—II, 420.—Lucrèce, II, 1165.
Jovis incunabula.—II, 290.—Ovide, Métam., VIII, 99.
Jucundum quum.—I, 118.—Catulle, LXVIII, 16.
Junctaque.—II, 288.—Ovide, Fast., III, 81.
Jupiter omnipotens.—II, 250.—Valerius Soranus d’ap. S. Augustin,
de Civ. Dei, VII, 9 et 11.
Jure perhorrui.—III, 516.—Horace, Od., III, 16, 18.
Jus hoc.—I, 666.—Lucain, VIII, 633.
Justa pari.—II, 506.—Tibulle, IV, 41.

L’husbergo.—II, 56.—Ariosto, XII, 30.


La fama.—I, 476.—Tasso, Gerus. lib., XIV, 63.
La fortune.—I, 386.—Ménandre, trad. de Montaigne.
La lumière.—II, 252.—Ronsard.
Labor callum.—I, 244.—Cicéron, Tusc., II, 15.
Laborum nulla.—III, 28.—Virgile, Enéide, VI, 103.
Lætius est.—I, 454.—Lucain, IX, 404.
Lætus in.—I, 74.—Horace, Odes, II, 16, 25.
Languidior*.—II, 228.—Catulle, Carm., LXVII, 21.
Largus enim.—I, 408.—Lucrèce, V, 282.
Latent ista.—II, 294.—Cicéron, Acad., II, 39.
Latius excisæ*.—II, 438.—Rutilius, Itiner., I, 397.
Laudandis.—III, 476.—Sidoine Apollinaire, Carm., XXIII, Narbo, v.
62.
Laudari haud.—II, 454.—Perse, Sat., I, 47.
Les œuvres.—II, 244.—Plutarque, des Oracles qui ont cessé (trad.
d’Amyot).
Levationes.—II, 214.—Cicéron, Tusc., III, 15.
Licet quot.—I, 128.—Lucrèce, III, 1103.
Licet sapere.—I, 244.—Sénèque, Epist. 103.
Liquidus.—II, 68.—Horace, Epist., II, 2, 120.
Lotus nobiscum.—III, 60.—Martial, VI, 53.
Lurida præterea.—II, 406.—Lucrèce, IV, 333.
Luxuria ipsis.—III, 262.—Tite-Live, XXXIV, 4.

Ma or.—II, 28.—Tasso, Ger. lib., X, 39.


Magis magnos.—I, 204.—Rabelais, Garg., I, 39.
Magna dii.—II, 280.—Cicéron, de Nat. deor., II, 66.
Magna pars.—III, 670.—Sénèque, Epist. 123.
Magna servitus.—III, 156.—Sénèque, Cons. ad Polyb., 26.
Magnam rem.—I, 610.—Sénèque, Epist. 120.
Magno veluti.—II, 614.—Virgile, Enéid., VII, 462.
Magnum stridens.—I, 536.—Virgile, En., IX, 705.
Magnus animus.—III, 552.—Sénèque, Epist. 115, 114.
Mais ie hay.—I, 204.—Joachim du Bellay.
Maiorem fidem*.—III, 536.—Source inconnue.
Malam mortem.—I, 452.—S. Augustin, de Civ. Dei, I, 11.
Male cuncta.—III, 492.—Stace, Thébaïde, X, 704.
Malo me*.—I, 54.—Quinte-Curce, IV, 13.
Malum consilium est consultori.—I, 660.—Aulu-Gelle, IV, 5.
Malum consilium est quod.—I, 600.—Aulu-Gelle, XVII, 14.
Manco male.—III, 472.—Expression italienne.
Μανείην μᾶλλον*.—I, 626.—Aulu-Gelle, IX, 5.
Manent (dict-il)*.—I, 120.—Virgile, En., IV, 88.
Manente memoria.—III, 104.—Tite-Live, XXV, 18.
Materiam culpæ.—III, 236.—Ovide, Trist., IV, 1, 34.
Maximum hoc.—I, 492.—Sénèque, Thiest., II, 1, 30.
Me si fata.—III, 456.—Virgile, En., IV, 340.
Me tabula*.—III, 274.—Horace, Od., I, 5, 13.
Medio de.—II, 538.—Lucrèce, IV, 1130.
Mediocribus.—II, 472.—Horace, de Arte poet., 372.
Medium non.—II, 312.—Claudien, de Sexto cons. Hon., V, 411.
Melius non*.—III, 506.—Sénèque, Epist. 72.
Melius scitur.—II, 222.—S. Augustin, de Ord., II, 16.
Meminerint Deum.—II, 448.—Cicéron, de Off., III, 10.
Memineris maximos.—I, 454.—Cicéron, de Fin., I. 15.
Memini etiam.—II, 216.—Cicéron, de Fin., II, 32.
Memoria certe.—II, 500.—Cicéron, Acad., II, 7.
Mene huic.—III, 524.—Virgile, Enéid., V, 849.
Mens immota.—I, 82.—Virgile, En., IV, 449.
Mens intenta*.—III, 180.—Ovide, Trist., IV, 1, 4.
Mensque pati.—III, 184.—Ovide, de Ponto, I, 5, 18.
Mentem sanari.—II, 318.—Lucrèce, III, 509.
Mihi nempe.—II, 510.—Lucrèce, V, 959.
Mihi quidem.—III, 524.—Cicéron, Tusc., II, 26.
Mihi sic.—I, 314.—Térence, Heaut., I, 1, 28.
Mille animas*.—III, 582.—Ovide, Fastes, I, 380.
Minister veteris.—II, 538.—Catulle, XXVII, 1.
Minus afficit.—III, 574.—Quintilien, Inst. Orat., I, 12.
Minus illi.—II, 68.—Martial, Préf. du liv. VIII.
Minutatim.—II, 482.—Lucrèce, II, 1131.
Miramur.—III, 532.—Sénèque, Epist. 118.
Mirum quo.—II, 278.—Pline, Nat. Hist., II, 23.
Misce stultitiam.—III, 182.—Horace, Od., IV, 12, 27.
Miser! ô miser.—I, 120.—Lucrèce, III, 911.
Misero quod*.—I, 26.—Catulle, Carm., LI, 5.
Μισω σοφιστην.—I, 71.—Euripide, ap. Cicéron, ap. fam., XIII, 15.
Mista senum.—III, 566.—Horace, Od., I, 28, 19.
Modus quo.—II, 298.—S. Augustin, de Civ. Dei, XXI, 10.
Mœchus ex.—II, 382.—Martial, III, 70.
Molliter.—II, 484.—Horace, Sat., II, 2, 12.
Morbis in.—II, 318.—Lucrèce, III, 464.
More ferrarum.—II, 172.—Lucrèce, IV, 1261.
Mores cuique.—I, 496.—Cornelius Nepos, Att., 11.
Mors utinam.—I, 442.—Lucain, IV, 580.
Morte carent.—II, 106.—Ovide, Métam., XV, 158.
Morte obita.—III, 696.—Virgile, Enéide, X, 641.
Motus doceri.—III, 208.—Horace, Od., III, 6, 21.
Mugitus veluti.—II, 616.—Virgile, Enéid., XII, 103.
Mulciber in.—II, 338.—Ovide, Trist., I, 2, 5.
Mulier tum*.—I, 574.—Plaute, Mostell., I, 3, 116.
Multa cernunt.—I, 72.—Cicéron, de Nat. Deor., II. 65.
Multa dies.—I, 638.—Virgile, En., XI, 425.
Multi fallere.—III, 390.—Sénèque, Epist. 3.
Multimodis.—II, 404.—Lucrèce, IV, 1152.
Multo... mortem.—I, 128.—Lucrèce, III, 939.
Multos in.—I, 634.—Lucain, VII, 104.
Multum interest.—I, 270.—Sénèque, Epist. 90.
Multum sibi.—II, 86.—Sénèque, Epist. 13.
Mundus domus*.—II, 292.—Varron.
Mundus universus*.—III, 500.—Pétrone.
Muris nulla.—III, 560.—Claudien, in Eutrop., I, 244.
Mus in pisce.—III, 606.—Proverbe latin.
Muta ferrarum.—II, 106.—Claudien, in Ruf., II, 482-491.
Mutat enim.—II, 416.—Lucrèce, V, 826.

Næ iste.—III, 78.—Térence, Heaut., III, 5, 8.


Nam cupide.—II, 112.—Lucrèce, V, 1139.
Nam istis.—I, 74.—Pacuvius, ap. Cic., de Divin., I, 57.
Nam mulier.—II, 272.—Lucrèce, IV, 1266.
Nam nos quoque.—III, 148.—Cicéron, Parad., V, 2.
Nam nox nulla.—I, 130.—Lucrèce, V, 579.
Nam Pater.—III, 44.—Virgile, Enéid., VII, 770.
Nam qui putat.—III, 368.—Sénèque, Epist. 81.
Nam quod adest.—II, 360.—Lucrèce, V, 1411.
Nam quum vidit.—I, 566.—Lucrèce, IV, 9.
Nam si quando.—III, 286.—Virgile, Georg., III, 98.
Nam si quod.—III, 496.—Lucilius, lib. 5, ap. Nonius, V, 98.
Nam si tantopere.—II, 316.—Lucrèce, III, 674.
Nam tibi.—I, 128.—Lucrèce, III, 957.
Nam veræ.—I, 104.—Lucrèce, III, 57.
Namque sagacius.—I, 574.—Horace, Epod., XII, 14.
Namque unam.—III, 286.—Lucrèce, VI, 704.
Namquodcumque.—I, 154.—Lucrèce, II, 752.
Narras et.—III, 142.—Horace, Odes, III, 19, 3.
Narratur et.—I, 616.—Horace, Od., III, 51, 11.
Nascentes morimur.—I, 126.—Manilius, Astron., IV, 16.
Nasutus sis.—II, 504.—Martial, II, 13.
Natura homo.—III, 640.—Sénèque, Epist. 92.
Ne amores.—II, 380.—Cicéron, de Fin., III, 20.
Ne nos inducas.—III, 508.—S. Matthieu, VI, 13.
Ne si, ne no.—II, 504.—Pétrarque.
Ne toga.—II, 522.—Martial, XIII, I, 1.
Ne utile.—I, 74.—Cicéron, de Nat. Deor., III, 6.
Ne veraque.—I, 484.—Lucrèce, II, 47.
Nec ad melius*.—III, 342.—Cicéron, de Fin., I, 19.
Nec calidæ.—I, 486.—Lucrèce, II, 34.
Nec divis.—III, 224.—Catulle, Carm., LXVIII, 141.
Nec facilis.—I, 614.—Juvénal, XV, 47.
Nec fas*.—I, 316.—Térence, Heaut., I, 1, 97.
Nec gentibus.—III, 404.—Lucain, I, 82.
Nec habetur.—II, 176.—Ovide, Métam., X, 325.
Nec id.—II, 466.—Tacite, Agric., 1.
Nec in regnis.—II, 280.—Cicéron, de Nat. Deor., III, 35.
Nec jam*.—III, 404.—Lucain, I, 138.
Nec me.—III, 540.—Cicéron, Tusc., I, 25.
Nec mihi.—III, 194.—Auteur inconnu.
Nec minimo.—I, 562.—Juvénal, Sat., V, 123.
Nec nisi.—II, 570.—Claudien, Ep. ad. Had., 30.
Nec, si.—II, 268.—Lucrèce, III, 859.
Nec sibi.—I, 128.—Lucrèce, III, 932, 935.
Nec sunt.—III, 420.—Virgile, Enéid., XII, 519.
Nec tam.—III, 130.—Quintilien, Inst. orat., V, 12.
Nec tamen.—II, 396.—Lucrèce, IV, 380, 396.
Nec tantum.—III, 210.—Catulle, Carm., LXVI, 125.
Nec ultra.—II, 98.—Juvénal, Sat., VIII, 164.
Nec Veneres.—II, 196.—Lucrèce, IX, 1182.
Nec vincet.—I, 612.—Horace, Sat., I, 3, 115.
Nec vitiant.—III, 666.—Ovide, Trist., III, 8, 25.
Necnon libelli.—III, 210.—Horace, Epod., VIII, 15.
Neminem.—I, 52.—Cicéron, de Off., III, 17.
Nemo altero.—I, 118.—Sénèque, Epist. 91.
Nemo enim.—III, 386.—Sénèque, Epist. 13.
Nemo expergitus.—I, 664.—Lucrèce, III, 942.
Neque in.—II, 512.—Perse, IV, 23.
Nemo satis.—III, 462.—Juvénal, XIV, 233.
Nempe et.—I, 116.—Horace, Od., III, 2, 14.
Neptunus*.—II, 288.—Virgile, En., II, 610.
Neque affectui.—III, 150.—Tacite, Annal., XII, 45.
Neque enim disputari.—III, 336.—Cicéron, de Fin. bon. et mal., I,
8.
Neque enim eædem.—II, 14.—Tite-Live, XXV, 19.
Neque enim est.—I, 300.—Catulle, LXVIII. 17.
Neque extra.—II, 502.—Source inconnue.
Neque gratia.—II, 224.—Cicéron, de Nat. deor., I, 17.
Neque illa.—II, 174.—Horace, Sat., I, 2, 69.
Neque sepulcrum.—I, 40.—Ennius, ap. Cic., Tusc., I, 44.
Neque submissam.—III, 520.—Cicéron, de Off., I, 34.
Neque ut.—I, 244.—Cicéron, Acad., II, 3.
Nequidquam.—I, 212.—Ennius, ap. Cicéron, de Off., III, 15.
Nescio quis.—I, 148.—Virgile, Egl., III, 103.
Nihil actum.—III, 696.—Arrien, de Exp. Alex., V, 26.
Nihil enim.—I, 608.—Cicéron, Tusc., II, 27.
Nihil est his.—III, 410.—Cicéron, Acad., II, 4.
Nihil est tam populare.—II, 492.—Cicéron, pro Lig., XII.
Nihil est tam utile.—III, 472.—Sénèque, Epist. 2.
Nihil est turpius.—III, 620.—Cicéron, Acad., I, 13.
Nihil in.—III, 558.—Tite-Live, XXXIX, 16.
Nihil itaque.—II, 376.—Source inconnue.
Nihil sanantibus.—III, 342.—Sénèque, Epist. 59.
Nihil supræ.—III, 478.—Horace, Od., II, 18 et 11.
Nihil tam absurde.—II, 312.—Cicéron, de Divin., II, 58.
Nil adeo fieri*.—I, 408.—Lucrèce, III, 183.
Nil adeo magnum.—I, 172.—Lucrèce, II, 1027.
Nihil admirari.—II, 372.—Horace, Epist., I, 6, 1.
Nil ego.—I, 316.-Horace, Sat., I, 5, 44.
Nihil mihi*.—II, 556.—Catulle, LXVIII, 77.
Nil sciri.—II, 230.—Lucrèce, IV, 470.
Nil tam inæstimabile.—II, 452.—Tite-Live, XXXI, 34.
Nimirum hac.—I, 104.—Macrobe, Sat., II, 7.
Nimirum propter.—III, 212.—Auteur inconnu.
Nimirum, quia.—I, 496.—Lucrèce, V, 1431.
Nimirum sapiunt.—III, 268.—Veterum poetarum catalecta, ad
Matronas.
Nimium boni.—II, 212.—Ennius, ap. Cic., de Fin., II, 13.
Nisi purgatum.—I, 414.—Lucrèce, V, 44.
Nisi tu servare.—II, 434.—Ovide, Amor., II, 19, 47.
Nollo barbam.—III, 282.—Martial, X, 90, 9.
Nomen habent.—II, 166.—Martial, IV, 29, 6.
Νόμοις επεσθαι.—I, 176.—Ex traged. græcis Hug. Grotii.
Non æstimatione.—III, 382.—Cicéron, Parad., VI, 3.
Non agimur.—II, 484.—Horace, Epist., II, 201.
Non alia longe.—II, 140.—Lucrèce, V, 1029.
Non alio pacto.—II, 320.—Lucrèce, III, 111.
Non alium videre.—I, 128.—Manilius, I, 529.
Non ampliter.—III, 452.—Poète cité par Nonius, XI, 19.
Non armis.—III, 554.—Source inconnue.
Non emolumento.—II, 452.—Cicéron, de Fin., I, 10.
Non domus.—I, 486.—Horace, Epist., I, 2, 47.
Non enim gazæ.—I, 484.—Horace, Od., II, 16, 9.
Non enim hilaritate.—I, 454.—Cicéron, de Fin., II, 10.
Non enim nos.—II, 236.—Cicéron, de Divin., I, 18.
Non enim parenda.—I, 212.—Cicéron, de Finibus, I, 1.
Non enim patria*.—III, 104.—Cicéron, de Off., III, 23.
Non equidem*.—II, 522.—Perse, V, 19.
Non esse.—I, 472.—Cicéron, Parad., VI, 3.
Non est loquendum.—I, 210.—Sénèque, Epist. 108.
Non est ornamentum.—I, 434.—Sénèque, Ep. 115.
Non est ut.—I, 634.—Sénèque, Théb., I, 190.
Non hoc amplius.—III, 664.—Horace, Od., III, 10, 19.
Non ipse pro.—III, 492.—Horace, Od., IV, 9, 51.
Non jam.—II, 122.—Lucrèce, III, 612.
Non levia.—I, 514.—Virgile, En., XII, 764.
Non nobis.—III, 522.—Psaume CXIII, 1.
Non ponebat.—III, 182.—Ennius, ap. Cicéron, de Off., I, 24.
Non potest.—II, 338.—Cicéron, Acad., II, 41.
Non pudeat.—III, 186.—Auteur inconnu.
Non pudet.—I, 160.—Cicéron, de Nat. deor., I, 30.
Non quidquid.—II, 456.—Perse, Sat., I, 5.
Non recito*.—II, 522.—Horace, Sat., I, 4, 73.
Non schivar.—II, 578.—Tasso, Ger. lib., XII, 55.
Non secus.—III, 648.—Pseudo-Gallus, I, 171.
Non si te.—II, 284.—Horace, Sat., II, 3, 19.
Non siculæ.—I, 110.—Horace, Od., III, 1, 18.
Non sumus.—I, 238.—Sénèque, Epist. 33.
Non tam commutandarum.—III, 400.—Cicéron, de Off., II, 1.
Non tam id sensisse.—II, 250.—Source inconnue.
Non tam omnia.—III, 502.—Tite-Live, XXXIV, 21.
Non tam patientibus.—I, 536.—Tite-Live, XXXVIII, 36.
Non tanta cœlo.—II, 422.—Pline, Hist. nat., II, 8.
Non viriliter*.—II, 592.—Tibulle, Priap., 84.
Non vitæ.—I, 216.—Sénèque, Ep. 106.
Non vultus.—I, 124.—Horace, Od., III, 3, 3.
Nonne videmus, nil.—I, 482.—Lucrèce, II, 16.
Nonne videmus, quid.—I, 602.—Lucrèce, III, 1070.
Nonne vides.—III, 330.—Horace, Sat., I, 4, 409.
Nosse cui.—II, 282.—Lucain, I, 452.
Nostre mal.—III, 554.—Source inconnue.
Nostri nosmet.—III, 252.—Térence, Phor., I, 3, 20.
Notumque.—III, 224.—Virgile, En., V, 21.
Nudaque.—I, 396.—Ovide, Trist., III, 10, 23.
Nul avant*.—I, 32.—Hérodote, I, 32.
Nulla ars.—III, 296.—Cicéron, de Fin. bon. et mal., V, 6.
Nulla placida.—III, 458.—Sénèque, Epist. 26.
Nullæ sunt.—III, 224.—Properce, II, 8, 3.
Nullum intra.—III, 276.—Sénèque, Epist. 95.
Nullum scelus.—II, 26.—Tite-Live, XXVII, 28.
Nullum sine.—II, 538.—Sénèque, Epist. 69.
Nullus in urbe.—II, 384.—Martial, I, 74.
Num tu quæ.—III, 218.—Horace, Od., II, 12, 21.
Nunc caput.—II, 558.—Manilius, Astron., IV, 225.
Nunc levior*.—II, 458.—Perse, Sat., I, 37.
Nunc, si.—II, 490.—Juvénal, XIII, 60.
Nunquam ad liquidum.—III, 532.—Quinte-Curce, IX, 2.
Nunquam adeo.—II, 508.—Juvénal, VIII, 183.
Nunquam naturam.—I, 458.—Cicéron, Tusc., V, 27.
Nunquam simpliciter.—III, 458.—Quinte-Curce, IV, 14.
Nunquam tutelæ.—I, 238.—Sénèque, Epist., 33.

O ego, di*.—III, 282.—Ovide, ex Ponto, I, 4, 49.


O fortes.—III, 688.—Horace, Od., I, 7, 30.
O Iane!—I, 550.—Perse, Sat., I, 58.
O Iupiter.—I, 588.—Plutarque, Traité de l’amour, 12.
O pater.—II, 326.—Virgile, Enéid., VI, 719.
O misero frater.—I, 316.—Catulle, LXVIII, 20.
O miseri! quorum.—III, 254.—Pseudo-Gallus, I, 180.
O prima.—III, 178.—Properce, III, 5, 7.
O sancte.—II, 288.—Cicéron, de Divin., II, 56.
O seclum.—II, 66.—Catulle, XLIII, 8.
Obest plerùmque.—I, 236.—Cicéron, de Nat. deor., I, 5.
Obstetrix.—III, 230.—S. Augustin, De Civ. Dei, I, 18.
Obstupui, steteruntque.—I, 98.—Virgile, En., II, 774.
Obstupuit virgo.—III, 162.—Ovide, Métam., X, 666.
Obuersentur.—I, 428.—Cicéron, Tusc., II, 22.
Occultum quatiens.—I, 658.—Juvénal, XIII, 195.
Occupavi te.—I, 626.—Cicéron, Tusc., V, 9.
Ocyor.—II, 652.—Lucain, V, 405.
Odi homines.—I, 206.—Pacuvius, ap. Gallium, XIII, 8.
Offendor.—III, 230.—Martial, 7, 6.
Officii.—II, 460.—Source inconnue.
Ogni medaglia.—III, 544.—Proverbe italien.
Ole quid.—III, 462.—Martial, VII, 9, 1.
Olim jam.—II, 588.—Sénèque, Epist. 77.
Omne adeo.—III, 214.—Virgile, Georg., III, 244.
Omne magnum.—II, 540.—Tacite, Ann., XIV, 44.
Omnem credo.—I, 116.—Horace, Epist., I, 4, 13.
Omnes clari.—III, 168.—Cicéron, Tusc., II, 24.
Omnes eodem.—I, 110.—Horace, Od., II, 3, 25.
Omnes pene.—II, 226.—Cicéron, Acad., I, 12.
Omnia cum.—II, 270.—Lucrèce, VI, 679.
Omnia fanda.—III, 554.—Catulle, de Nupt. Pel. et Thet., V, 405.
Omnia incerta.—II, 298.—Pline, Nat. Hist., II, 37.
Omnia non.—III, 106.—Properce, III, 9, 7.
Omnia quæ secundum naturam fiunt.—III, 674.—Cicéron, de
Senect., c. 19.
Omnia quæ secundum naturam sunt*.—III, 698.—Cicéron, de
Fin. bon. et mal., III, 6.
Omnia te.—I, 130.—Lucrèce, III, 981.
Omnia vitia.—II, 616.—Sénèque, Epist. 56.
Omnino amicitiæ.—I, 306.—Cicéron, de Amic., 20.
Omnino si.—II, 512.—Cicéron, de Off., I, 31.
Omnis Aristippum.—I, 270.—Horace, Epist., I, 17, 23.
Omnium rerum.—II, 432.—Sénèque, de Benef., VII, 9.
Oncques ne furent.—I, 21.—La Boétie.
Opinio est.—I, 476.—Cicéron, Tusc., II, 22.
Optat ephippia.—I, 92.—Horace, Epist., I, 14, 43.
Optato quam.—III, 198.—Catulle, de Coma Beren., LXIV, 79.

You might also like