我有一个非常简单的问题,但我还找不到解决方案......与页面边缘相比,如何将以下引文置于列表的中心:
\documentclass[11pt]{report}
\usepackage{outline}
\usepackage{graphicx}
\graphicspath{ {./images/} }
\usepackage{pmgraph}
\usepackage[normalem]{ulem}
\setlength{\oddsidemargin}{0in}
\setlength{\evensidemargin}{0in}
\setlength{\topmargin}{0in}
\setlength{\headsep}{-.25in}
\setlength{\textwidth}{6.5in}
\setlength{\textheight}{8.5in}
%--------------------Indention
\setlength{\parindent}{1cm}
\begin{document}
\begin{itemize}
\item bla bla bla
\begin{itemize}
\item bla bla bla
\begin{quote}
\textbf{veryveryveryverylongtextallattachedwithoutanyspacesveryveryveryverylongtextallattachedwithoutanyspaces}
\end{quote}
\end{itemize}
\end{itemize}
\end{document}
答案1
如果你使用
\begin{flushright}
\hspace*{-\textwidth}\textbf{veryveryveryverylongtextallattachedwithoutanyspacesveryveryveryverylongtextallattachedwithoutanyspaces}
\end{flushright}
那么它与右边距齐平,但仍然超出页面左侧。如果您的实际文本如此之大,您可以使用\small
...