我为引文环境写了一些代码。我希望只有当引文足够短到可以放在一行中时,引文才会居中,否则引文就不应该居中。这是代码
\documentclass{article}
\usepackage{changepage, xparse}
\ExplSyntaxOn
\NewDocumentEnvironment{ myquote }{ o }{
\begin{center}
\begin{adjustwidth}{50pt}{50pt}
\begin{itshape}
}{
\end{itshape}
\end{adjustwidth}
\end{center}
\IfValueT{ #1 }{
\vspace{-0.15cm}
\begin{adjustwidth}{0pt}{20pt}
\flushright { \small -\hspace{2pt}#1\hspace{2pt}- }
\end{adjustwidth}
\vspace{0.3cm}
}
}
\ExplSyntaxOff
\begin{document}
\begin{myquote}[Someone]
This should be centered.
\end{myquote}
\begin{myquote}[Someone else]
This is a longer quote and therefore shouldn't be centered. This is some more text.
\end{myquote}
\end{document}
我怎样才能做到这一点?
答案1
它使用,并检查内\NewEnviron
斜体的宽度。如果小于,则将添加到 之前。\BODY
\hbox
\linewidth
\hfil
\BODY
\documentclass{article}
\usepackage{changepage, environ}
\usepackage[pass,showframe]{geometry}
\NewEnviron{myquote}[1][\relax]{
\begin{center}
\begin{adjustwidth}{50pt}{50pt}
\setbox0=\hbox{\itshape\BODY}%
\begin{itshape}
\ifdim\wd0>\linewidth\relax\BODY\else\hfil\BODY\fi
\end{itshape}
\end{adjustwidth}
\end{center}
\ifx\relax#1\relax\else
\vspace{-0.15cm}
\begin{adjustwidth}{0pt}{20pt}
\flushright { \small -\hspace{2pt}#1\hspace{2pt}- }
\end{adjustwidth}
\vspace{0.3cm}
\fi
}
\begin{document}
\begin{myquote}[Someone]
This should be centered.
\end{myquote}
\begin{myquote}[Someone else]
This is a bit longer, but should still be centered.
\end{myquote}
\begin{myquote}[Someone else]
This is a longer quote and therefore shouldn't be centered. This is some more text.
\end{myquote}
\end{document}