gpt4 book ai didi

latex - Center Latex lST列表

转载 作者:行者123 更新时间:2023-12-02 09:43:42 26 4
gpt4 key购买 nike

这让我发疯。

我想在 LaTeX 中将列表居中。

经过 3 个小时的尝试,这里有一些代码:

\lstset{ %
caption=Descriptive Caption Text,
label=lst:descr_capti_text,
basicstyle=\ttfamily\footnotesize\bfseries,
frame=tb,
linewidth=0.6\textwidth
}
\centering\begin{tabular}{c}
\begin{lstlisting}
printf("this should be centered!");
\end{lstlisting}
\end{tabular}

这会将列表放在中心,但不将其标题放在右侧。如果我取出表格,则标题会居中,但代码会移至左侧! :(

谢谢。

最佳答案

您应该考虑使用xleftmarginxrightmargin而不是使用线宽(参见texdoc列表,第4.10章)。以下代码无需任何中心或小型页面环境即可运行:

\lstset{
caption=Descriptive Caption Text,
basicstyle=\footnotesize, frame=tb,
xleftmargin=.2\textwidth, xrightmargin=.2\textwidth
}
\begin{lstlisting}
printf("this should be centered!");
\end{lstlisting}

关于latex - Center Latex lST列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3106419/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com