我正在尝试将带有算法的闪存卡放在一起。我收到以下错误:
! LaTeX Error: Not in outer par mode.
我有两个问题:
- 造成这个错误的原因是什么?
- 我该如何修复它?
我使用以下代码时出现错误:
\documentclass[grid,avery5371]{flashcards}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ruled,vlined,rightnl,linesnumbered]{algorithm2e}
\geometry{headheight=12pt}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\cardbackstyle[\LARGE\bfseries]{plain}
\cardfrontstyle[\large]{headings}
\begin{document}
\begin{flashcard}[graph]{\textsc{dfs}}
\begin{algorithm}
\caption{DFS(G)}
\For{u $\in$ G.V}{
u.color $\gets$ \textsc{white} \\
u.$\pi$ $\gets$ \textsc{nil} \\
}
\For{u $\in$ G.V}{
\If{u.color = \textsc{white}}{
\textsc{dfs-visit}(G, u)
}
}
\end{algorithm}
\end{flashcard}
\end{document}
答案1
一开始我以为文字太大,但\cardheight
实际上对应两个网格单元。
\documentclass[grid,avery5371]{flashcards}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[ruled,vlined,rightnl,linesnumbered]{algorithm2e}
\geometry{headheight=12pt}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\cardbackstyle[\LARGE\bfseries]{plain}
\cardfrontstyle[\large]{headings}
\usepackage{graphicx}
\begin{document}
\begin{flashcard}[graph]{\textsc{dfs}}
\scalebox{.8}{\begin{algorithm}[H]
\caption{DFS(G)}
\For{u $\in$ G.V}{
u.color $\gets$ \textsc{white} \\
u.$\pi$ $\gets$ \textsc{nil} \\
}
\For{u $\in$ G.V}{
\If{u.color = \textsc{white}}{
\textsc{dfs-visit}(G, u)
}
}
\end{algorithm}}
\end{flashcard}
\end{document}