Как отформатировать столбцы на странице RMarkdown prettydo c? - PullRequest
0 голосов
/ 18 февраля 2020

Как я могу выбрать, какая часть моего документа находится в 2 столбцах, а какая в 1.

Однако при уценке текст автоматически помещается после оператора </div> в левом столбце, а не в формат 1 столбца. Пожалуйста, см. Пример ниже для уточнения.

---
title: "A report"
author: "Person 1"
date: "`r format(Sys.Date())`"
output:
  prettydoc::html_pretty:
    theme: architect

---

<style type="text/css">
.column-left{
  float: left;
  width: 50%;
  text-align: left;
}

.column-right{
  float: right;
  width: 50%;
  text-align: left;
}
</style>


## R Markdown

This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.

<div class="column-left">
When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:
</div>

<div class="column-right">
```{r cars}
summary(cars)
```
</div>


## Including Plots

You can also embed plots, for example:

enter image description here

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...