Page LayoutHow to set de spacing between the text and the image caption to `\baselineskip`?

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
lucasmsoares96
Posts: 1
Joined: Tue Sep 26, 2023 2:30 am

How to set de spacing between the text and the image caption to `\baselineskip`?

Post by lucasmsoares96 »

I tried to set everything to `\baselineskip` in the code below, but the space between the text and the image not match with the rest of the text.

Code: Select all

\documentclass[14paper,12pt]{article}
\usepackage{graphicx,lipsum,caption,csquotes,setspace}

\makeatletter
\setstretch{1.5}
\setlength{\intextsep}{\baselineskip}
\setlength{\floatsep}{\baselineskip}
\setlength{\textfloatsep}{\baselineskip}
\setlength{\abovecaptionskip}{0pt}
\setlength{\belowcaptionskip}{0pt}
\setlength{\abovedisplayskip}{\baselineskip}
\setlength{\belowdisplayskip}{\baselineskip}
\setlength{\abovedisplayshortskip}{\baselineskip}
\setlength{\belowdisplayshortskip}{\baselineskip}
\setlength{\jot}{\baselineskip}

\renewcommand\section{
  \@startsection {section}{1}{\z@}
  {-\baselineskip}
  {\baselineskip}
  {\normalfont\normalsize\bfseries}
 }
\makeatother

\begin{document}
\section{ALSDJKFH  ALSKDJFH}
ALSDJKFH  ALSKDJFH LASKJDHF ALSKDJFHALSDKJFHA SLDKJFHALSKDJFHALSKDJFH ALSKDJF ALKSJDHF ALSJDKFHALKJSD FLAKJSD FLKJAHSDF LKJAHSD FLJKAHSDF LKJAHSD FLKJAHSD FLKJAHSDFLKJAHSD LFKJHKLAJSDHFLAKJ SDHFL AKSJDHF LAKJSDHF ALKDJSFH 
\begin{figure}[!htb]
    \centering
        \caption*{ALSDJKFH  ALSKDJFH}
        \includegraphics[width=.6\textwidth]{example-image}
        \caption*{ALSDJKFH  ALSKDJFH}
\end{figure}
ALSDJKFH  ALSKDJFH LASKJDHF ALSKDJFHALSDKJFHA SLDKJFHALSKDJFHALSKDJFH ALSKDJF ALKSJDHF ALSJDKFHALKJSD FLAKJSD FLKJAHSDF LKJAHSD FLJKAHSDF LKJAHSD FLKJAHSD FLKJAHSDFLKJAHSD LFKJHKLAJSDHFLAKJ SDHFL AKSJDHF LAKJSDHF ALKDJSFH 
\end{document}
In the image below, all green rectangles have the same height. But the spacing on top of the image caption is smaller than one `\baselineskip` (yellow rectangle) and the space below is larger than `\baselineskip` (red rectangle). But to my university template, everything should be with the same spacing. How to fix this?

Image

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
Post Reply