Skip to content

Commit bba7efb

Browse files
committed
edit README
1 parent e7ee89d commit bba7efb

File tree

2 files changed

+28
-19
lines changed

2 files changed

+28
-19
lines changed

training/research-cycle-handbook/01-plan-and-design.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,8 +223,8 @@ These platforms either give you access to existing data or provide [**metadata**
223223

224224
- **Review the license and data use agreement.** Make sure your understand what you are allowed to do with the data and under what conditions. Even if the license does not request attribution of the authors, you have to cite the source of the data for any of your scholarly work based on it.
225225
- **Review metadata and documentation.** Make sure you know where your data comes from, how the data was collected and processed, and reflect on whether any of it poses problems for your research question.
226-
- **Check what additional requirements the data sources have.** Some requirement to access the data may be to submit a preregistration (see [1.4 Study Design & Analysis Plan](#sec-study-design-analysis-plan){.mark}).
227-
- **Use the metadata to plan your analysis.** A data dictionary (or "codebook") and other documentation describing the variables, range of values, ect., may be available and should be reviewed. To minimize confirmation or hindsight bias, do not plot the data immediately; instead, prepare a pre-analysis plan by examining the documentation.(see [1.4 Study Design & Analysis Plan](#sec-study-design-analysis-plan){.mark}).
226+
- **Check what additional requirements the data sources have.** Some requirement to access the data may be to submit a preregistration (see [1.4. Study Design & Analysis Plan](#sec-study-design-analysis-plan){.mark}).
227+
- **Use the metadata to plan your analysis.** A data dictionary (or "codebook") and other documentation describing the variables, range of values, ect., may be available and should be reviewed. To minimize confirmation or hindsight bias, do not plot the data immediately; instead, prepare a pre-analysis plan by examining the documentation.(see [1.4. Study Design & Analysis Plan](#sec-study-design-analysis-plan){.mark}).
228228

229229

230230
::: {.container .my-4 }

training/research-cycle-handbook/README

Lines changed: 26 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ I tried to be recipe-like, i.e. using the imperative form:
1313
- **Do this** because.
1414
- **Do that** because.
1515

16-
When using a specialized term in a new chapter, I have used bold and underline formatting and then defined it in a callout information box with the bold and underlined term.
16+
When using a specialized term in a new chapter, I have used bold and underlining formatting and then defined that term in a callout information box repeating the bold and underlined formatting.
1717

1818
I’ve used callout tip boxes for tips to research groups (to develop SOPs).
1919

@@ -22,17 +22,17 @@ I’ve used callout important note for important things to avoid.
2222
I've only hyperlinked support services in otherwise plain text and did not add another kind of callout box to avoid too many types of formatting within the text. We could however consider adding a new row of cards for support services (not urgent).
2323

2424

25-
# WHAT ARE THE TOOLS AND RESOURCES INCLUDED?
25+
# WHAT ARE THE TOOLS AND RESOURCES INCLUDED IN THE HANDBOOK?
2626

2727
- tools and tutorials of ours, or
2828
- essential tools we use in our own teaching (e.g. re3data, open policy finder), or
29-
- those that fill a gap in our current material but would be needed in our teaching (e.g. consent form language often requested within the framework of SwOP and OSS)
29+
- those that fill a gap in our current material but would be needed in our teaching (e.g. how to write an inform consent form)
3030
- well established, discipline agnostic or interdisciplinary, maintained tools
3131

3232

3333
# HOW TO ADD CARDS?
3434

35-
This section uses Bootstrap structure and custom css to create a responsive card layout.
35+
We've used Bootstrap structure and custom css to create a responsive card layout.
3636
- The main .container div must always be present.
3737
- Each section (Learn More / Tools & Resources) is wrapped in a .row.
3838
- If one of the section is not needed, remove the entire .row block and its downstream .col divs.
@@ -73,33 +73,40 @@ template:
7373

7474

7575

76-
# HOW TO ADD CROSS-REFERENCES TO PAGES, SECTIONS, TABS OF THE HANDBOOK?
76+
# HOW TO ADD CROSS-REFERENCES TO PAGES, SECTIONS, AND TABS OF THE HANDBOOK?
7777

7878
Note that:
79-
- I want the text to be displayed to be [X.X.X. Title] which isn't native to quarto so I currently type that text manually.
80-
- I want the internal cross reference links to be de-emphasize (italic grey), so I currently use the custom css {.mark}
81-
- titles of tabs in "::: {.panel-tabset}" aren't true markdown titles and therefore do not get applied the autonumbering (so I currently do it by hand), and do not get assigned an anchor (so I currently cross ref their container instead)
79+
- I want the text displayed to be [X.X.X. Title] which isn't native to quarto so I currently type that text manually.
80+
- I want the internal cross reference links to be de-emphasize (we chose italic grey), so I currently use the custom css {.mark}
81+
- titles of tabs in "::: {.panel-tabset}" aren't true markdown titles and therefore
82+
- do not get applied the autonumbering so I currently number those titles by hand, and
83+
- do not get assigned an anchor so I currently cross ref their container instead (which is good enough)
8284

8385
Examples of how I currently cross-ref:
86+
8487
- pages: see [3. Analyze & Collaborate](03-analyze-and-collaborate.qmd){.mark}
85-
- sections: see [1.4 Study Design & Analysis Plan](#sec-study-design-analysis-plan){.mark} if in same page or [1. Plan & Design Checklist](01-plan-and-design.qmd#plan-design-checklist){.mark} if on another page - the section title needs to have a custom label e.g. "{#sec-study-design-analysis-plan}"
86-
- tabs: see [1.4.1. Pre-analysis planning](#sec-study-design-analysis-plan){.mark} i.e. cross referencing their container instead
8788

88-
Also note that I would prefer the annotation X.X. with the final dot, but this isn't native to quarto which writes X.X for autonumbered titles. I likely wasn't consistent in whether or not I manually wrote the final dot in the text to be displayed in the cross refs.
89+
- sections: the section title needs to have a custom label e.g. "{#sec-study-design-analysis-plan}"
90+
- see [1.4. Study Design & Analysis Plan](#sec-study-design-analysis-plan){.mark} if in same page, or
91+
- see [1.4. Study Design & Analysis Plan](01-plan-and-design.qmd#sec-study-design-analysis-plan){.mark} if on another page.
92+
93+
- tabs: see [1.4.1. Pre-analysis planning](#sec-study-design-analysis-plan){.mark} i.e. cross referencing their container instead.
8994

95+
Also note that I would prefer the annotation X.X. with the final dot (and this is how I wrote in manually for the text to be displayed), but this isn't native to quarto which writes X.X for autonumbered titles.
9096

9197

9298
# HOW TO REMOVE ANCHOR?
9399

94100
Adding the following class to html title remove their anchors, e.g.:
101+
95102
<h5 class="fs-5 no-anchor">Title</h5>
96103

97-
I believe this is using remove_anchor.lua function stored in assets.
104+
This is using the remove_anchor.lua function stored in assets.
98105

99106

100-
# HOW TO FORMAT LISTS AD CALLOUT BOXES BETWEEN SECTION TITLE AND panel-tabset IN orc-details-panel?
107+
# HOW TO FORMAT LISTS AND CALLOUT BOXES OCCURRING BETWEEN SECTION TITLE AND panel-tabset IN orc-details-panel?
101108

102-
I am not sure why the bullet points or call out boxes are in the margin when a list is in this location. I suppose the orc-details-panel custom css could be adjusted.
109+
Riya and I are not sure why the bullet points or callout boxes are in the margin when a list is in this location. I suppose the orc-details-panel custom css should be adjusted - I do not know.
103110

104111
Currently, to add a margin to lists in such location, I use:
105112

@@ -119,7 +126,7 @@ However, while this adds a margin, the border of the callout boxes stay 'explode
119126

120127
# HOW TO CUSTOMIZE CHAPTERS?
121128

122-
So far, the Hero, Pills, and Checklist of Chapter 1 and 2 were customized using the following lines and associated custom css:
129+
So far, the Hero, Pills, and Checklist and Download button for the checklist of Chapter 1 and 2 were customized using the following lines and associated custom css:
123130

124131
<div class="orc-phase-hero-compact phase-2">
125132
<div class="orc-hero-cycle phase-2">
@@ -131,6 +138,8 @@ So far, the Hero, Pills, and Checklist of Chapter 1 and 2 were customized using
131138

132139
::: {.d-flex .justify-content-center .mt-4 .orc-checklist-download .phase-2}
133140

134-
Chapter 4 was not yet customized. Chapter 3 need work to make a yellow-brown-ish tone background to white text accessible.
135-
These lines were commented with e.g. <!-- RL still working on <div class="orc-phase-hero-compact phase-3"> --> in the chapters's page.
141+
Chapter 4 was not yet customized.
142+
Chapter 3 need work to make a yellow-brown-ish tone background to white text accessible.
143+
144+
These lines were commented with e.g. <!-- RL still working on <div class="orc-phase-hero-compact phase-3"> --> in chapters 3 and 4 pages.
136145

0 commit comments

Comments
 (0)