Tagged Questions
6
votes
4answers
332 views
Formatting new environment with borders
I have defined myself a new environment as below:
\newenvironment{myquote}{\list{}{\leftmargin=0.3in\rightmargin=0.3in}\item[]}{\endlist}
What I would like to do here is to be able to format this ...
3
votes
1answer
376 views
Issue with \newenvironment and framed and quotation
\documentclass[a4paper,10pt]{article}
\usepackage{framed}
\usepackage{lipsum}
\newenvironment{nb}
{\begin{framed}\begin{quotation}}
{\end{framed}\end{quotation}}
\begin{document}
\begin{nb}
...
6
votes
4answers
4k views
How to use the quote environment inside a \framebox?
Now I run into a problem with frameboxes. Why is the following
not valid LaTeX code?
\framebox{
The following text was taken from:
\begin{quote}
Erik Pickles: How it will end
\end{quote}
}
I get ...