为什么列表中的第二项要进一步缩进

为什么列表中的第二项要进一步缩进

在此处输入图片描述

\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{pdfpages}
\usepackage[margin=1in]{fullpage}
\usepackage{microtype}
\usepackage{amsmath}
\usepackage{amssymb}

\begin{document}

\begin{enumerate}
    \item \textbf{ Calculate the average volume of titrant used.}
    
    \medskip $ V_{Avg} = \frac{8.30 \ mL + 8.25 \ mL + 6.45 \ mL + 7.95 \ mL}{4} = 7.74 \ mL$ \\
    
   
    \medskip \newline  \therefore \text{The average titrant used was 7.74 mL.} 
    
    \item \textbf{Write a balanced chemical equation (including states) for the reaction between acetic
acid and sodium.} 

$ CH_{3}COOH_{ (aq) } + NaOH_{ (aq) } \longrightarrow NaCH_{3}COOH_{ (aq} ) + H_{2}O_{ (l) }$

\end{enumerate}



\end{document}

我怎样才能使第一项和第二项相互一致?

答案1

您的代码包含多个错误和不准确之处。如果您忽视错误和警告信息,则后果自负。

  • fullpage软件包无法识别选项margin=1in。正如@user238301在评论中所建议的那样,最好使用\usepackage[margin=1in]{geometry}而不是加载fullpage软件包

  • \newline指令不正确。请删除它。

  • \therefore必须在数学模式下发生。

  • 中的空格字符\textbf{ Calculat错误。请将其删除。

  • 代码块

    \medskip 
    $ V_{Avg} = \frac{8.30 \ mL + 8.25 \ mL + 6.45 \ mL + 7.95 \ mL}{4} = 7.74 \ mL$ \\
    \medskip 
    

    只是坏的。很抱歉没能粉饰事实。我只能建议你学会使用(a)siunitx排版科学单位的包和(b)显示数学模式,然后开始写

    \[
    V_{\mathrm{Avg}} = \frac{\SI{8.30}{mL} + \SI{8.25}{mL} + \SI{6.45}{mL} + \SI{7.95}{mL}}{4} 
    = \SI{7.74}{mL}
    \]
    
  • 无需将“普通滴定剂...”装入\text{...}包装纸中。

  • 有几种软件包可以帮助排版化学方程式。我建议你熟悉其中的一个,比如说,软件包mhchem,然后替换

    $ CH_{3}COOH_{ (aq) } + NaOH_{ (aq) } \longrightarrow NaCH_{3}COOH_{ (aq} ) + H_{2}O_{ (l) }$
    

    \[
    \ce{CH3COOH_{(aq)} + NaOH_{(aq)} -> NaCH3COOH_{(aq)} + H2O_{(l)}}
    \]
    

    这看起来不是吗很多更容易吗?而且输出看起来也好多了。

  • 这不是一个彻头彻尾的错误,但对正派排版是一种侵犯:除非你想给人留下这样的印象:在你的读者看来,没有明显的理由将项目的说明呈现为大胆的

总而言之,以下是我呈现原始材料的方式。

在此处输入图片描述

\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc} % unless you have a good reason for using 'OT1'
\usepackage{graphicx}
\usepackage{pdfpages}
%\usepackage{fullpage} % option 'margin=1in' not legal
\usepackage[margin=1in]{geometry}
\usepackage{microtype}
\usepackage{amsmath}
\usepackage{amssymb}

\usepackage{siunitx} % <-- new, for '\SI' macro
\usepackage{mhchem}  % <-- new, for '\ce' macro
\begin{document}

\begin{enumerate}
\item Calculate the average volume of titrant used.
\[
V_{\mathrm{avg}} = \frac{\SI{8.30}{mL} + \SI{8.25}{mL} + \SI{6.45}{mL} + \SI{7.95}{mL}}{4} = \SI{7.74}{mL}
\]
$\therefore$ The average titrant used was \SI{7.74}{mL}. 
    
\item Write a balanced chemical equation (including states) for the reaction between acetic acid and sodium.
\[
\ce{CH3COOH_{(aq)} + NaOH_{(aq)} -> NaCH3COOH_{(aq)} + H2O_{(l)}}
\]
\end{enumerate}

\end{document}

相关内容