How to share a dissertation as a link

Supervisors comment on one chapter at a time. Sending the whole document every round makes both of you work out which draft is which.

A dissertation link is a web copy of your dissertation, or of one chapter of it, kept at an address so a supervisor can open the current text without hunting through email.

It sits alongside the document you will eventually submit. It does not replace it, and the boundary matters.

A dissertation chapter in a browser. Chapter heading, a dated draft note, and the text below.
A dissertation chapter in a browser. Chapter heading, a dated draft note, and the text below.

This guide covers what a link fixes during supervision, how to organise chapters so they can be sent individually, keeping the formatted submission separate, and what to check before making anything public.

The version problem is the real cost

Dissertation supervision runs for months in rounds. Each round conventionally produces a file.

Emailing a file each round One link
Which draft is current Filenames, and hope The address
Supervisor reading on a phone Downloads, opens an app Opens
Sending one chapter The whole document That chapter
You revise after a meeting Another file Same address
Six rounds later Six files in a thread One address

The last row is where it hurts. By the fourth month, neither of you can be sure which file a comment referred to, and time goes into reconstructing that instead of into the work.

One address per chapter

Chapters are the natural unit because supervision happens at chapter level.

<article id="ch-3">
  <h1>3. Literature review</h1>
  <p class="draft">Draft 4 &middot; 17 September 2026</p>
  <section id="ch-3-2">
    <h2>3.2 Theories of urban resilience</h2>
  </section>
</article>

The draft line matters as much as the chapter heading. Your supervisor should be able to see at a glance which text they are reading, especially if they open it a week after you sent it.

Ids on subsections mean a comment like "the paragraph in 3.2 about Holling" becomes a link rather than a hunt.

Keep the submission file separate

Departments specify margins, line spacing, font, word count, and how the bibliography is formatted. Those rules apply to the document you hand in.

Trying to make one artefact satisfy both the format rules and good screen reading usually fails at both. Draft in whatever produces the submission file, and treat the page as the readable mirror of the current text.

The exception is when you want a clean printable version for yourself. Print rules handle that from the same page.

@media print {
  nav, .draft { display: none; }
  @page { size: A4; margin: 25mm 20mm; }
  h1, h2 { break-after: avoid; }
}

More in export HTML to PDF.

Make the structure visible

A dissertation chapter can run to eight thousand words. Without navigation, a reader arriving at it has no map.

A short contents list at the top of each chapter, linking its own subsections, solves most of it. The pattern is in an HTML table of contents.

Keep numbering identical to your submission document. Anyone moving between the two should never have to translate.

A phone opened directly at section 3.2, the subsection heading at the top.
A phone opened directly at section 3.2, the subsection heading at the top.

Before it goes anywhere public

Two checks, both quick, both worth doing.

Your institution's position. Some departments treat submitted work as covered by their own publication policy, and some funders impose conditions. If a chapter is heading to a journal, publishing it openly can count as prior publication.

Other people's material. Figures, long quotations and datasets from other sources are usually permitted in an assessed dissertation under an exception that does not extend to publishing on the web. Replace them, get permission, or leave them out of the web copy.

Until you are sure, keep the address unguessable and out of search engines. That covers supervision, which is what the link is mainly for.

Put it at an address

Write each chapter as a page, paste it into a document, create a share link, and send the same address each round.

Your supervisor opens the current text on whatever device they are holding. You revise in place. And nobody spends a meeting working out which version they read.

Questions people ask

Is this instead of the file I submit?

No. The submission is the assessed document and it has to follow your department's format rules exactly. The link is for the drafting months before that: sending a chapter to a supervisor, showing a section to a peer, keeping one place where the current text lives.

How does it help during supervision?

It removes the version problem. Instead of emailing draft-ch3-v4.docx and hoping your supervisor opens the right one, you send an address that always holds the current text. When you revise after a meeting, the same link shows the revision.

Can my supervisor comment on it?

Not in the way a word processor allows, and for tracked changes you should keep using whatever your department expects. The link is for reading and for pointing at a specific section. Many supervisors prefer to read on a phone and comment separately.

What about word count and formatting rules?

Those apply to the submitted document. Keep drafting in whatever tool produces that file, and treat the page as a readable mirror rather than the working copy. Trying to make one artefact do both jobs usually breaks the formatting requirements.

Should I make it public after submission?

Only if your institution allows it and no embargo applies. Check whether the department claims first publication rights and whether any chapter is heading to a journal. When unsure, keep the address unguessable and unindexed rather than publishing openly.

Keep reading