删除首字母样式

删除首字母样式

我借用了 Overleaf 上的模板来制作报告。但是,我想将第一个字母“N”改回普通字母样式。

在此处输入图片描述

谢谢大家!

新版:抱歉没有附上代码,原代码也附在这里。

\documentclass[11pt, titlepage]{article}

\usepackage[margin=1in]{geometry}
\usepackage[strict]{changepage}
\usepackage{float}
\usepackage{fancyhdr}
\usepackage{mhchem}
\usepackage{siunitx}
\usepackage{wrapfig, booktabs}
\usepackage{enumitem}
\usepackage{caption}
\usepackage{commath}
\usepackage{amsmath}
\usepackage[hang]{footmisc}
\usepackage{multicol}
\usepackage{amsfonts}
\usepackage{mathrsfs}
\usepackage{graphicx}
\usepackage[]{algorithm2e}
\usepackage{subcaption}

\newcommand{\experimentDate}{2015-2016
\author{Student}
\newcommand{\authorLastName}{Student}
\title{Title}

\date{\parbox{\linewidth}{}}

%\pagestyle{fancy}
\fancyhf{}
\rhead{\authorLastName\ \thepage}
\lhead{\experimentShortName}
\cfoot{\className\ -- \experimentNumber}

\usepackage{color}
\usepackage{sectsty}

\definecolor{WordSectionBlue}{RGB}{30, 90, 147}

\allsectionsfont{\color{WordSectionBlue}}

\newcommand{\gpmol}{\si{\gram\per\mol}}

\begin{document}
    \maketitle
    \setcounter{tocdepth}{1}
    \section{Introduction}
    \subsection{Aim}
    \begin{paragraph}
    Nonlinear dynamics has diverse applications, ranging from medical diagnosis to computer encryption.
    \end{paragraph}
\end{document}

答案1

您可能误用了\paragraph宏。\paragraph是一个分段命令——例如\section\subsection\subsubsectionparagraph不是\begin{paragraph}LaTeX 预定义的环境。由于 LaTeX 处理(否则)不存在的命令和的方式\end{paragraph},您不会立即遇到错误消息。

在 TeX 和 LaTeX 中,段落(印刷单位)是文本块;它们不需要包含在\begin{paragraph}\end{paragraph}语句中。

这是您的代码的简化版本,其中删除了\begin{paragraph}\end{paragraph}说明。

在此处输入图片描述

\documentclass[11pt, titlepage]{article}

\usepackage[margin=1in]{geometry}
\usepackage{color}
\definecolor{WordSectionBlue}{RGB}{30, 90, 147}
\usepackage{sectsty}
\allsectionsfont{\color{WordSectionBlue}}

\begin{document}

\section{Introduction}

\subsection{Aim}

Nonlinear dynamics has diverse applications, ranging from 
medical diagnosis to computer encryption.

\end{document}

答案2

该命令\begin{paragraph}不完整,它需要一个额外的参数,如

\begin{paragraph}{This is the title of the paragraph}
This is the text of the paragraph.
\end{paragraph}

相关内容