General ⇒ quote paragraphs with inconsistent spacing
quote paragraphs with inconsistent spacing
Also, on occasion a word will stick out beyond the right margin, as if it didn't know how to hyphenate it. Is there something I can tweak for that?
Thanks in advance for any help.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
quote paragraphs with inconsistent spacing
the problem should be independent of the editor used. Could you post a minimal working example that shows this unwanted behaviour? Because when I used the quote environment the spacing used to be correct, for instance in this short example:
Code: Select all
\documentclass[a4paper,10pt]{article}
\usepackage[english]{babel}
\usepackage{blindtext}
\begin{document}
\blindtext
\begin{quote}
\blindtext
\end{quote}
\blindtext
\end{document}
Stefan
Re: quote paragraphs with inconsistent spacing
- Attachments
-
- quoteprob.pdf
- quote spacing problem
- (10.27 KiB) Downloaded 242 times
quote paragraphs with inconsistent spacing
Code: Select all
\documentclass[a4paper,10pt]{article}
\usepackage[english]{babel}
\usepackage{blindtext}
\begin{document}
\blindtext
\begin{quote}
\scriptsize
{\blindtext
\blindtext}
\normalsize
\end{quote}
\blindtext
\end{document}
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Re: quote paragraphs with inconsistent spacing
Stefan
Re: quote paragraphs with inconsistent spacing
The reason I was putting it in at all was because it didn't go back to normal after the ending brace, but seems to work in the one case I removed it now. So I'll start removing those and see if the problem of not ending scriptsize returns.
Also, for the hyphens, I keep getting the error "not a character" in many cases, even in ordinary words. Any ideas?
quote paragraphs with inconsistent spacing
For example,
Code: Select all
\documentclass[a4paper,10pt]{article}
\usepackage[english]{babel}
\usepackage{blindtext}
\begin{document}
\blindtext
\begin{quote}
\scriptsize
{\blindtext
\blindtext}
\scriptsize{1,2,3}This should be normal size.
\end{quote}
\blindtext
\end{document}
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Re: quote paragraphs with inconsistent spacing
Stefan
quote paragraphs with inconsistent spacing
Anointed is one, I'll have to look up the others.Stefan_K wrote:Which words are causing this error message?
Stefan
ADDED: This causes the error too:
Code: Select all
\hyphenation{pro-jects,lang-uage}
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
quote paragraphs with inconsistent spacing
\scriptsize lasts until the next size changing command or until the end of the environment/group. You can change the size of a single word inside a paragraph if you want.webhead wrote:It seems that scriptsize lasts for the whole paragraph, is that right? So then I have to use normalsize for sentence fragments?
Stefan