在引文框内添加缩进,使引文框连续多页
add indent witin the quotation box, and make the box continous to multi pages
这个自定义报价框很漂亮,但是有两个问题:
1.It不支持缩进
2.盒子不能扩展到新页面
请帮忙解决!
\documentclass{article}
\usepackage{xcolor}
\newcommand{\quotebox}[1]
{
\begin{center}
\fcolorbox{white}{blue!15!gray!15}{
\begin{minipage}{0.7\linewidth}\vspace{10pt}
\center
\begin{minipage}{0.8\linewidth}{\space\Huge``}{#1}{\hspace{1.5em}\break\null\Huge\hfill''}
\end{minipage}
\smallbreak
\end{minipage}
}
\end{center}
}
\begin{document}
\quotebox{
Dr. Sung's father was one of those who was blest in 1909. He used to go up on the hill every morning and pray for his family, his church, and for the community.
He also prayed that God would use his son to bring revival to all China.
Dr. Sung told me that the name of the town, Hinghwa, was the same sound as the words to bring revival to China.
}
\end{document}
您可以修改 \parindent
以在 minipage
:
中缩进
\documentclass{article}
\usepackage{xcolor}
\newcommand{\quotebox}[1]
{
\begin{center}
\fcolorbox{white}{blue!15!gray!15}{
\begin{minipage}{0.7\linewidth}\vspace{10pt}
\center
\begin{minipage}{0.8\linewidth}{\space\Huge``}{\setlength{\parindent}{1.5em}#1}{\hspace{1.5em}\break\null\Huge\hfill''}
\end{minipage}
\smallbreak
\end{minipage}
}
\end{center}
}
\begin{document}
\quotebox{
Dr. Sung's father was one of those who was blest in 1909. He used to go up on the hill every morning and pray for his family, his church, and for the community.
He also prayed that God would use his son to bring revival to all China.
Dr. Sung told me that the name of the town, Hinghwa, was the same sound as the words to bring revival to China.
}
\end{document}
我用mdframe
支持分页!现在看起来好多了!
\documentclass{article}
\usepackage{xcolor}
\usepackage{mdframed}
\newcommand{\quotebox}[1]
{
\begin{mdframed}[linecolor=red,backgroundcolor=blue!15!gray!15]
{\space\Huge``}{
\setlength{\parindent}{1.5em}#1}
{\hspace{1.5em}\break\null\Huge\hfill''}
\end{mdframed}
}
\begin{document}
\quotebox{
Dr. Sung's father was one of those who was blest in 1909. He used to go up on the hill every morning and pray for his family, his church, and for the community.
He also prayed that God would use his son to bring revival to all China.
Dr. Sung told me that the name of the town, Hinghwa, was the same sound as the words to bring revival to China.
}
\end{document}
这个自定义报价框很漂亮,但是有两个问题:
1.It不支持缩进 2.盒子不能扩展到新页面
请帮忙解决!
\documentclass{article}
\usepackage{xcolor}
\newcommand{\quotebox}[1]
{
\begin{center}
\fcolorbox{white}{blue!15!gray!15}{
\begin{minipage}{0.7\linewidth}\vspace{10pt}
\center
\begin{minipage}{0.8\linewidth}{\space\Huge``}{#1}{\hspace{1.5em}\break\null\Huge\hfill''}
\end{minipage}
\smallbreak
\end{minipage}
}
\end{center}
}
\begin{document}
\quotebox{
Dr. Sung's father was one of those who was blest in 1909. He used to go up on the hill every morning and pray for his family, his church, and for the community.
He also prayed that God would use his son to bring revival to all China.
Dr. Sung told me that the name of the town, Hinghwa, was the same sound as the words to bring revival to China.
}
\end{document}
您可以修改 \parindent
以在 minipage
:
\documentclass{article}
\usepackage{xcolor}
\newcommand{\quotebox}[1]
{
\begin{center}
\fcolorbox{white}{blue!15!gray!15}{
\begin{minipage}{0.7\linewidth}\vspace{10pt}
\center
\begin{minipage}{0.8\linewidth}{\space\Huge``}{\setlength{\parindent}{1.5em}#1}{\hspace{1.5em}\break\null\Huge\hfill''}
\end{minipage}
\smallbreak
\end{minipage}
}
\end{center}
}
\begin{document}
\quotebox{
Dr. Sung's father was one of those who was blest in 1909. He used to go up on the hill every morning and pray for his family, his church, and for the community.
He also prayed that God would use his son to bring revival to all China.
Dr. Sung told me that the name of the town, Hinghwa, was the same sound as the words to bring revival to China.
}
\end{document}
我用mdframe
支持分页!现在看起来好多了!
\documentclass{article}
\usepackage{xcolor}
\usepackage{mdframed}
\newcommand{\quotebox}[1]
{
\begin{mdframed}[linecolor=red,backgroundcolor=blue!15!gray!15]
{\space\Huge``}{
\setlength{\parindent}{1.5em}#1}
{\hspace{1.5em}\break\null\Huge\hfill''}
\end{mdframed}
}
\begin{document}
\quotebox{
Dr. Sung's father was one of those who was blest in 1909. He used to go up on the hill every morning and pray for his family, his church, and for the community.
He also prayed that God would use his son to bring revival to all China.
Dr. Sung told me that the name of the town, Hinghwa, was the same sound as the words to bring revival to China.
}
\end{document}