Mi sangría dejó de funcionar después de una sección de mi documento. Aquí está el código inicial:
\documentclass[11pt]{article}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{lastpage}
\usepackage[margin=0.85in]{geometry}
\usepackage{graphicx}
\usepackage{tabu}
\usepackage{textcomp,gensymb}
\usepackage{caption}
\usepackage{float}
\usepackage{indentfirst}
\usepackage{multirow}
\usepackage{array}
\usepackage{subcaption}
\setlength{\parindent}{6.5ex}
\setlength{\parskip}{1.5em}
\begin{document}
This is the part when it does work anymore.
\section{blah blah}
Blah blah blah, $math$, blah blah, like blah:
\begin{gather*} more math \\ more math \\ more math \end{gather*}
Blah blah...
\end{document}
Cuando empiezo a incluir entornos matemáticos dentro y fuera de los párrafos, parece que ya no funciona, por mucho que lo intente. Intenté usar \indent
, usando \setlength{...}
, especificando todos los párrafos usando \par
al final, terminando con \\
, nada funciona.
Esta es la parte en la que ya no funciona.
\section{blah blah}
Blah blah blah, $math$, blah blah, like blah:
\begin{gather*} more math \\ more math \\ more math \end{gather*}
Blah blah...
Después de esta sección, no funciona ninguna sangría.
Respuesta1
Lo resolví. Después de la nueva sección, simplemente agregue el comando:
\setlength{\parindent}{...}
Entonces vuelve a funcionar. Probablemente esto me dé algunos errores azules, pero he aprendido a ignorarlos.
Ex.
\section{blah blah}
\setlength{\parindent}{6.5ex}
blah blah blah (is indented)