单元1

单元1

我想设计并使用一个自定义的目录方案。我接触过 LaTeX,但不是专家。因此,我请求帮助,找到一个简单易懂、有效且实施起来只需付出最少努力的解决方案。

我定义了两个环境问题例子我也想将其纳入索引方案中。

所需方案如下:

单元1

讲座 1

1.1 实验设计

1.1.1例如
1.1.2例如
1.1.3例如
1.1.4问。

1.2 统计建模

1.3 假设检验

1.3.1例如
1.3.2问。

讲座 4

2.1 协方差

2.2 相关性
2.3 最小二乘回归

...

2.7 向后模型选择

家庭作业 1

3.1 问题 1

3.2 问题 2

3.3 问题 3

...

3.6 问题6

项目 1

4.1 设计草图

4.2 结果

您能提供什么帮助吗?提前谢谢您。

根据下面的评论,我已经包含了用于编译如下所示的示例输出的代码:

主文本

\documentclass{article}

%Packages
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{parskip}
\usepackage{bm}
\usepackage{titlesec}
\usepackage{hyperref}

% Commands
\newcommand\ddfrac[2]{\frac{\displaystyle #1}{\displaystyle #2}}

\newcommand{\Implies}{ \quad\implies}
\newcommand{\Prob}{\text{I\kern-0.15em P}}
\newcommand{\Expec}{\text{I\kern-0.15em E}}
\newcommand{\Variance}{\operatorname{Var}}
\newcommand{\Vector}[1]{\bm{#1}}

%Environments
\newenvironment{example}
    {\\~\\
    \begin{center}
    \begin{tabular}{|p{0.9\textwidth}|}
    \hline\\
    }
    {
    \\\\\hline
    \end{tabular}
 \subsubsection{ \emph{e.g.}}
    \end{center}
    \\~\\
    }

\newenvironment{question}[3][Q:]
{\\~\\\begin{center}
\underline{#1 #2} \begin{quote}
    ``#3''}{\end{quote}\end{center}\\~\\}

% Settings
\hypersetup{
colorlinks=true,
linkcolor= black,
filecolor=blue,
urlcolor=blue
}


\begin{document}
\maketitle


\newpage
\tableofcontents
\newpage


% Sections
\input{sections/Unit 1/Unit 1.tex}
\input{sections/Unit 1/Lecture 1.tex}
\input{sections/Unit 1/Lecture 4.tex}
\input{sections/Unit 1/Problem Set 1.tex}


% Bold Principles
% Italicize concepts

% Bibliography
%\newpage
%\nocite{*}
%\printbibliography[heading=bibintoc]

\end{document}

单元 1/单元 1.tex

\newpage
\part*{Unit 1}
\addcontentsline{toc}{part}{Unit 1}

第 1 单元/第 1 讲.tex

\newpage
\section{Lecture 1}
\subsection{Experimental Design}
\begin{Example}
\end{Example}
\begin{Example}
\end{Example}
\begin{Example}
\end{Example}
\subsection{Statistical Modeling}

单元 1/家庭作业 1.tex

\newpage
\section{Homework 1}
\addcontentsline{toc}{section}{Homework 1}

\subsection{Problem 1.1}
\subsection{Problem 1.2}

目前,我已经能够制作出这样的产品: 电流输出例子环境已被纳入例如标签。然而,问题环境尚未被包括在内。

相关内容