Veja a caixa azul na captura de tela. Eu tenho um parágrafoDENTROuma enumeração. Quero remover o recuo para que o parágrafo fique alinhado à esquerda SEM recuo.
Abaixo está meu código de trabalho:
\documentclass[12pt,letterpaper]{article}
\usepackage[utf8]{inputenc}
\usepackage[margin=1in,footskip=0.25in]{geometry}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{mathptmx}
\linespread{1.1}
\usepackage{graphicx}
\usepackage{enumitem}
\usepackage{caption}
\title{\textbf{CHECKLISTS}}
\author{}
\date{}
\begin{document}
\maketitle
This is a paragraph before the enumeration. This is a paragraph before the enumeration. This is a paragraph before the enumeration. This is a paragraph before the enumeration. This is a paragraph before the enumeration. \par
\noindent\rule{\textwidth}{1pt}
\begin{enumerate}
\item First line. First line. First line. First line. First line. First line. First line. First line.
\item Second line. Second line. Second line. Second line. Second line. Second line. Second line.
\item Third line. Third line. Third line. Third line. Third line. Third line. Third line. Third line. Third line.
This is a paragraph \textbf{WITHIN the enumeration}. This is a paragraph \textbf{WITHIN the enumeration}. This is a paragraph \textbf{WITHIN the enumeration}. This is a paragraph \textbf{WITHIN the enumeration}.
\item Fourth line. Fourth line. Fourth line. Fourth line. Fourth line. Fourth line. Fourth line.
\end{enumerate}
The enumeration has ended here.\par
\noindent\rule{\textwidth}{1pt}
This is a new story. This is a new story. This is a new story. This is a new story. This is a new story. This is a new story. This is a new story. This is a new story.
\end{document}
Responder1
A meu ver, o problema visual/estético é causado pelo fato de a mesa da esquerda ser um pouco mais larga que a 0.5\linewidth
. Depois que você atribui larguras relativas mais apropriadas aos minipage
ambientes - digamos, 0.65\linewidth
e 0.35\linewidth
- a diferença entre os layouts das tabelas dentro e fora do enumerate
ambiente é muito menos aparente.
De qualquer forma, a menos que suas tabelas tenham muito espaço limitado (o que não é o caso aqui), eu gostarianãobagunçar o layout do enumerate
ambiente.
Separadamente, simplifique suas tabelas, livrando-se da infinidade de \multicolumn{1}{|l|}{...}
wrappers \multicolumn{1}{l|}{...}
e livrando-se do tabular
ambiente "externo". Dar à mesa uma "aparência" mais aberta - usando menos réguas horizontais, mas bem espaçadas, também pode ser uma boa ideia. Veja a captura de tela e o código a seguir para algumas sugestões de codificação específicas.
\documentclass[12pt,letterpaper]{article}
%\usepackage[utf8]{inputenc} % that's the default nowadays
\usepackage[margin=1in,footskip=0.25in]{geometry}
\usepackage{amsmath,amssymb}
\usepackage{mathptmx}
%\linespread{1.1}
\usepackage{setspace} \setstretch{1.1}
\usepackage{parskip} % zero \parindent, non-zero \parskip
\usepackage{enumerate} % I'd use 'enumitem' package
\usepackage{caption}
\captionsetup[table]{textfont=bf}
\usepackage{booktabs}
\begin{document}
\rule{\linewidth}{1pt}
\begin{enumerate}
\item First line. First line. First line. First line. First line. First line. First line. First line.
\item Second line. Second line. Second line. Second line. Second line. Second line. Second line.
\item Third line. Third line. Third line. Third line. Third line. Third line. Third line. Third line.
% Table 1
\begin{minipage}[t]{0.65\linewidth}
\captionof{table}{Major Losses from 2020 to 2023}
\centering
\begin{tabular}{@{}llr@{}}
\toprule
Year & Bets & \multicolumn{1}{l}{Loss} \\
\midrule
2020 & AMZN, AAPL, GOOG, META & \$12,067 \\
2021 & PFE, T & \$10,559 \\
2022 & LULU & \$10,565 \\
2023 & BABA, C, WFC & \$14,390 \\
\midrule[\heavyrulewidth]
& \multicolumn{1}{r}{\textbf{Total}} & \textbf{\$42,581}
\end{tabular}
\end{minipage}%
%
% Table 2
\begin{minipage}[t]{.35\linewidth}
\captionof{table}{Largest Losses}
\centering
\begin{tabular}{@{}lr@{}}
\toprule
Company & \multicolumn{1}{l}{Loss} \\
\midrule
BABA & \$11,410 \\
X & \$11,854 \\
D & \$11,879 \\
MU & \$12,565 \\
OUST & \$8,752 \\
MSFT & \$3,804 \\
\midrule[\heavyrulewidth]
\multicolumn{1}{r}{\textbf{Total}} & \textbf{\$60,264}
\end{tabular}
\end{minipage}
\item Fourth line. Fourth line. Fourth line. Fourth line. Fourth line. Fourth line. Fourth line.
\end{enumerate}
The enumeration ends here.
\rule{\linewidth}{1pt}
This is a new story. This is a new story. This is a new story. This is a new story.
This is a new story. This is a new story. This is a new story. This is a new story.
\begin{center}
% Table 3
\begin{minipage}[t]{0.65\linewidth}
\captionof{table}{Major Losses from 2020 to 2023}
\centering
\begin{tabular}{@{}llr@{}}
\toprule
Year & Bets & \multicolumn{1}{l}{Loss} \\
\midrule
2020 & AMZN, AAPL, GOOG, META & \$12,067 \\
2021 & PFE, T & \$10,559 \\
2022 & LULU & \$10,565 \\
2023 & BABA, C, WFC & \$14,390 \\
\midrule[\heavyrulewidth]
& \multicolumn{1}{r}{\textbf{Total}} & \textbf{\$42,581}
\end{tabular}
\end{minipage}%
%
% Table 4
\begin{minipage}[t]{.35\linewidth}
\captionof{table}{Largest Losses}
\centering
\begin{tabular}{@{}lr@{}}
\toprule
Company & \multicolumn{1}{l}{Loss} \\
\midrule
BABA & \$11,410 \\
X & \$11,854 \\
D & \$11,879 \\
MU & \$12,565 \\
OUST & \$8,752 \\
MSFT & \$3,804 \\
\midrule[\heavyrulewidth]
\multicolumn{1}{r}{\textbf{Total}} & \textbf{\$60,264}
\end{tabular}
\end{minipage}
\end{center}
\rule{\linewidth}{1pt}
\end{document}
Termo aditivopara abordar a questão revisada do OP,viz.,
Tudo o que quero é remover o recuo DENTRO da enumeração de um parágrafo.
Para isso, basta (a) ter certeza de que o enumitem
pacote está carregado - como é o caso da consulta revisada postada pelo OP, (b) inserir
\end{enumerate}
logo antes
This is a paragraph \textbf{WITHIN the enumeration}.
This is a paragraph \textbf{WITHIN the enumeration}.
This is a paragraph \textbf{WITHIN the enumeration}.
This is a paragraph \textbf{WITHIN the enumeration}.
e (c) inserir
\begin{enumerate}[resume]
imediatamentedepoisdesse número, mas também antes da próxima \item
directiva.
Responder2
Idéia roubada da aula de exame.
\documentclass[12pt,letterpaper]{article}
\usepackage[utf8]{inputenc}
\usepackage[margin=1in,footskip=0.25in]{geometry}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{mathptmx}
\linespread{1.1}
\usepackage{graphicx}
\usepackage{enumitem}
\usepackage{caption}
\makeatletter
\newcommand{\fullwidth}[1]{% #1 = text
\par\hspace*{-\@totalleftmargin}\parbox{\textwidth}{\strut #1\strut}\par}
\makeatother
\title{\textbf{CHECKLISTS}}
\author{}
\date{}
\begin{document}
\maketitle
This is a paragraph before the enumeration. This is a paragraph before the enumeration. This is a paragraph before the enumeration. This is a paragraph before the enumeration. This is a paragraph before the enumeration. \par
\noindent\rule{\textwidth}{1pt}
\begin{enumerate}
\item First line. First line. First line. First line. First line. First line. First line. First line.
\item Second line. Second line. Second line. Second line. Second line. Second line. Second line.
\item Third line. Third line. Third line. Third line. Third line. Third line. Third line. Third line. Third line.
\fullwidth{This is a paragraph \textbf{WITHIN the enumeration}. This is a paragraph \textbf{WITHIN the enumeration}. This is a paragraph \textbf{WITHIN the enumeration}. This is a paragraph \textbf{WITHIN the enumeration}.}
\item Fourth line. Fourth line. Fourth line. Fourth line. Fourth line. Fourth line. Fourth line.
\end{enumerate}
The enumeration has ended here.\par
\noindent\rule{\textwidth}{1pt}
This is a new story. This is a new story. This is a new story. This is a new story. This is a new story. This is a new story. This is a new story. This is a new story.
\end{document}