具有背景颜色和不同字体的引用

具有背景颜色和不同字体的引用

我能做到这一点回答在页面左侧创建引言。但是,它缺少一些参数来提高其可读性,例如字体系列和背景颜色。

\documentclass[12pt,a4paper]{article}   
\usepackage{lipsum}
\usepackage{Archivo}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{wrapfig}

%%%%%%%%this is for the pullquote%%%%%%%%
\newenvironment{pullquote}
    {\wrapfigure{o}{2in}\large}
    {\endwrapfigure}


\usepackage{sectsty}
\usepackage{xcolor}
\DeclareUnicodeCharacter{202F}{\,}
\usepackage[colorlinks,hidelinks,urlcolor=blue,bookmarks=false,hypertexnames=true]{hyperref} 

\author{x}
\title{Title}
\begin{document}
    \maketitle
    
    \section{This is some section title}
    
\lipsum[1]
\begin{pullquote}
    A quotation to be shown here.
\end{pullquote}
\lipsum[3]
    
\end{document}

在此处输入图片描述

所以我想给引文添加背景颜色,如果可能的话,更改字体系列。但我不知道把这些参数放在哪里。(我猜是在\newenvironment{pullquote}……但问题究竟在哪里)

有谁可以帮忙吗?

答案1

例如使用

%%%%%%%%this is for the pullquote%%%%%%%%
\newenvironment{pullquote}[1]
{\wrapfigure{o}{2in}%
    \itshape\large%
    \color{red}#1%  
    }
{\color{black}\endwrapfigure}

你可以得到

A

相关内容