論文のフォーマットに問題があります。これらの問題を解決するために助けてください。よろしくお願いします
- サブ図に図ラベルを追加する方法。現在は次のように表示されていますa) キャプション.....しかし、私はそれを図2.1(a) キャプション....
- 私は手に入れたい図1.1 例図の代わりに1.1 例図図のリストで。パッケージを使用できません
tocloft
。テストしました。 のせいで動作しませんtitlesec and titletoc
。私は自分のフォーマットでこれらのパッケージの両方を広範囲に使用しました。 - テーブルのリストにも同じことをしたいのですが、次のように表示されます。2.1 ABCしかし、私は表2.1 abc
\textit{...}
毎回入力せずに図や表を太字で引用する方法はありますか?
例えば6ページには「図2.1」のような画像が載っています。しかし、「図2.1」 サンプル画像を表示します。
- 目次からドットを削除する必要があります
実用的なmweはここにあります。完全なフォーマットはここにあります -論文のフォーマット - 目次、図
\documentclass[12pt,a4paper]{report}
\usepackage{setspace}
\usepackage{lipsum}
\usepackage{graphicx}
\usepackage{subcaption}
\usepackage{titlesec}
\usepackage{titletoc}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\begin{document}
\tableofcontents
\listoffigures
\listoftables
\setstretch{1.5}
\chapter{SIMULATION}
\section{Example section}
\lipsum[2-3]
\begin{figure}[!htb]
\centering
\includegraphics{example-image-a}
\caption{Example figure}
\end{figure}
\chapter{SIMULATION2}
\section{Example section 2}
\begin{figure}[!htb]
\begin{subfigure}{.48\linewidth}
\centering
\includegraphics[width=\linewidth]{example-image-b}
\caption{Example figure 2.1}
\end{subfigure}
\begin{subfigure}{.48\linewidth}
\centering
\includegraphics[width=\linewidth]{example-image-c}
\caption{Example figure 2.2}
\end{subfigure}
\caption{Example figure 2}
\label{fig2}
\end{figure}
``Fig.~\ref{fig2}'' shows an example image.
\end{document}
答え1
すべての要件を実装できたかどうかはわかりません。 1 つの質問で 1 つのことを尋ねることをお勧めします。
\documentclass[12pt,a4paper]{report}
\usepackage{setspace}
\usepackage{lipsum}
\usepackage{graphicx}
\usepackage[labelfont=bf, labelsep=space, belowskip=-5pt, aboveskip=10pt]{caption}
\usepackage{subcaption}
\usepackage{titlesec}
\usepackage{titletoc}
\usepackage{xpatch}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\renewcommand\thesubfigure{\thefigure~(\alph{subfigure})}
\renewcommand\thesubtable{\thetable~(\alph{subtable})}
\makeatletter
\renewcommand\p@figure{Fig.~}
\renewcommand\p@subfigure{Fig.~}
\renewcommand\p@table{Table.~}
\renewcommand\p@subtable{Table.~}
\makeatother
\DeclareCaptionLabelFormat{subfigure-label}{Fig.~#2}
\DeclareCaptionLabelFormat{subtable-label}{Table.~#2}
\DeclareCaptionListFormat{figurelist}{#1#2}
\DeclareCaptionListFormat{tablelist}{#1#2}
\captionsetup[subfigure]{labelformat=subfigure-label}
\captionsetup[subtable]{labelformat=subtable-label}
\captionsetup[figure]{listformat=figurelist}
\captionsetup[table]{listformat=tablelist}
% dotless toc entries
\makeatletter
\xpatchcmd\@dottedtocline
{\leaders\hbox{$\m@th\mkern\@dotsep mu\hbox{.}\mkern\@dotsep mu$}}
{}
{}{\fail}
% enlarge label width
\renewcommand*\l@figure{\@dottedtocline{1}{1.5em}{4em}}
\renewcommand*\l@table{\@dottedtocline{1}{1.5em}{5em}}
\makeatother
\usepackage{cleveref}
\crefname{figure}{}{}
\crefname{table}{}{}
\creflabelformat{figure}{#2\textbf{#1}#3}
\creflabelformat{table}{#2\textbf{#1}#3}
\begin{document}
\tableofcontents
\listoffigures
\listoftables
%\setstretch{1.5}
\chapter{SIMULATION}
\section{Example section}
%\lipsum[1]
\begin{figure}[!htb]
\centering
\includegraphics{example-image-a}
\caption{Example figure}
\end{figure}
\chapter{SIMULATION2}
\section{Example section 2}
\begin{table}
\caption{text}\label{tab1}
\end{table}
\begin{figure}[!htb]
\begin{subfigure}{.48\linewidth}
\centering
\includegraphics[width=\linewidth]{example-image-b}
\caption{Example figure 2.1}
\end{subfigure}
\begin{subfigure}{.48\linewidth}
\centering
\includegraphics[width=\linewidth]{example-image-c}
\caption{Example figure 2.2}
\end{subfigure}
\caption{Example figure 2}
\label{fig2}
\end{figure}
``\cref{fig2}'' shows an example image.5
\end{document}