latex subsection首行取消缩进
时间: 2023-12-18 09:04:04 浏览: 232
在 LaTeX 中,可以使用 \noindent 命令取消段落首行的缩进。如果想要取消 subsection 的首行缩进,可以在 subsection 命令后使用 \noindent 命令,例如:
```
\subsection{这是一个 subsection 的标题}
\noindent 这是 subsection 的第一段文字,取消了首行缩进。
```
其中,\noindent 只会影响紧随其后的一段文字,而不会影响之后的段落。如果想要整篇文档都取消段落首行缩进,可以在文档开头使用 \setlength{\parindent}{0em} 命令将首行缩进大小设置为 0。
相关问题
latex题目段前后间距
在 LaTeX 中,控制题目段(通常指标题或者章节标题)前后的间距,可以使用 `titlesec` 或者直接修改默认的标题样式。以下是几种常用的方法:
1. **使用 `titlesec` 包**:
如果你想要对所有级别的标题进行定制,可以导入 `titlesec` 包,并为其定义新的命令。例如:
```latex
\usepackage{titlesec}
\titleformat{\section}{\large\bfseries}{\thesection.}{1em}{} % 控制标题内容、字体大小、编号间隔等
\titlespacing{\section}{0pt}{*2}{*1} % 第二个参数是顶部距离,星号用于固定间距
```
同理,你可以调整 `\subsection`, `\subsubsection` 等其他级别。
2. **修改默认样式**:
如果只想改变特定部分,比如第一章,你可以这样设置:
```latex
\AtBeginDocument{
\setlength{\parskip}{1em plus 0.5em minus 0.2em} % 调整段前间距
\titleformat{\chapter}[display] % 选择显示模式
{\normalfont\Huge\bfseries}{\thechapter.\quad}% 标题格式
{20pt}{\Huge} % 编号和内容之间的距离
}
```
3. **全局调整**:
对于整个文档,你可以在文档开始时调整标题间的全局间距:
```latex
\setlength{\parindent}{0pt} % 首行缩进
\setlength{\parskip}{1.5em} % 段落间距
```
记得在调整完之后运行 LaTeX 的 `pdflatex` 或 `xelatex` 命令以应用更改。
设置一份一下要求的latex模板,要求如下:
1. 使用ctexbook文档类,A4纸大小,双面打印。
2. 页眉包括章节名称和页码,页脚不需要。
3. 章节标题居中显示,章节编号和标题之间加粗横线,章节标题使用黑体,一级标题使用14号字体,二级标题使用12号字体。
4. 正文使用宋体,12号字体,行距为1.5倍。
5. 段落首行缩进两个字符,段落间空一行。
6. 使用fancyhdr宏包自定义页眉,页眉格式为“第x章 章节名称”,页码居中,页码字体为12号。
7. 章节编号使用阿拉伯数字,一级标题编号为“1”,二级标题编号为“1.1”。
8. 目录格式为:
第一章 章节名称1 1
1.1 二级标题1 1
1.2 二级标题2 2
9. 参考文献使用biblatex宏包,并按APA格式排版。
10. 公式居中显示,公式编号为“(x.y)”,其中x表示章节号,y表示公式编号。
11. 插图和表格的标题放在下方,居中显示,标题字体使用小五号加粗。
12. 可以自定义其他需要的宏包和命令。
以下是示例代码:
\documentclass[a4paper, twoside]{ctexbook}
\usepackage{fancyhdr}
\usepackage{titlesec}
\usepackage{setspace}
\usepackage{graphicx}
\usepackage{booktabs}
\usepackage[style=apa]{biblatex}
% 设置章节格式
\titleformat{\chapter}[block]{\centering\heiti\fontsize{14}{14}\selectfont}{第\thechapter 章}{1em}{\bfseries}
\titleformat{\section}[hang]{\fontsize{12}{12}\selectfont\bfseries}{\thesection\quad}{0pt}{}
\titleformat{\subsection}[hang]{\fontsize{12}{12}\selectfont\bfseries}{\thesubsection\quad}{0pt}{}
% 设置页眉
\pagestyle{fancy}
\fancyhf{}
\fancyhead[RO, LE]{\thepage}
\fancyhead[LO]{\nouppercase{\rightmark}}
\fancyhead[RE]{\nouppercase{\leftmark}}
% 设置目录格式
\titlecontents{chapter}[0pt]{\addvspace{2ex}\bfseries}{第\thecontentslabel 章\quad}{}{\hfill\contentspage}
\titlecontents{section}[2em]{\addvspace{0.5ex}}{\thecontentslabel\quad}{}{\titlerule*[0.5pc]{.}\contentspage}
% 设置参考文献样式
\addbibresource{references.bib}
% 设置公式格式
\numberwithin{equation}{chapter}
\renewcommand{\theequation}{\thechapter.\arabic{equation}}
% 设置表格和图片标题格式
\captionsetup[table]{name={表},labelsep=period,font={small,bf,singlespacing}}
\captionsetup[figure]{name={图},labelsep=period,font={small,bf,singlespacing}}
% 设置正文格式
\setmainfont{SimSun}
\setlength{\parindent}{2em}
\linespread{1.5}
\begin{document}
% 封面、扉页、版权页等省略
\frontmatter
% 中英文摘要、目录等省略
\mainmatter
\chapter{绪论}
\section{研究背景}
这里是内容。
\subsection{小节标题}
这里是内容。
\section{研究目的}
这里是内容。
\chapter{相关工作}
这里是内容。
\begin{table}[htbp]
\centering
\caption{表格标题}
\begin{tabular}{ccc}
\toprule
表头1 & 表头2 & 表头3 \\
\midrule
1 & 2 & 3 \\
4 & 5 & 6 \\
\bottomrule
\end{tabular}
\end{table}
\begin{figure}[htbp]
\centering
\includegraphics[width=0.5\textwidth]{figure.png}
\caption{图片标题}
\end{figure}
\chapter{研究方法}
这里是内容。
公式示例:
\begin{equation}
\label{eq:example}
y = \beta_0 + \beta_1 x_1 + \beta_2 x_2 + \epsilon
\end{equation}
其中,式~\ref{eq:example} 表示线性回归模型。
\backmatter
% 参考文献
\printbibliography[heading=bibintoc]
% 致谢等省略
\end{document}
阅读全文