captionof

如何在 `lstlisting` 环境中使标题显示而不显示标题文本?
captionof

如何在 `lstlisting` 环境中使标题显示而不显示标题文本?

我发现只有非空的标题文本才能使标题出现在输出文件中,即使是空格字符\ 。这是一个例子: \documentclass{article} \usepackage{listings} \lstset{ language=C++, frame = t } \usepackage{caption} \captionsetup{ singlelinecheck = false } \begin{document} \begin{lstlisting}[caption={\ }] %note the character '\ ' here! c...

Admin

与图形标签对齐的文本
captionof

与图形标签对齐的文本

如何添加与图形标签对齐的文本,类似于脚注(无编号)?我尝试过,但没有成功,如下图红色所示 \documentclass[12pt,a4paper]{article} \usepackage{graphicx, caption,lipsum} \begin{document} \lipsum[1-1] \begin{center} \includegraphics[width=3cm]{example-image} \captionof{figure}{ Image } \end{center} \lipsum[2-2] \end{document...

Admin

使用`floatrow`,如何在表格的第一行添加标题?
captionof

使用`floatrow`,如何在表格的第一行添加标题?

我有一个大项目,floatrow使用了该包。我发现当使用这个包时,放在我表格内的标题现在显示在外面。我找不到任何方法把它放回里面。 这是我的 MWE: \documentclass{article} % Document class \usepackage{hyperref} % For hyperlinks \usepackage{siunitx} % For typesetting numbers and units \usepackage{nicematrix} % For creating tables \usepackage{caption} % ...

Admin

如何为子浮点数中的表格添加标题?
captionof

如何为子浮点数中的表格添加标题?

我正在尝试使用 subfloat 为作为子图包含的表格添加标题。我使用了它,\captionof但它弹出错误。有人能帮助我吗? \begin{figure} \subfloat[]{ \label{tab-travelplansymbols} \begin{adjustbox}{scale=0.7,valign=b} \renewcommand{\arraystretch}{1.2} \begin{tabular}{l l l l} \hline \multirow{2}{*}{State...

Admin

Lyx 在索引我的表格时跳过数字
captionof

Lyx 在索引我的表格时跳过数字

我使用代码框和代码“ \captionof{table}{*}”后跟表格来表示未编号子部分中的 3 个表格。然而,在我将其导出为 pdf 后,这三个表格的索引为 1、3 和 5。我确保表格之间没有任何内容,但它们仍然是索引 1,3,5,而不是 1,2,3。 您能否提供一些解决此问题的指导?谢谢! ...

Admin

海报中项目的对齐
captionof

海报中项目的对齐

在 itemize 环境中,我遇到以下问题:使用标题,图片后的第一个项目不再与图片前的项目对齐。删除标题命令,没有问题。这是我的代码: \documentclass{article} \usepackage{graphicx} % Required for including images \usepackage[font=small,labelfont=bf]{caption} \begin{document} \begin{itemize} \item blablabla. \begin{minipage}[c]{0.5\linewidth} ...

Admin

如何为多个表格添加标题
captionof

如何为多个表格添加标题

我想为 4 个表格添加标题。标签应为“表1-4:标题”。我的表格如下所示: \begin{tabular}{c|c} 1&2\\ 3&4 \end{tabular} \begin{tabular}{c|c} 5&6\\ 7&8 \end{tabular} \begin{tabular}{c|c} 1&2\\ 3&4 \end{tabular} \begin{tabular}{c|c} 5&6\\ 7&8 \end{tabular} \captionof{table}{caption} ...

Admin

如何在 tabularx 之前添加标题?\captionof{table}{11111}\label{11} 和 \begin{tabularx}{\textwidth} 导致我的缩进问题
captionof

如何在 tabularx 之前添加标题?\captionof{table}{11111}\label{11} 和 \begin{tabularx}{\textwidth} 导致我的缩进问题

在此代码(\captionof{table}{111})之前缩进是正常的,在此代码之后缩进消失。当我删除它时,缩进是正常的。那么,如何为这个 tabularx 添加标题(caption)? %\usepackage{indentfirst}%doesn't do anything to solve the problem %\setlength{\parindent}{2em}%doesn't do anything to solve the problem \noindent\setlength\tabcolsep{4pt} \captionof{tab...

Admin

将图形(在表格环境中)与右边距对齐
captionof

将图形(在表格环境中)与右边距对齐

\usepackage{graphicx} \usepackage{multicol} \usepackage{tabularx} \usepackage{booktabs} \usepackage{multirow} \usepackage{siunitx} \usepackage[export]{adjustbox} \usepackage{wrapfig} \begin{document} \begin{table}[!htb] \begin{minipage}{.5\linewidth} \caption{Distribution ...

Admin

使用图形和方程式为非浮动环境添加标题
captionof

使用图形和方程式为非浮动环境添加标题

我有以下内容: \begin{align*} \begin{split} \includegraphics[width=0.3\textwidth]{option 3 dynamics.png} \end{split} \hfill \begin{split} \dot{m}_A = \alpha_0 + \alpha \left( \frac{1}{1 + p_C^n} * \frac{1}{1 + p_A^n} \right) - m_A\\ \dot{m}_B = \alpha_0 + \frac{\alpha}...

Admin

Tabularx 的交叉引用和标题?
captionof

Tabularx 的交叉引用和标题?

\documentclass[12pt]{article} \usepackage{float} \usepackage{tabularx} \title{Tabularx Test} \begin{document} \maketitle \begin{center} \begin{tabularx}{100pt}{c|c|c|} \multicolumn{1}{c}{ } &\multicolumn{1}{c}{$\omega_1$} &\multicolumn{1}{c}{$\omega_2$} \\ \cline{2-...

Admin