answersLogoWhite

0

When quoting the title of a book, the title has to be underlined and the most important words capitalized. when quotina lecture, it depends on the length, if it is a long lecture, use the rules for books. if it is a short lecture, put between double quotation marks and capitalize the important words. (" ")

User Avatar

Wiki User

17y ago

What else can I help you with?

Related Questions

The correct form for quoting a single line from a poem?

"______________"


Do you put quotation marks around a quote inside of a quote?

Yes, when quoting material that already contains a quote, you use double quotation marks for the overall quote and single quotation marks for the nested quote. For example: She said, "He told me, 'I will be there at 5 p.m.'"


How should block quotes be formatted according to the Chicago Manual of Style?

In the Chicago Manual of Style, block quotes should be indented and single-spaced, with no quotation marks at the beginning or end.


Why is h2co3 written in inverted commas?

There is no reason that h2co3 should be written inside of single quotation marks according to chemistry style guides. Single quotes are used for quotes within double quotation marks.


When quoting what someone has said the chapter recommends?

single quotation marks


Can you use both single quotes and double quotes for strings in php?

Yes, you can use both single quotes (' ') and double quotes (" ") for defining strings in PHP. However, the choice between single and double quotes depends on whether you need to include variables or special characters within the string. Single quotes treat everything as a literal string, while double quotes allow for variable interpolation and escape sequences.


How should I format "box quotes" in APA style?

In APA style, "box quotes" should be indented, single-spaced, and without quotation marks. They should also have a different font style or size to set them apart from the rest of the text.


What is the difference between single quotes and double quotes?

in programming, single quotes are for characters, and double quotes are for string, but in php, javascript, html, css i don't see any difference between the two.


How to format block quotes in Chicago style?

In Chicago style, block quotes are indented 0.5 inches from the left margin, without quotation marks. The entire quote should be single-spaced, and the first line should not be indented further.


Why is Microsoft word making apostrophes and quotation marks go the wrong way around?

They're actually not the wrong way around. Single and double quotes that are at the beginning of the quote should be hooking to the left, while closing quotes should be hooking to the right. Original typewriters had only one key for single and double quotes, therefore we got "used" to seeing them all the same way; Microsoft corrected this by having opening and closing quotes they way they were supposed to be.


What is the difference between single quotes and double quotes in PHP?

There's not too much of a difference. Most people prefer using double quotes because of the fact that you can do this: <?php $var2 = "Look at {$var1}!"; ?> which you can't do the {} thing with single quotes. You would have to do <?php $var = 'Look at '.$var1.'!'; ?>


Do single-quoted string literals have any characteristics difference from those of double-quoted string literals?

The literals with single quotes are Characters and can have a width of only one. Ex: 'y' or 'a' etc Strings cannot be declared using single quotes. They have to be declared with double quotes.