substance / texture

A visual editor for research.
MIT License
1k stars 83 forks source link

Appendices #1287

Open fred-atherden opened 5 years ago

fred-atherden commented 5 years ago

Description

Appendices are additional sections of article content considered to be supporting for the main text, but not essential to the flow of the main article. They are usually methods focused, providing details that the authors feel would be be distracting in the main article but would be required by anyone attempting to reproduce their work.

User Stories

Author

Production staff

But what if . . . ?

Considerations

XML requirements

Appendices should be captured as app elements, placed in an app-group, which in turn is placed after the ref-list in the back.

<back>
        ...
        <ref-list>...</ref-list>
        <app-group>
                <app id="appendix-1">
                        <title>Appendix 1</title>
                        <p>...</p>
                        <sec>...</sec>
                        ...
                </app>
        </app-group>
</back>

Numerous appendices example:

<back>
        ...
        <ref-list>...</ref-list>
        <app-group>
                <app id="appendix-1">
                        <title>Appendix 1</title>
                        ...
                </app>
                <app id="appendix-2">
                        <title>Appendix 2</title>
                        ...
                </app>
                <app id="appendix-3">
                        <title>Appendix 3</title>
                        ...
                </app>
        </app-group>
</back>

Appendices can contain the same content as main text. For example, eLife has captured the following elements in as children of app:

Mock ups

Proposal