作为一名 Latex 新手,我通过 pandoc 将 Latex 文件转换为 docx。包含项目 a)、b) 等的逐项列表在 pdf 中正确显示,但在 docx 中显示为项目符号列表。我尝试了不同的解决方法,但均未成功。
我使用 miktex 发行版,texmaker 作为编辑器:
\documentclass[11pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[german]{babel}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage[left=2cm,right=2cm,top=2cm,bottom=2cm]{geometry}
\begin{document}
\textbf{examples:} \\ \\
\textbf{List using ``itemize''}
\begin{itemize}
\item[a) ]Item 1
\item[b) ]Item 2
\item[c) ]Item 3\\
\end{itemize}
\textbf{List using ``enumerate''}
\renewcommand{\labelenumi}{\alph{enumi}) }
\begin{enumerate}
\item Item 1
\item Item 2
\item Item 3
\end{enumerate}
\end{document}
===================
pandoc 命令行:
pandoc -f latex -t docx -i test.tex -o test.docx
PDF 看起来像预期的那样:
DOCX 不会:
任何帮助都非常感谢!