gpt4 book ai didi

r - 如何在 pandoc 的 Markdown (例如 Rmd)文档中翻译 `abstract` 的标题?

转载 作者:行者123 更新时间:2023-12-04 11:35:42 25 4
gpt4 key购买 nike

在 pandoc Markdown 文件的 YAML header 中,可以编写摘要。不知道有没有办法改字 “抽象”在呈现的文档中添加其他内容,例如“摘要”一词或另一种语言中的等效词。

如果没有,可以建议哪些替代方案?我正在使用 R Markdown。

附言我的问题与this comment有关.

最佳答案

是的。但不是自动的。您将不得不重新定义 abstract环境以不同的头开始,或者至少重新定义 \abstractname变量为 article.cls有这个:

\newenvironment{abstract}{%
\titlepage
\null\vfil
\@beginparpenalty\@lowpenalty
\begin{center}%
\bfseries \abstractname %%%% This what you need to redefine
\@endparpenalty\@M
\end{center}}%
{\par\vfil\null\endtitlepage}

因此,您可以执行类似于以下最小示例的操作:
---
title: "Test Document"
author: "Some User"
output: pdf_document
abstract: >
One or two sentences describing it all.
header-includes:
\renewcommand{\abstractname}{My Very Own Summary}
---

## R Markdown

This is an R Markdown document.

它可以满足您的愿望:

enter image description here

关于r - 如何在 pandoc 的 Markdown (例如 Rmd)文档中翻译 `abstract` 的标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47954546/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com